From 8136a765553d2507832ac933e2bb99d23b4a6977 Mon Sep 17 00:00:00 2001 From: deiflaender Date: Fri, 19 Nov 2021 14:30:57 +0100 Subject: [PATCH] RED-2171: Implemented migration from 2.3.x to 3.0.0 --- .../LegalBasisMappingEntity.java | 4 + .../v1/server/migration/MigrationService.java | 1178 + .../v1/server/migration/model/CommentRow.java | 24 + .../migration/model/ConfigurationRow.java | 20 + .../migration/model/DossierAttributeRow.java | 19 + .../model/DossierAttributesConfig.java | 19 + .../v1/server/migration/model/EntryRow.java | 23 + .../migration/model/FileAttributesConfig.java | 21 + .../server/migration/model/IdRemovalRow.java | 27 + .../model/ManualForceRedactionRow.java | 27 + .../model/ManualImageRecategorizationRow.java | 27 + .../model/ManualLegalBasisChangeRow.java | 28 + .../model/ManualRedactionEntryRow.java | 41 + .../migration/model/MigrationAuditModel.java | 27 + .../migration/model/MigrationComment.java | 21 + .../migration/model/MigrationDossier.java | 59 + .../model/MigrationDossierTemplate.java | 43 + .../model/MigrationDownloadDetails.java | 35 + .../model/MigrationDownloadStatus.java | 30 + .../model/MigrationFileAttributes.java | 16 + .../migration/model/MigrationFileStatus.java | 88 + .../model/MigrationNotification.java | 32 + .../model/MigrationRedactionLog.java | 28 + .../model/MigrationRedactionLogEntry.java | 63 + .../migration/model/MigrationViewedPage.java | 19 + .../model/NewIdForDossierTemplate.java | 13 + .../v1/server/migration/model/Status.java | 5 + .../v1/server/migration/model/VersionRow.java | 20 + .../server/migration/model/VersionType.java | 27 + .../FileManagementServiceSettings.java | 1 + .../integration/tests/MigrationTest.java | 316 + ...43c8e32d3778b0937b03170.REDACTION_LOG.json | 56711 ++++++++++++++++ .../files/migration/audit_category_v2.json | 1 + .../files/migration/audit_record_v2.json | 1 + .../migration/configuration_table_v1.json | 1 + .../migration/configuration_table_v3.json | 1 + .../files/migration/dictionary_table_v6.json | 548 + .../migration/dossier_attributes_v1.json | 1 + .../files/migration/dossier_template_v2.json | 50 + .../resources/files/migration/dossier_v4.json | 1 + .../files/migration/download_status_v3.json | 1 + .../files/migration/entry_table_v6.json | 243 + .../files/migration/file_status_v13.json | 1 + .../migration/manual_force_redaction_v3.json | 12 + .../manual_image_recategorization_v3.json | 1 + .../manual_legal_basis_change_v3.json | 13 + .../manual_redaction_annotations_v5.json | 29 + .../manual_redaction_comments_v3.json | 20 + .../migration/manual_redaction_remove_v2.json | 12 + .../files/migration/notification_v1.json | 1 + .../migration/report_template_table_v4.json | 98 + .../files/migration/version_table_v4.json | 1 + .../files/migration/viewed_pages_v2.json | 1 + 53 files changed, 60049 insertions(+) create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationService.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/CommentRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ConfigurationRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributeRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributesConfig.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/EntryRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/FileAttributesConfig.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/IdRemovalRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualForceRedactionRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualImageRecategorizationRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualLegalBasisChangeRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualRedactionEntryRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationAuditModel.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationComment.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossier.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossierTemplate.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadDetails.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadStatus.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileAttributes.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileStatus.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationNotification.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLog.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLogEntry.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationViewedPage.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/NewIdForDossierTemplate.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/Status.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionRow.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionType.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/MigrationTest.java create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json create mode 100644 persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/configuration/LegalBasisMappingEntity.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/configuration/LegalBasisMappingEntity.java index 0cd6cfaa9..145a3556a 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/configuration/LegalBasisMappingEntity.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/entity/configuration/LegalBasisMappingEntity.java @@ -1,5 +1,7 @@ package com.iqser.red.service.persistence.management.v1.processor.entity.configuration; +import lombok.AllArgsConstructor; +import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; @@ -8,7 +10,9 @@ import java.util.ArrayList; import java.util.List; @Data +@Builder @NoArgsConstructor +@AllArgsConstructor @Entity @Table(name = "legal_basis_mapping") public class LegalBasisMappingEntity { diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationService.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationService.java new file mode 100644 index 000000000..d79854a8c --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationService.java @@ -0,0 +1,1178 @@ +package com.iqser.red.service.peristence.v1.server.migration; + +import static com.iqser.red.service.persistence.management.v1.processor.utils.TypeIdUtils.toTypeId; +import static java.util.stream.Collectors.toList; + +import java.time.OffsetDateTime; +import java.time.temporal.ChronoUnit; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Optional; +import java.util.Set; +import java.util.UUID; +import java.util.concurrent.atomic.AtomicInteger; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.context.event.ApplicationReadyEvent; +import org.springframework.context.ApplicationContext; +import org.springframework.context.event.EventListener; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.peristence.v1.server.migration.model.CommentRow; +import com.iqser.red.service.peristence.v1.server.migration.model.ConfigurationRow; +import com.iqser.red.service.peristence.v1.server.migration.model.DossierAttributeRow; +import com.iqser.red.service.peristence.v1.server.migration.model.DossierAttributesConfig; +import com.iqser.red.service.peristence.v1.server.migration.model.EntryRow; +import com.iqser.red.service.peristence.v1.server.migration.model.FileAttributesConfig; +import com.iqser.red.service.peristence.v1.server.migration.model.IdRemovalRow; +import com.iqser.red.service.peristence.v1.server.migration.model.ManualForceRedactionRow; +import com.iqser.red.service.peristence.v1.server.migration.model.ManualImageRecategorizationRow; +import com.iqser.red.service.peristence.v1.server.migration.model.ManualLegalBasisChangeRow; +import com.iqser.red.service.peristence.v1.server.migration.model.ManualRedactionEntryRow; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationAuditModel; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationComment; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationDossier; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationDossierTemplate; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationDownloadStatus; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationFileStatus; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationNotification; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationRedactionLog; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationRedactionLogEntry; +import com.iqser.red.service.peristence.v1.server.migration.model.MigrationViewedPage; +import com.iqser.red.service.peristence.v1.server.migration.model.NewIdForDossierTemplate; +import com.iqser.red.service.peristence.v1.server.migration.model.VersionRow; +import com.iqser.red.service.peristence.v1.server.migration.model.VersionType; +import com.iqser.red.service.peristence.v1.server.service.FileManagementStorageService; +import com.iqser.red.service.peristence.v1.server.settings.FileManagementServiceSettings; +import com.iqser.red.service.peristence.v1.server.utils.StorageIdUtils; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.AnnotationEntityId; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.CommentEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.IdRemovalEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.ManualForceRedactionEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.ManualImageRecategorizationEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.ManualLegalBasisChangeEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.ManualRedactionEntryEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.RectangleEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.annotations.ViewedPageEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.audit.AuditEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.ColorsEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.DictionaryEntryEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.FileAttributesGeneralConfigurationEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.LegalBasisEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.LegalBasisMappingEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.RuleSetEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.TypeEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.configuration.WatermarkEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.DossierAttributeEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.DossierEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.DossierTemplateEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.FileAttributeConfigEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.FileAttributeEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.FileEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.ReportTemplateEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.download.DownloadStatusEntity; +import com.iqser.red.service.persistence.management.v1.processor.entity.notification.NotificationEntity; +import com.iqser.red.service.persistence.management.v1.processor.exception.BadRequestException; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.FileAttributeConfigPersistenceService; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.AuditRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.ColorsRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.CommentRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.DossierAttributeConfigRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.DossierAttributeRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.DossierRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.DossierTemplateRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.DownloadStatusRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.EntryRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.FileAttributeConfigRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.FileAttributesGeneralConfigurationRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.FileRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.ForceRedactionRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.ImageRecategorizationRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.LegalBasisChangeRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.LegalBasisMappingRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.ManualRedactionRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.NotificationRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.RemoveRedactionRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.ReportTemplateRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.RuleSetRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.TypeRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.ViewedPagesRepository; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.repository.WatermarkRepository; +import com.iqser.red.service.persistence.service.v1.api.model.annotations.Comment; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.ProcessingStatus; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.WorkflowStatus; +import com.iqser.red.service.redaction.v1.model.Change; +import com.iqser.red.service.redaction.v1.model.ChangeType; +import com.iqser.red.service.redaction.v1.model.Engine; +import com.iqser.red.service.redaction.v1.model.Rectangle; +import com.iqser.red.service.redaction.v1.model.RedactionLog; +import com.iqser.red.service.redaction.v1.model.RedactionLogEntry; +import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; +import com.iqser.red.storage.commons.service.StorageService; + +import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; + +@SuppressWarnings("PMD") +@Slf4j +@Service +@RequiredArgsConstructor +public class MigrationService { + + private final FileManagementStorageService fileManagementStorageService; + private final ObjectMapper objectMapper; + + private final DossierTemplateRepository dossierTemplateRepository; + private final ReportTemplateRepository reportTemplateRepository; + private final DossierAttributeConfigRepository dossierAttributeConfigRepository; + private final FileAttributeConfigRepository fileAttributeConfigRepository; + private final FileAttributesGeneralConfigurationRepository fileAttributesGeneralConfigurationRepository; + private final LegalBasisMappingRepository legalBasisMappingRepository; + private final WatermarkRepository watermarkRepository; + private final ColorsRepository colorsRepository; + + private final DossierRepository dossierRepository; + private final TypeRepository typeRepository; + private final EntryRepository entryRepository; + private final FileRepository fileRepository; + + private final FileAttributeConfigPersistenceService fileAttributeConfigPersistenceService; + + private final ManualRedactionRepository manualRedactionRepository; + private final AuditRepository auditRepository; + private final NotificationRepository notificationRepository; + private final DownloadStatusRepository downloadStatusRepository; + private final RuleSetRepository ruleSetRepository; + private final ViewedPagesRepository viewedPagesRepository; + private final DossierAttributeRepository dossierAttributeRepository; + private final ForceRedactionRepository forceRedactionRepository; + private final ImageRecategorizationRepository imageRecategorizationRepository; + private final LegalBasisChangeRepository legalBasisChangeRepository; + private final RemoveRedactionRepository removeRedactionRepository; + private final CommentRepository commentRepository; + + private final StorageService storageService; + + private final FileManagementServiceSettings settings; + private final ApplicationContext ctx; + + + @EventListener(ApplicationReadyEvent.class) + public void runMigration() { + + if (settings.isMigrateOnly()) { + migrate(); + System.exit(SpringApplication.exit(ctx, () -> 0)); + } + } + + + @SneakyThrows + @Transactional + public void migrate() { + + List versions = getVersions(); + + byte[] dossierTemplateBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("dossier_template_v2")); + List dossierTemplates = objectMapper.readValue(dossierTemplateBytes, new TypeReference>() { + }); + + byte[] configurationRowsBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("configuration_table_v3")); + List configurationRows = objectMapper.readValue(configurationRowsBytes, new TypeReference>() { + }); + + // This is needed because fileAttributes ids are not unique in old version. + Map> fileAttributesOldIdToNewId = new HashMap<>(); + Map> dossierAttributesOldIdToNewId = new HashMap<>(); + + dossierTemplates.forEach(dossierTemplate -> { + migrateDossierTemplate(dossierTemplate); + log.info("Migrated dossierTemplates"); + dossierAttributesOldIdToNewId.putAll(migrateDossierAttributeConfiguration(dossierTemplate.getDossierTemplateId(), configurationRows)); + log.info("Migrated dossier attributes config"); + fileAttributesOldIdToNewId.putAll(migrateFileAttributeConfiguration(dossierTemplate.getDossierTemplateId(), configurationRows)); + log.info("Migrated file attributes config"); + migrateLegalBasis(dossierTemplate.getDossierTemplateId(), configurationRows, versions); + log.info("Migrated legal basis"); + migrateWatermark(dossierTemplate.getDossierTemplateId(), configurationRows); + log.info("Migrated watermark"); + migrateDefaultColors(dossierTemplate.getDossierTemplateId(), configurationRows); + log.info("Migrated default colors"); + migrateRules(dossierTemplate.getDossierTemplateId(), versions); + log.info("Migrated rules"); + }); + + log.info("Migrated reportTemplates"); + migrateReportTemplates(); + log.info("Migrated reportTemplates"); + migrateDossiers(); + log.info("Migrated dossiers"); + migrateDossiersAttributes(dossierAttributesOldIdToNewId); + log.info("Migrated dossier attributes"); + migrateDictionaryTypes(versions); + log.info("Migrated dictionary types"); + migrateFilestatusWithFileAttributes(fileAttributesOldIdToNewId); + log.info("Migrated filestatus and file attributes"); + + migrateAudit(); + log.info("Migrated audit"); + migrateNotifications(); + log.info("Migrated notifications"); + migrateDownloadStatus(); + log.info("Migrated download status"); + migrateViewedPages(); + log.info("Migrated viewed pages"); + + migrateManualAddRedactions(); + log.info("Migrated manual add redactions"); + migrateForceRedactions(); + log.info("Migrated force redactions"); + migrateImageRecategorizationRedactions(); + log.info("Migrated image recategorizations"); + migrateLegalBasisRedactions(); + log.info("Migrated Legal basis changes"); + migrateRemoveRedactions(); + log.info("Migrated remove redactions"); + migrateComments(); + log.info("Migrated comments"); + + log.info("Starting migration of redaction logs"); + migrateRedactionLogs(); + log.info("Migrated redaction logs"); + + log.info("Starting migration of dictionary entries"); + migrateDictionaryEntries(); + log.info("Migrated dictionary entries"); + + } + + + private void migrateRedactionLogs() { + + List files = fileRepository.findAll(); + files.stream().filter(file -> file.getHardDeletedTime() == null).forEach(file -> { + migrateRedactionLog(file.getDossierId(), file.getId(), file.getLastProcessed()); + }); + } + + + @SneakyThrows + private void migrateRedactionLog(String dossierId, String fileId, OffsetDateTime lastProcessed) { + + try { + byte[] oldRedactionLogBytes = fileManagementStorageService.getStoredObjectBytes(StorageIdUtils.getStorageId(dossierId, fileId, FileType.REDACTION_LOG)); + + if (oldRedactionLogBytes == null) { + log.warn("Not redactionLog found to convert for dossierId {} and fileId {}", dossierId, fileId); + return; + } + var oldRedactionLog = objectMapper.readValue(oldRedactionLogBytes, MigrationRedactionLog.class); + + RedactionLog redactionLog = new RedactionLog(oldRedactionLog.getAnalysisVersion(), oldRedactionLog.getRedactionLogEntry() + .stream() + .map(r -> convertRedactionLogEntry(r, fileId, lastProcessed)) + .collect(toList()), oldRedactionLog.getLegalBasis(), oldRedactionLog.getDictionaryVersion(), oldRedactionLog + .getDossierDictionaryVersion(), oldRedactionLog.getRulesVersion(), oldRedactionLog.getLegalBasisVersion()); + + storageService.storeObject("backup/" + StorageIdUtils.getStorageId(dossierId, fileId, FileType.REDACTION_LOG), objectMapper + .writeValueAsBytes(oldRedactionLogBytes)); + storageService.storeObject(StorageIdUtils.getStorageId(dossierId, fileId, FileType.REDACTION_LOG), objectMapper + .writeValueAsBytes(redactionLog)); + } catch (StorageObjectDoesNotExist e) { + log.warn("Not redactionLog found to convert for dossierId {} and fileId {}", dossierId, fileId); + } + } + + + private RedactionLogEntry convertRedactionLogEntry(MigrationRedactionLogEntry oldRedactionLogEntry, String fileId, + OffsetDateTime lastProcessed) { + + return RedactionLogEntry.builder() + .id(oldRedactionLogEntry.getId()) + .type(oldRedactionLogEntry.getType()) + .value(oldRedactionLogEntry.getValue()) + .reason(oldRedactionLogEntry.getReason()) + .matchedRule(oldRedactionLogEntry.getMatchedRule()) + .legalBasis(oldRedactionLogEntry.getLegalBasis()) + .redacted(oldRedactionLogEntry.isRedacted()) + .isHint(oldRedactionLogEntry.isHint()) + .isRecommendation(oldRedactionLogEntry.isRecommendation()) + .hasBeenResized(false) // Will be added during merge of manual + .hasBeenRecategorized(false) // Will be added during merge of manual + .section(oldRedactionLogEntry.getSection()) + .color(oldRedactionLogEntry.getColor()) + .positions(oldRedactionLogEntry.getPositions()) + .sectionNumber(oldRedactionLogEntry.getSectionNumber()) + .manual(oldRedactionLogEntry.isManual()) + .status(oldRedactionLogEntry.getStatus()) + .manualRedactionType(oldRedactionLogEntry.getManualRedactionType()) + .manualRedactionUserId(null) // Will be added during merge of manual + .isDictionaryEntry(oldRedactionLogEntry.isDictionaryEntry()) + .textBefore(oldRedactionLogEntry.getTextBefore()) + .textAfter(oldRedactionLogEntry.getTextAfter()) + .comments(oldRedactionLogEntry.getComments() + .stream() + .map(c -> convertRedactionLogComment(c, fileId, oldRedactionLogEntry.getId())) + .collect(toList())) + .startOffset(oldRedactionLogEntry.getStartOffset()) + .endOffset(oldRedactionLogEntry.getEndOffset()) + .isImage(oldRedactionLogEntry.getType().equals("image") || oldRedactionLogEntry.isImage()) + .imageHasTransparency(oldRedactionLogEntry.isImageHasTransparency()) + .isDossierDictionaryEntry(oldRedactionLogEntry.isDictionaryEntry()) + .excluded(oldRedactionLogEntry.isExcluded()) + .recategorizationType(oldRedactionLogEntry.getRecategorizationType()) + .legalBasisChangeValue(oldRedactionLogEntry.getLegalBasisChangeValue()) + .changes(List.of(new Change(ChangeType.ADDED, lastProcessed))) + .engines(getEngine(oldRedactionLogEntry)) + .reference(null) + .build(); + } + + + private Set getEngine(MigrationRedactionLogEntry oldRedactionLogEntry) { + + if (oldRedactionLogEntry.isManual()) { + return new HashSet(); + } + if (oldRedactionLogEntry.isDictionaryEntry() || oldRedactionLogEntry.isDossierDictionaryEntry()) { + return Set.of(Engine.DICTIONARY); + } + return Set.of(Engine.RULE); + } + + + private Comment convertRedactionLogComment(MigrationComment oldComment, String fileId, String annotationId) { + + return Comment.builder() + .fileId(fileId) + .annotationId(annotationId) + .date(oldComment.getDate()) + .text(oldComment.getText()) + .user(oldComment.getUser()) + .softDeletedTime(null) // TODO not sure if needed. + .build(); + } + + + private void migrateDossierTemplate(MigrationDossierTemplate dossierTemplate) { + + var converted = DossierTemplateEntity.builder() + .id(dossierTemplate.getDossierTemplateId()) + .name(dossierTemplate.getName()) + .description(dossierTemplate.getDescription()) + .dateAdded(dossierTemplate.getDateAdded()) + .dateModified(dossierTemplate.getDateModified()) + .createdBy(dossierTemplate.getCreatedBy()) + .modifiedBy(dossierTemplate.getModifiedBy()) + .validFrom(dossierTemplate.getValidFrom()) + .validTo(dossierTemplate.getValidTo()) + .softDeleteTime(dossierTemplate.isDeleted() ? OffsetDateTime.now() + .truncatedTo(ChronoUnit.MILLIS) : null) + .downloadFileTypes(dossierTemplate.getDownloadFileTypes()) + .build(); + + dossierTemplateRepository.save(converted); + } + + + @SneakyThrows + private void migrateViewedPages() { + + byte[] versionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("viewed_pages_v2")); + List viewedPages = objectMapper.readValue(versionBytes, new TypeReference>() { + }); + + viewedPages.forEach(old -> { + var viewedPage = new ViewedPageEntity(); + viewedPage.setViewedTime(OffsetDateTime.now()); + viewedPage.setId(new ViewedPageEntity.ViewedPageId(old.getFileId(), old.getPage(), old.getUserId())); + viewedPage.setFile(fileRepository.getOne(old.getFileId())); + viewedPagesRepository.save(viewedPage); + }); + } + + + @SneakyThrows + private List getVersions() { + + byte[] versionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("version_table_v4")); + List versions = objectMapper.readValue(versionBytes, new TypeReference>() { + }); + + return versions; + } + + + @SneakyThrows + private void migrateDownloadStatus() { + + byte[] downloadsBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("download_status_v3")); + List downloads = objectMapper.readValue(downloadsBytes, new TypeReference>() { + }); + + downloads.forEach(download -> { + DownloadStatusEntity downloadStatus = new DownloadStatusEntity(); + downloadStatus.setUserId(download.getUserId()); + downloadStatus.setStorageId(download.getStorageId()); + downloadStatus.setFilename(download.getFilename()); + downloadStatus.setMimeType(download.getMimeType()); + downloadStatus.setDossier(dossierRepository.getOne(download.getDossierId())); + downloadStatus.setCreationDate(OffsetDateTime.now().truncatedTo(ChronoUnit.MILLIS)); + downloadStatus.setFiles(fileRepository.findAllById(download.getDownloadDetails().getFileIds())); + downloadStatus.setDownloadFileTypes(new ArrayList<>(download.getDownloadDetails().getDownloadFileTypes())); + downloadStatus.setStatus(download.getStatus()); + downloadStatus.setFileSize(download.getFileSize()); + downloadStatus.setLastDownload(download.getLastDownload()); + + downloadStatusRepository.save(downloadStatus); + }); + + } + + + private void migrateRules(String dossierTemplateId, List versions) { + + var version = versions.stream() + .filter(versionRow -> versionRow.getDossierTemplateId() + .equals(dossierTemplateId) && versionRow.getVersionType() == VersionType.RULE.ordinal()) + .findFirst() + .get() + .getVersion(); + + String rules = new String(fileManagementStorageService.getStoredObjectBytes(String.format("rules/%s-rules.drl", dossierTemplateId))); + RuleSetEntity ruleSet = new RuleSetEntity(); + ruleSet.setDossierTemplateId(dossierTemplateId); + ruleSet.setValue(rules); + ruleSet.setVersion(version); + + ruleSetRepository.save(ruleSet); + } + + + @SneakyThrows + private void migrateAudit() { + + byte[] addRedactionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("audit_record_v2")); + List audits = objectMapper.readValue(addRedactionBytes, new TypeReference>() { + }); + + audits.forEach(audit -> { + AuditEntity converted = AuditEntity.builder() + .recordDate(audit.getRecordDate()) + .objectId(audit.getObjectId()) + .category(audit.getCategory()) + .userId(audit.getUserId()) + .message(audit.getMessage()) + .details(audit.getDetails()) + .build(); + auditRepository.save(converted); + }); + + } + + + @SneakyThrows + private void migrateNotifications() { + + byte[] notificationsBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("notification_v1")); + List notifications = objectMapper.readValue(notificationsBytes, new TypeReference>() { + }); + + notifications.forEach(notification -> { + var converted = new NotificationEntity().builder() + .userId(notification.getUserId()) + .notificationType(notification.getNotificationType()) + .issuerId(notification.getIssuerId()) + .creationDate(notification.getCreationDate()) + .seenDate(notification.getSeenDate()) + .readDate(notification.getReadDate()) + .softDeleted(notification.getSoftDeleted()) + .target(notification.getTarget()) + .build(); + notificationRepository.save(converted); + }); + } + + + @SneakyThrows + private void migrateForceRedactions() { + + byte[] forceRedactionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_force_redaction_v3")); + List forceRedactions = objectMapper.readValue(forceRedactionBytes, new TypeReference>() { + }); + + forceRedactions.forEach(forceRedaction -> { + + var file = fileRepository.getById(forceRedaction.getFileId()); + + ManualForceRedactionEntity manualForceRedaction = ManualForceRedactionEntity.builder() + .id(new AnnotationEntityId(forceRedaction.getId(), forceRedaction.getFileId())) + .user(forceRedaction.getUser()) + .status(forceRedaction.getStatus()) + .legalBasis(forceRedaction.getLegalBasis()) + .requestDate(forceRedaction.getRequestDate()) + .processedDate(forceRedaction.getProcessedDate()) + .softDeletedTime(forceRedaction.getSoftDeletedTime()) + .fileStatus(file) + .build(); + + forceRedactionRepository.save(manualForceRedaction); + + }); + } + + + @SneakyThrows + private void migrateImageRecategorizationRedactions() { + + byte[] forceRedactionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_image_recategorization_v3")); + List imageRedactions = objectMapper.readValue(forceRedactionBytes, new TypeReference>() { + }); + + imageRedactions.forEach(redaction -> { + + var file = fileRepository.getById(redaction.getFileId()); + + var manualImageRecategorization = ManualImageRecategorizationEntity.builder() + .id(new AnnotationEntityId(redaction.getId(), redaction.getFileId())) + .user(redaction.getUser()) + .status(redaction.getStatus()) + .typeId(toTypeId(redaction.getType(), file.getDossier().getDossierTemplateId(), null)) + .requestDate(redaction.getRequestDate()) + .processedDate(redaction.getProcessedDate()) + .softDeletedTime(redaction.getSoftDeletedTime()) + .fileStatus(file) + + .build(); + + imageRecategorizationRepository.save(manualImageRecategorization); + + }); + } + + + @SneakyThrows + private void migrateLegalBasisRedactions() { + + byte[] forceRedactionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_legal_basis_change_v3")); + List legalBasisRedactions = objectMapper.readValue(forceRedactionBytes, new TypeReference>() { + }); + + legalBasisRedactions.forEach(redaction -> { + + var file = fileRepository.getById(redaction.getFileId()); + + ManualLegalBasisChangeEntity manualLegalBasisChange = ManualLegalBasisChangeEntity.builder() + .id(new AnnotationEntityId(redaction.getId(), redaction.getFileId())) + .user(redaction.getUser()) + .status(redaction.getStatus()) + .section(redaction.getSection()) + .legalBasis(redaction.getLegalBasis()) + .requestDate(redaction.getRequestDate()) + .processedDate(redaction.getProcessedDate()) + .softDeletedTime(redaction.getSoftDeletedTime()) + .fileStatus(file) + + .build(); + + legalBasisChangeRepository.save(manualLegalBasisChange); + + }); + } + + + @SneakyThrows + private void migrateRemoveRedactions() { + + byte[] removeRedactionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_redaction_remove_v2")); + List removeRedactions = objectMapper.readValue(removeRedactionBytes, new TypeReference>() { + }); + + removeRedactions.forEach(redaction -> { + + var file = fileRepository.getById(redaction.getFileId()); + + IdRemovalEntity idRemoval = IdRemovalEntity.builder() + .id(new AnnotationEntityId(redaction.getId(), redaction.getFileId())) + .user(redaction.getUser()) + .status(redaction.getStatus()) + .removeFromDictionary(redaction.isRemoveFromDictionary()) + .requestDate(redaction.getRequestDate()) + .processedDate(redaction.getProcessedDate()) + .softDeletedTime(redaction.getSoftDeletedTime()) + .fileStatus(file) + + .build(); + + removeRedactionRepository.save(idRemoval); + + }); + } + + + @SneakyThrows + private void migrateComments() { + + byte[] commentsBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_redaction_comments_v3")); + List comments = objectMapper.readValue(commentsBytes, new TypeReference>() { + }); + + comments.forEach(comment -> { + + var commentEntity = CommentEntity.builder() + .text(comment.getText()) + .fileId(comment.getFileId()) + .annotationId(comment.getAnnotationId()) + .user(comment.getUser()) + .date(OffsetDateTime.now().truncatedTo(ChronoUnit.MILLIS)) + .build(); + + commentRepository.save(commentEntity); + + }); + } + + + @SneakyThrows + private void migrateManualAddRedactions() { + + byte[] addRedactionBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_redaction_annotations_v5")); + List addRedactions = objectMapper.readValue(addRedactionBytes, new TypeReference>() { + }); + + addRedactions.forEach(addRedaction -> { + + var file = fileRepository.getById(addRedaction.getFileId()); + + ManualRedactionEntryEntity manualRedactionEntry = ManualRedactionEntryEntity.builder() + + .id(new AnnotationEntityId(addRedaction.getId(), addRedaction.getFileId())) + .user(addRedaction.getUser()) + .typeId(toTypeId(addRedaction.getType(), file.getDossier() + .getDossierTemplateId(), addRedaction.getType() + .equals("dossier_redaction") ? file.getDossier().getId() : null)) + .value(addRedaction.getValue()) + .reason(addRedaction.getReason()) + .legalBasis(addRedaction.getLegalBasis()) + .status(addRedaction.getStatus()) + .section(addRedaction.getSection()) + .addToDictionary(addRedaction.isAddToDictionary()) + .addToDossierDictionary(addRedaction.isAddToDossierDictionary()) + .requestDate(addRedaction.getRequestDate()) + .processedDate(addRedaction.getProcessedDate()) + .softDeletedTime(addRedaction.getSoftDeletedTime()) + .positions(addRedaction.getPositions().stream().map(this::convertPositions).collect(toList())) + .fileStatus(file) + .build(); + + manualRedactionRepository.save(manualRedactionEntry); + + }); + } + + + private RectangleEntity convertPositions(Rectangle rectangle) { + + return RectangleEntity.builder() + .topLeftX(rectangle.getTopLeft().getX()) + .topLeftY(rectangle.getTopLeft().getY()) + .width(rectangle.getWidth()) + .height(rectangle.getHeight()) + .page(rectangle.getPage()) + .build(); + } + + + @SneakyThrows + private void migrateDossiers() { + + byte[] dossierBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("dossier_v4")); + List oldDossiers = objectMapper.readValue(dossierBytes, new TypeReference>() { + }); + + oldDossiers.forEach(oldDossier -> { + + var reportTemplates = reportTemplateRepository.findAllById(oldDossier.getReportTemplateIds()); + + DossierEntity dossier = DossierEntity.builder() + .id(oldDossier.getDossierId()) + .dossierName(oldDossier.getDossierName()) + .date(oldDossier.getDate()) + .lastUpdated(OffsetDateTime.now().truncatedTo(ChronoUnit.MILLIS)) + .description(oldDossier.getDescription()) + .status(oldDossier.getStatus()) + .ownerId(oldDossier.getOwnerId()) + .memberIds(oldDossier.getMemberIds()) + .approverIds(oldDossier.getApproverIds()) + .downloadFileTypes(oldDossier.getDownloadFileTypes()) + .watermarkEnabled(oldDossier.isWatermarkEnabled()) + .watermarkPreviewEnabled(oldDossier.isWatermarkPreviewEnabled()) + .softDeletedTime(oldDossier.getSoftDeletedTime()) + .hardDeletedTime(oldDossier.getHardDeletedTime()) + .dueDate(oldDossier.getDueDate()) + .dossierTemplate(dossierTemplateRepository.getOne(oldDossier.getDossierTemplateId())) + .dossierTemplateId(oldDossier.getDossierTemplateId()) + .reportTemplates(reportTemplates) + .build(); + + reportTemplates.forEach(r -> r.getDossiers().add(dossier)); + + dossierRepository.save(dossier); + }); + } + + + @SneakyThrows + private void migrateFilestatusWithFileAttributes( + Map> fileAttributesOldIdToNewId) { + + byte[] fileStatusBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("file_status_v13")); + List oldFiles = objectMapper.readValue(fileStatusBytes, new TypeReference>() { + }); + + oldFiles.forEach(oldFile -> { + + WorkflowStatus workflowStatus = null; + ProcessingStatus processingStatus = null; + switch (oldFile.getStatus()) { + case UNPROCESSED: + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.UNPROCESSED; + break; + case REPROCESS: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.REPROCESS; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.REPROCESS; + } + break; + case PROCESSING: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.PROCESSING; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.PROCESSING; + } + break; + case ERROR: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.ERROR; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.ERROR; + } + break; + case DELETED: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.DELETED; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.DELETED; + } + break; + case UNASSIGNED: + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.PROCESSED; + break; + case UNDER_REVIEW: + workflowStatus = WorkflowStatus.UNDER_REVIEW; + processingStatus = ProcessingStatus.PROCESSED; + break; + case UNDER_APPROVAL: + workflowStatus = WorkflowStatus.UNDER_APPROVAL; + processingStatus = ProcessingStatus.PROCESSED; + break; + case APPROVED: + workflowStatus = WorkflowStatus.APPROVED; + processingStatus = ProcessingStatus.PROCESSED; + break; + case FULLREPROCESS: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.FULLREPROCESS; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.FULLREPROCESS; + } + break; + case OCR_PROCESSING: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.OCR_PROCESSING; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.OCR_PROCESSING; + } + break; + case INDEXING: + if (oldFile.getLastSuccessfulStatus() != null) { + workflowStatus = WorkflowStatus.valueOf(oldFile.getLastSuccessfulStatus().name()); + processingStatus = ProcessingStatus.INDEXING; + } else { + workflowStatus = WorkflowStatus.UNASSIGNED; + processingStatus = ProcessingStatus.INDEXING; + } + break; + } + + DossierEntity dossierEntity = dossierRepository.getOne(oldFile.getDossierId()); + + FileEntity file = FileEntity.builder() + .id(oldFile.getFileId()) + .filename(oldFile.getFilename()) + .processingStatus(processingStatus) + .workflowStatus(workflowStatus) + .numberOfPages(oldFile.getNumberOfPages()) + .added(oldFile.getAdded()) + .lastUpdated(oldFile.getLastUpdated()) + .deleted(oldFile.getDeleted()) + .lastProcessed(oldFile.getLastProcessed()) + .numberOfAnalyses(oldFile.getNumberOfAnalyses()) + .currentReviewer(oldFile.getCurrentReviewer()) + .lastReviewer(oldFile.getLastReviewer()) + .lastManualRedaction(oldFile.getLastManualRedaction()) + .hasRedactions(oldFile.isHasRedactions()) + .hasHints(oldFile.isHasHints()) + .hasSuggestions(oldFile.isHasSuggestions()) + .hasImages(oldFile.isHasImages()) + .hasUpdates(oldFile.isHasUpdates()) + .uploader(oldFile.getUploader()) + .dictionaryVersion(oldFile.getDictionaryVersion()) + .rulesVersion(oldFile.getRulesVersion()) + .dossierDictionaryVersion(oldFile.getDossierDictionaryVersion()) + .legalBasisVersion(oldFile.getLegalBasisVersion()) + .approvalDate(oldFile.getApprovalDate()) + .lastUploaded(oldFile.getLastUploaded()) + .analysisDuration(oldFile.getAnalysisDuration()) + .lastOCRTime(oldFile.getLastOCRTime()) + .hasAnnotationComments(oldFile.isHasAnnotationComments()) + .excluded(oldFile.isExcluded()) + .hardDeletedTime(oldFile.getHardDeletedTime()) + .lastFileAttributeChange(oldFile.getLastFileAttributeChange()) + .analysisVersion(oldFile.getAnalysisVersion()) + .excludedPages(oldFile.getExcludedPages()) + .dossier(dossierEntity) + .dossierId(oldFile.getDossierId()) + .build(); + + List convertedFileAttributes = new ArrayList<>(); + List configuration = fileAttributeConfigPersistenceService.getFileAttributes(file + .getDossier() + .getDossierTemplateId()); + + if (oldFile.getFileAttributes() != null) { + oldFile.getFileAttributes().getAttributeIdToValue().entrySet().forEach(entry -> { + + Optional newId = fileAttributesOldIdToNewId.get(entry.getKey()) + .stream() + .filter(nId -> nId.getDossierTemplateId().equals(dossierEntity.getDossierTemplateId())) + .findFirst(); + if (!newId.isPresent()) { + return; + } + + var fa = new FileAttributeEntity(); + fa.setFileAttributeId(new FileAttributeEntity.FileAttributeEntityId()); + fa.setFile(file); + fa.setFileAttributeConfig(configuration.stream() + .filter(c -> c.getId().equals(newId.get().getNewId())) + .findAny() + .orElseThrow(() -> new BadRequestException("Invalid File Attribute Id"))); + fa.setValue(entry.getValue()); + convertedFileAttributes.add(fa); + }); + + file.setFileAttributes(convertedFileAttributes); + + } + + fileRepository.save(file); + }); + } + + + @SneakyThrows + private void migrateDossiersAttributes(Map> dossierAttributesOldIdToNewId) { + + byte[] dossierAttributesBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("dossier_attributes_v1")); + List oldDossierAttributes = objectMapper.readValue(dossierAttributesBytes, new TypeReference>() { + }); + + oldDossierAttributes.forEach(oldDossierAttribute -> { + + var dossier = dossierRepository.getOne(oldDossierAttribute.getDossierId()); + var newConfigId = dossierAttributesOldIdToNewId.get(oldDossierAttribute.getDossierAttributeId()) + .stream() + .filter(d -> d.getDossierTemplateId().equals(dossier.getDossierTemplateId())) + .findFirst(); + + if (newConfigId.isPresent()) { + DossierAttributeEntity dossierAttribute = new DossierAttributeEntity(); + dossierAttribute.setId(new DossierAttributeEntity.DossierAttributeEntityId(dossier.getId(), newConfigId.get() + .getNewId())); + dossierAttribute.setValue(oldDossierAttribute.getValue()); + dossierAttribute.setDossier(dossier); + dossierAttribute.setDossierAttributeConfig(dossierAttributeConfigRepository.getOne(newConfigId.get() + .getNewId())); + dossierAttributeRepository.save(dossierAttribute); + } + }); + } + + + @SneakyThrows + private void migrateDictionaryTypes(List versions) { + + byte[] typesBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("dictionary_table_v6")); + List types = objectMapper.readValue(typesBytes, new TypeReference>() { + }); + + types.stream().forEach(typeEntity -> { + + if (typeEntity.getDossierId().equals("global")) { + typeEntity.setDossierId(null); + var version = versions.stream() + .filter(versionRow -> versionRow.getDossierId() + .equals("global") && versionRow.getDossierTemplateId() + .equals(typeEntity.getDossierTemplateId()) && versionRow.getVersionType() == VersionType.DICTIONARY + .ordinal()) + .findFirst() + .get() + .getVersion(); + + typeEntity.setId(toTypeId(typeEntity.getType(), typeEntity.getDossierTemplateId(), typeEntity.getDossierId())); + typeEntity.setDossier(typeEntity.getDossierId() == null ? null : dossierRepository.getOne(typeEntity.getDossierId())); + typeEntity.setDossierTemplate(dossierTemplateRepository.getOne(typeEntity.getDossierTemplateId())); + typeEntity.setVersion(version); + typeRepository.save(typeEntity); + } else { + var version = versions.stream() + .filter(versionRow -> versionRow.getDossierId() + .equals(typeEntity.getDossierId()) && versionRow.getDossierTemplateId() + .equals(typeEntity.getDossierTemplateId()) && versionRow.getVersionType() == VersionType.DICTIONARY + .ordinal()) + .findFirst() + .get() + .getVersion(); + + typeEntity.setId(toTypeId(typeEntity.getType(), typeEntity.getDossierTemplateId(), typeEntity.getDossierId())); + typeEntity.setDossier(typeEntity.getDossierId() == null ? null : dossierRepository.getOne(typeEntity.getDossierId())); + typeEntity.setDossierTemplate(dossierTemplateRepository.getOne(typeEntity.getDossierTemplateId())); + typeEntity.setVersion(version); + typeRepository.save(typeEntity); + } + }); + } + + + @SneakyThrows + private void migrateDictionaryEntries() { + + AtomicInteger counter = new AtomicInteger(); + byte[] typesBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("entry_table_v6")); + List entries = objectMapper.readValue(typesBytes, new TypeReference>() { + }); + + Map typeForTypeId = new HashMap<>(); + + var converted = entries.stream().map(entry -> { + + String typeId = toTypeId(entry.getType(), entry.getDossierTemplateId(), entry.getDossierId() + .equals("global") ? null : entry.getDossierId()); + if (!typeForTypeId.containsKey(typeId)) { + typeForTypeId.put(typeId, typeRepository.getOne(typeId)); + } + + DictionaryEntryEntity newEntry = new DictionaryEntryEntity(); + newEntry.setVersion(entry.getVersion()); + newEntry.setValue(entry.getValue()); + newEntry.setType(typeForTypeId.get(typeId)); + newEntry.setDeleted(entry.isDeleted()); + + if (counter.getAndIncrement() % 1000 == 0) { + log.info("Converted {} of entries {}", counter.get(), entries.size()); + } + return newEntry; + }).collect(toList()); + + entryRepository.saveAll(converted); + } + + + @SneakyThrows + private void migrateReportTemplates() { + + byte[] reportTemplateBytes = fileManagementStorageService.getStoredObjectBytes(getMigrationId("report_template_table_v4")); + List reportTemplates = objectMapper.readValue(reportTemplateBytes, new TypeReference>() { + }); + + reportTemplates.forEach(reportTemplateEntity -> { + var dossierTemplate = dossierTemplateRepository.getOne(reportTemplateEntity.getDossierTemplateId()); + reportTemplateEntity.setDossierTemplate(dossierTemplate); + reportTemplateRepository.save(reportTemplateEntity); + dossierTemplateRepository.save(dossierTemplate); + }); + } + + + private void migrateDefaultColors(String dossierTemplateId, List configurationRows) { + + configurationRows.stream() + .filter(r -> r.getDossierTemplateId().equals(dossierTemplateId) && r.getKey().equals("colors")) + .forEach(configurationRow -> { + try { + var colors = objectMapper.readValue(configurationRow.getValue(), ColorsEntity.class); + + colors.setDossierTemplateId(dossierTemplateId); + colorsRepository.save(colors); + + } catch (JsonProcessingException e) { + throw new RuntimeException("Could not migrate dossier attributes config"); + } + }); + } + + + private void migrateWatermark(String dossierTemplateId, List configurationRows) { + + configurationRows.stream() + .filter(r -> r.getDossierTemplateId().equals(dossierTemplateId) && r.getKey().equals("PDF_WATERMARK")) + .forEach(configurationRow -> { + try { + var watermark = objectMapper.readValue(configurationRow.getValue(), WatermarkEntity.class); + + watermark.setDossierTemplateId(dossierTemplateId); + watermarkRepository.save(watermark); + + } catch (JsonProcessingException e) { + throw new RuntimeException("Could not migrate dossier attributes config"); + } + }); + } + + + private void migrateLegalBasis(String dossierTemplateId, List configurationRows, + List versions) { + + configurationRows.stream() + .filter(r -> r.getDossierTemplateId().equals(dossierTemplateId) && r.getKey().equals("legalBasis")) + .forEach(configurationRow -> { + try { + List legalBasisEntities = objectMapper.readValue(configurationRow.getValue(), new TypeReference>() { + }); + + LegalBasisMappingEntity legalBasisMappingEntity = LegalBasisMappingEntity.builder() + .dossierTemplateId(dossierTemplateId) + .version(versions.stream() + .filter(versionRow -> versionRow.getDossierTemplateId() + .equals(dossierTemplateId) && versionRow.getVersionType() == VersionType.LEGAL_BASIS + .ordinal()) + .findFirst() + .get() + .getVersion()) + .legalBasis(legalBasisEntities) + .build(); + + legalBasisMappingRepository.save(legalBasisMappingEntity); + + } catch (JsonProcessingException e) { + throw new RuntimeException("Could not migrate dossier attributes config"); + } + }); + } + + + private Map> migrateDossierAttributeConfiguration(String dossierTemplateId, + List configurationRows) { + + Map> oldIdToNewId = new HashMap<>(); + + configurationRows.stream() + .filter(r -> r.getDossierTemplateId().equals(dossierTemplateId) && r.getKey() + .equals("dossierAttributes")) + .forEach(configurationRow -> { + try { + var dossierAttributeConfig = objectMapper.readValue(configurationRow.getValue(), DossierAttributesConfig.class); + dossierAttributeConfig.getDossierAttributeConfigs().forEach(dossierAttributeConfigEntity -> { + + String newId = UUID.randomUUID().toString(); + oldIdToNewId.computeIfAbsent(dossierAttributeConfigEntity.getId(), x -> new ArrayList<>()) + .add(new NewIdForDossierTemplate(newId, dossierTemplateId)); + + dossierAttributeConfigEntity.setId(newId); + var dossierTemplate = dossierTemplateRepository.getOne(dossierTemplateId); + dossierAttributeConfigEntity.setDossierTemplate(dossierTemplate); + dossierAttributeConfigRepository.save(dossierAttributeConfigEntity); + dossierTemplateRepository.save(dossierTemplate); + }); + + } catch (JsonProcessingException e) { + throw new RuntimeException("Could not migrate dossier attributes config"); + } + }); + return oldIdToNewId; + } + + + private Map> migrateFileAttributeConfiguration(String dossierTemplateId, + List configurationRows) { + + Map> oldIdToNewId = new HashMap<>(); + + configurationRows.stream() + .filter(r -> r.getDossierTemplateId().equals(dossierTemplateId) && r.getKey().equals("fileAttributes")) + .forEach(configurationRow -> { + try { + var dossierTemplate = dossierTemplateRepository.getOne(dossierTemplateId); + var fileAttributesConfig = objectMapper.readValue(configurationRow.getValue(), FileAttributesConfig.class); + FileAttributesGeneralConfigurationEntity fileAttributesGeneralConfigurationEntity = FileAttributesGeneralConfigurationEntity + .builder() + .dossierTemplateId(dossierTemplateId) + .filenameMappingColumnHeaderName(fileAttributesConfig.getFilenameMappingColumnHeaderName()) + .delimiter(fileAttributesConfig.getDelimiter()) + .dossierTemplate(dossierTemplate) + .build(); + fileAttributesGeneralConfigurationRepository.save(fileAttributesGeneralConfigurationEntity); + + fileAttributesConfig.getFileAttributeConfigs().forEach(fileAttributeConfigEntity -> { + + String newId = UUID.randomUUID().toString(); + oldIdToNewId.computeIfAbsent(fileAttributeConfigEntity.getId(), x -> new ArrayList<>()) + .add(new NewIdForDossierTemplate(newId, dossierTemplateId)); + + fileAttributeConfigEntity.setId(newId); + fileAttributeConfigEntity.setDossierTemplate(dossierTemplate); + fileAttributeConfigRepository.save(fileAttributeConfigEntity); + }); + + dossierTemplateRepository.save(dossierTemplate); + + } catch (JsonProcessingException e) { + throw new RuntimeException("Could not migrate dossier attributes config"); + } + }); + + return oldIdToNewId; + } + + + private String getMigrationId(String tableName) { + + return "migration/" + tableName + ".json"; + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/CommentRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/CommentRow.java new file mode 100644 index 000000000..a211f3075 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/CommentRow.java @@ -0,0 +1,24 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class CommentRow { + + private String id; + private OffsetDateTime date; + private String text; + private String user; + + private OffsetDateTime softDeletedTime; + private String fileId; + private String annotationId; +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ConfigurationRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ConfigurationRow.java new file mode 100644 index 000000000..3bb6894d7 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ConfigurationRow.java @@ -0,0 +1,20 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.io.Serializable; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class ConfigurationRow implements Serializable { + + private String dossierTemplateId; + public String key; + public String value; + +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributeRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributeRow.java new file mode 100644 index 000000000..75c844911 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributeRow.java @@ -0,0 +1,19 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import lombok.AccessLevel; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor(access = AccessLevel.PRIVATE) +public class DossierAttributeRow { + + private String dossierAttributeId; + private String value; + private String dossierId; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributesConfig.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributesConfig.java new file mode 100644 index 000000000..fa8e92829 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/DossierAttributesConfig.java @@ -0,0 +1,19 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.util.ArrayList; +import java.util.List; + +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.DossierAttributeConfigEntity; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class DossierAttributesConfig { + + private List dossierAttributeConfigs = new ArrayList<>(); + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/EntryRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/EntryRow.java new file mode 100644 index 000000000..56170f190 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/EntryRow.java @@ -0,0 +1,23 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.io.Serializable; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class EntryRow implements Serializable { + + private String dossierTemplateId; + private String dossierId; + private String type; + private String value; + private long version; + private boolean deleted; + +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/FileAttributesConfig.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/FileAttributesConfig.java new file mode 100644 index 000000000..32f6e9fb8 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/FileAttributesConfig.java @@ -0,0 +1,21 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.util.ArrayList; +import java.util.List; + +import com.iqser.red.service.persistence.management.v1.processor.entity.dossier.FileAttributeConfigEntity; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class FileAttributesConfig { + + private String filenameMappingColumnHeaderName; + private String delimiter; + private List fileAttributeConfigs = new ArrayList<>(); + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/IdRemovalRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/IdRemovalRow.java new file mode 100644 index 000000000..f7eedcada --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/IdRemovalRow.java @@ -0,0 +1,27 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class IdRemovalRow { + + private String id; + private String user; + private AnnotationStatus status; + private boolean removeFromDictionary; + private OffsetDateTime requestDate; + private OffsetDateTime processedDate; + private OffsetDateTime softDeletedTime; + private String fileId; + +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualForceRedactionRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualForceRedactionRow.java new file mode 100644 index 000000000..3444bbc05 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualForceRedactionRow.java @@ -0,0 +1,27 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class ManualForceRedactionRow { + + private String id; + private String user; + private AnnotationStatus status; + private String legalBasis; + private OffsetDateTime requestDate; + private OffsetDateTime processedDate; + private OffsetDateTime softDeletedTime; + private String fileId; + +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualImageRecategorizationRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualImageRecategorizationRow.java new file mode 100644 index 000000000..3f8e2d72a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualImageRecategorizationRow.java @@ -0,0 +1,27 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class ManualImageRecategorizationRow { + + private String id; + private String user; + private AnnotationStatus status; + private String type; + private OffsetDateTime requestDate; + private OffsetDateTime processedDate; + private OffsetDateTime softDeletedTime; + private String fileId; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualLegalBasisChangeRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualLegalBasisChangeRow.java new file mode 100644 index 000000000..0f6a485a3 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualLegalBasisChangeRow.java @@ -0,0 +1,28 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class ManualLegalBasisChangeRow { + + private String id; + private String user; + private AnnotationStatus status; + private String legalBasis; + private String section; + private OffsetDateTime requestDate; + private OffsetDateTime processedDate; + private OffsetDateTime softDeletedTime; + private String fileId; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualRedactionEntryRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualRedactionEntryRow.java new file mode 100644 index 000000000..b669e44ba --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/ManualRedactionEntryRow.java @@ -0,0 +1,41 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; +import java.util.ArrayList; +import java.util.List; + +import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; +import com.iqser.red.service.redaction.v1.model.Rectangle; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class ManualRedactionEntryRow { + + private String id; + private String user; + private String type; + private String value; + private String reason; + private String legalBasis; + + private String section; + + @Builder.Default + private List positions = new ArrayList<>(); + private AnnotationStatus status; + private boolean addToDictionary; + private boolean addToDossierDictionary; + + private OffsetDateTime requestDate; + private OffsetDateTime processedDate; + private OffsetDateTime softDeletedTime; + private String fileId; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationAuditModel.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationAuditModel.java new file mode 100644 index 000000000..7450a975b --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationAuditModel.java @@ -0,0 +1,27 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; +import java.util.Map; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +public class MigrationAuditModel { + + private String recordId; + private OffsetDateTime recordDate; + + private String objectId; + private String category; + private String userId; + private String message; + + private Map details; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationComment.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationComment.java new file mode 100644 index 000000000..2889998b1 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationComment.java @@ -0,0 +1,21 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class MigrationComment { + + private String id; + private OffsetDateTime date; + private String text; + private String user; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossier.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossier.java new file mode 100644 index 000000000..aecf7a01a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossier.java @@ -0,0 +1,59 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; +import java.util.HashSet; +import java.util.Set; + +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DownloadFileType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierStatus; +import com.iqser.red.service.redaction.report.v1.api.model.ReportType; + +import lombok.Builder; +import lombok.Data; +import lombok.NonNull; + +@Data +@Builder +public class MigrationDossier { + + private String dossierId; + + private String dossierTemplateId; + + @NonNull + private String dossierName; + + private OffsetDateTime date; + + private String description; + + private DossierStatus status; + + private String ownerId; + + @Builder.Default + private Set memberIds = new HashSet<>(); + + @Builder.Default + private Set approverIds = new HashSet<>(); + + @Builder.Default + private Set downloadFileTypes = new HashSet<>(); + + @Builder.Default + private Set reportTypes = new HashSet<>(); + + private OffsetDateTime dueDate; + + @Builder.Default + private Set reportTemplateIds = new HashSet<>(); + + private boolean watermarkEnabled; + + private boolean watermarkPreviewEnabled; + + private OffsetDateTime softDeletedTime; + + private OffsetDateTime hardDeletedTime; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossierTemplate.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossierTemplate.java new file mode 100644 index 000000000..b8a9fd0ba --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDossierTemplate.java @@ -0,0 +1,43 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; +import java.util.HashSet; +import java.util.Set; + +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DownloadFileType; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class MigrationDossierTemplate { + + private String dossierTemplateId; + + private String name; + + private String description; + + private OffsetDateTime dateAdded; + + private OffsetDateTime dateModified; + + private String createdBy; + + private String modifiedBy; + + private OffsetDateTime validFrom; + + private OffsetDateTime validTo; + + @Builder.Default + private Set downloadFileTypes = new HashSet<>(); + + private boolean deleted; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadDetails.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadDetails.java new file mode 100644 index 000000000..82d29618c --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadDetails.java @@ -0,0 +1,35 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DownloadFileType; +import com.iqser.red.service.redaction.report.v1.api.model.ReportType; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class MigrationDownloadDetails { + + @Builder.Default + private List fileIds = new ArrayList<>(); + + @Builder.Default + private Set reportTypes = new HashSet<>(); + + @Builder.Default + private Set downloadFileTypes = new HashSet<>(); + + @Builder.Default + private Set reportTemplateIds = new HashSet<>(); + + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadStatus.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadStatus.java new file mode 100644 index 000000000..623dce1bf --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationDownloadStatus.java @@ -0,0 +1,30 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; + +import com.iqser.red.service.persistence.service.v1.api.model.download.DownloadStatusValue; + +import lombok.AccessLevel; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor(access = AccessLevel.PRIVATE) +public class MigrationDownloadStatus { + + private String userId; + private String storageId; + private String dossierId; + private String filename; + private String mimeType; + private DownloadStatusValue status; + private OffsetDateTime creationDate; + private OffsetDateTime lastDownload; + private MigrationDownloadDetails downloadDetails; + private long fileSize; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileAttributes.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileAttributes.java new file mode 100644 index 000000000..ee90a45dd --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileAttributes.java @@ -0,0 +1,16 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.util.HashMap; +import java.util.Map; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class MigrationFileAttributes { + + Map attributeIdToValue = new HashMap<>(); +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileStatus.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileStatus.java new file mode 100644 index 000000000..2fcd00c02 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationFileStatus.java @@ -0,0 +1,88 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; +import java.util.Set; + +import lombok.AccessLevel; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor(access = AccessLevel.PRIVATE) +public class MigrationFileStatus { + + private String dossierId; + + private String fileId; + + private String filename; + + private Status status; + + private Status lastSuccessfulStatus; + + private int numberOfPages; + + private OffsetDateTime added; + + private OffsetDateTime lastUpdated; + + private OffsetDateTime deleted; + + private OffsetDateTime lastProcessed; + + private int numberOfAnalyses; + + private String currentReviewer; + + private String lastReviewer; + + private OffsetDateTime lastManualRedaction; + + private boolean hasRedactions; + + private boolean hasHints; + + private boolean hasSuggestions; + + private boolean hasImages; + + private boolean hasUpdates; + + private String uploader; + + private long dictionaryVersion; + + private long rulesVersion; + + private long dossierDictionaryVersion; + + private long legalBasisVersion; + + private OffsetDateTime approvalDate; + + private OffsetDateTime lastUploaded; + + private long analysisDuration; + + private MigrationFileAttributes fileAttributes; + + private OffsetDateTime lastOCRTime; + + private boolean hasAnnotationComments; + + private boolean excluded; + + private Set excludedPages; + + private OffsetDateTime hardDeletedTime; + + private OffsetDateTime lastFileAttributeChange; + + private int analysisVersion; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationNotification.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationNotification.java new file mode 100644 index 000000000..b80ab7366 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationNotification.java @@ -0,0 +1,32 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.time.OffsetDateTime; +import java.util.HashMap; +import java.util.Map; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class MigrationNotification { + + private String userId; + private String notificationId; + + private String notificationType; + private String issuerId; + + @Builder.Default + private Map target = new HashMap<>(); + + private OffsetDateTime creationDate; + private OffsetDateTime seenDate; + private OffsetDateTime readDate; + + private OffsetDateTime softDeleted; +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLog.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLog.java new file mode 100644 index 000000000..04b7105f5 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLog.java @@ -0,0 +1,28 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.util.List; + +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.legalbasis.LegalBasis; + +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor +public class MigrationRedactionLog { + + /** + * Version 0 Redaction Logs have manual redactions merged inside them + * Version 1 Redaction Logs only contain system ( rule/dictionary ) redactions. Manual Redactions are merged in at runtime. + */ + private long analysisVersion; + + private List redactionLogEntry; + private List legalBasis; + + private long dictionaryVersion = -1; + private long dossierDictionaryVersion = -1; + private long rulesVersion = -1; + private long legalBasisVersion = -1; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLogEntry.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLogEntry.java new file mode 100644 index 000000000..53c2bc66c --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationRedactionLogEntry.java @@ -0,0 +1,63 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.util.ArrayList; +import java.util.List; + +import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; +import com.iqser.red.service.redaction.v1.model.ManualRedactionType; +import com.iqser.red.service.redaction.v1.model.Rectangle; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.NoArgsConstructor; + +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +@EqualsAndHashCode +public class MigrationRedactionLogEntry { + + private String id; + private String type; + private String value; + private String reason; + private int matchedRule; + private String legalBasis; + private boolean redacted; + private boolean isHint; + private boolean isRecommendation; + private String section; + private float[] color; + + @Builder.Default + private List positions = new ArrayList<>(); + private int sectionNumber; + private boolean manual; + private AnnotationStatus status; + private ManualRedactionType manualRedactionType; + private String manualRedactionUserId; + private boolean isDictionaryEntry; + + private String textBefore; + private String textAfter; + + @Builder.Default + private List comments = new ArrayList<>(); + + private int startOffset; + private int endOffset; + + private boolean isImage; + private boolean imageHasTransparency; + + private boolean isDossierDictionaryEntry; + + private boolean excluded; + + private String recategorizationType; + private String legalBasisChangeValue; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationViewedPage.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationViewedPage.java new file mode 100644 index 000000000..d49e8e5dc --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/MigrationViewedPage.java @@ -0,0 +1,19 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import lombok.AccessLevel; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor(access = AccessLevel.PRIVATE) +public class MigrationViewedPage { + + private String fileId; + private String userId; + private int page; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/NewIdForDossierTemplate.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/NewIdForDossierTemplate.java new file mode 100644 index 000000000..a901dc395 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/NewIdForDossierTemplate.java @@ -0,0 +1,13 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor +public class NewIdForDossierTemplate { + + private String newId; + private String dossierTemplateId; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/Status.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/Status.java new file mode 100644 index 000000000..e12bde898 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/Status.java @@ -0,0 +1,5 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +public enum Status { + UNPROCESSED, REPROCESS, PROCESSING, ERROR, DELETED, UNASSIGNED, UNDER_REVIEW, UNDER_APPROVAL, APPROVED, FULLREPROCESS, OCR_PROCESSING, INDEXING; +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionRow.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionRow.java new file mode 100644 index 000000000..5bf2f8b48 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionRow.java @@ -0,0 +1,20 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import java.io.Serializable; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class VersionRow implements Serializable { + + private String dossierTemplateId; + private String dossierId; + private int versionType; + private long version; +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionType.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionType.java new file mode 100644 index 000000000..ab80c3628 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/model/VersionType.java @@ -0,0 +1,27 @@ +package com.iqser.red.service.peristence.v1.server.migration.model; + +import lombok.Getter; + +public enum VersionType { + RULE(0), DICTIONARY(1), LEGAL_BASIS(2); + + @Getter + private int identifier; + + VersionType(int identifier){ + this.identifier = identifier; + } + + public static VersionType forIdentifier(int identifier){ + switch(identifier){ + case 0: + return RULE; + case 1: + return DICTIONARY; + case 2: + return LEGAL_BASIS; + } + return null; + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/settings/FileManagementServiceSettings.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/settings/FileManagementServiceSettings.java index 36b550f39..803eace47 100644 --- a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/settings/FileManagementServiceSettings.java +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/settings/FileManagementServiceSettings.java @@ -19,4 +19,5 @@ public class FileManagementServiceSettings { private int softDeleteCleanupTime = 96; + private boolean migrateOnly; } diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/MigrationTest.java b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/MigrationTest.java new file mode 100644 index 000000000..d5548dfa7 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/MigrationTest.java @@ -0,0 +1,316 @@ +package com.iqser.red.service.peristence.v1.server.integration.tests; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Mockito.when; + +import java.nio.charset.StandardCharsets; + +import org.junit.Ignore; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.core.io.ClassPathResource; + +import com.iqser.red.service.peristence.v1.server.Application; +import com.iqser.red.service.peristence.v1.server.integration.client.AuditClient; +import com.iqser.red.service.peristence.v1.server.integration.client.DictionaryClient; +import com.iqser.red.service.peristence.v1.server.integration.client.DossierAttributeClient; +import com.iqser.red.service.peristence.v1.server.integration.client.DossierAttributeConfigClient; +import com.iqser.red.service.peristence.v1.server.integration.client.DossierClient; +import com.iqser.red.service.peristence.v1.server.integration.client.DossierTemplateClient; +import com.iqser.red.service.peristence.v1.server.integration.client.DownloadClient; +import com.iqser.red.service.peristence.v1.server.integration.client.FileAttributeConfigClient; +import com.iqser.red.service.peristence.v1.server.integration.client.FileClient; +import com.iqser.red.service.peristence.v1.server.integration.client.LegalBasisClient; +import com.iqser.red.service.peristence.v1.server.integration.client.ManualRedactionClient; +import com.iqser.red.service.peristence.v1.server.integration.client.NotificationClient; +import com.iqser.red.service.peristence.v1.server.integration.client.RedactionLogClient; +import com.iqser.red.service.peristence.v1.server.integration.client.ReportTemplateClient; +import com.iqser.red.service.peristence.v1.server.integration.client.RulesClient; +import com.iqser.red.service.peristence.v1.server.integration.client.ViewedPagesClient; +import com.iqser.red.service.peristence.v1.server.integration.client.WatermarkClient; +import com.iqser.red.service.peristence.v1.server.integration.utils.AbstractPersistenceServerServiceTest; +import com.iqser.red.service.peristence.v1.server.migration.MigrationService; +import com.iqser.red.service.peristence.v1.server.service.FileManagementStorageService; +import com.iqser.red.service.peristence.v1.server.utils.StorageIdUtils; +import com.iqser.red.service.persistence.service.v1.api.model.audit.AuditSearchRequest; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; + +import lombok.SneakyThrows; + +@Ignore +public class MigrationTest extends AbstractPersistenceServerServiceTest { + + @Autowired + private MigrationService migrationService; + + @MockBean + private FileManagementStorageService fileManagementStorageService; + + @Autowired + private DossierTemplateClient dossierTemplateClient; + + @Autowired + private ReportTemplateClient reportTemplateClient; + + @Autowired + private DossierAttributeConfigClient dossierAttributeConfigClient; + + @Autowired + private FileAttributeConfigClient fileAttributeConfigClient; + + @Autowired + private LegalBasisClient legalBasisClient; + + @Autowired + private WatermarkClient watermarkClient; + + @Autowired + private DictionaryClient dictionaryClient; + + @Autowired + private DossierClient dossierClient; + + @Autowired + private FileClient fileClient; + + @Autowired + private AuditClient auditClient; + + @Autowired + private NotificationClient notificationClient; + + @Autowired + private DownloadClient downloadClient; + + @Autowired + private RulesClient rulesClient; + + @Autowired + private ViewedPagesClient viewedPagesClient; + + @Autowired + private DossierAttributeClient dossierAttributeClient; + + @Autowired + private ManualRedactionClient manualRedactionClient; + + @Autowired + private RedactionLogClient redactionLogClient; + + + @Test + @SneakyThrows + public void testMigration() { + + ClassPathResource dossierTemplatesJson = new ClassPathResource("files/migration/dossier_template_v2.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("dossier_template_v2"))).thenReturn(dossierTemplatesJson + .getInputStream() + .readAllBytes()); + + ClassPathResource reportTemplatesJson = new ClassPathResource("files/migration/report_template_table_v4.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("report_template_table_v4"))).thenReturn(reportTemplatesJson + .getInputStream() + .readAllBytes()); + + ClassPathResource configurationJson = new ClassPathResource("files/migration/configuration_table_v3.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("configuration_table_v3"))).thenReturn(configurationJson + .getInputStream() + .readAllBytes()); + + ClassPathResource typesJson = new ClassPathResource("files/migration/dictionary_table_v6.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("dictionary_table_v6"))).thenReturn(typesJson + .getInputStream() + .readAllBytes()); + + ClassPathResource entriesJson = new ClassPathResource("files/migration/entry_table_v6.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("entry_table_v6"))).thenReturn(entriesJson + .getInputStream() + .readAllBytes()); + + ClassPathResource dossiersJson = new ClassPathResource("files/migration/dossier_v4.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("dossier_v4"))).thenReturn(dossiersJson.getInputStream() + .readAllBytes()); + + ClassPathResource fileStatusJson = new ClassPathResource("files/migration/file_status_v13.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("file_status_v13"))).thenReturn(fileStatusJson + .getInputStream() + .readAllBytes()); + + ClassPathResource auditJson = new ClassPathResource("files/migration/audit_record_v2.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("audit_record_v2"))).thenReturn(auditJson.getInputStream() + .readAllBytes()); + + ClassPathResource notificationJson = new ClassPathResource("files/migration/notification_v1.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("notification_v1"))).thenReturn(notificationJson + .getInputStream() + .readAllBytes()); + + ClassPathResource downloadJson = new ClassPathResource("files/migration/download_status_v3.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("download_status_v3"))).thenReturn(downloadJson + .getInputStream() + .readAllBytes()); + + ClassPathResource versionsJson = new ClassPathResource("files/migration/version_table_v4.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("version_table_v4"))).thenReturn(versionsJson + .getInputStream() + .readAllBytes()); + + ClassPathResource viewedPagesJson = new ClassPathResource("files/migration/viewed_pages_v2.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("viewed_pages_v2"))).thenReturn(viewedPagesJson + .getInputStream() + .readAllBytes()); + + ClassPathResource dossierAttributesJson = new ClassPathResource("files/migration/dossier_attributes_v1.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("dossier_attributes_v1"))).thenReturn(dossierAttributesJson + .getInputStream() + .readAllBytes()); + + ClassPathResource manualAddJson = new ClassPathResource("files/migration/manual_redaction_annotations_v5.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_redaction_annotations_v5"))).thenReturn(manualAddJson + .getInputStream() + .readAllBytes()); + + ClassPathResource forceJson = new ClassPathResource("files/migration/manual_force_redaction_v3.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_force_redaction_v3"))).thenReturn(forceJson + .getInputStream() + .readAllBytes()); + + ClassPathResource imageRecategorizationJson = new ClassPathResource("files/migration/manual_image_recategorization_v3.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_image_recategorization_v3"))).thenReturn(imageRecategorizationJson + .getInputStream() + .readAllBytes()); + + ClassPathResource manualLegalBasisChangeJson = new ClassPathResource("files/migration/manual_legal_basis_change_v3.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_legal_basis_change_v3"))).thenReturn(manualLegalBasisChangeJson + .getInputStream() + .readAllBytes()); + + ClassPathResource removeRedactionsJson = new ClassPathResource("files/migration/manual_redaction_remove_v2.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_redaction_remove_v2"))).thenReturn(removeRedactionsJson + .getInputStream() + .readAllBytes()); + + ClassPathResource commentsJson = new ClassPathResource("files/migration/manual_redaction_comments_v3.json"); + when(fileManagementStorageService.getStoredObjectBytes(getMigrationId("manual_redaction_comments_v3"))).thenReturn(commentsJson + .getInputStream() + .readAllBytes()); + + when(fileManagementStorageService.getStoredObjectBytes(String.format("rules/%s-rules.drl", "6d945ebb-604b-4781-a72b-0f07e8ceb3e6"))) + .thenReturn("Rules".getBytes(StandardCharsets.UTF_8)); + when(fileManagementStorageService.getStoredObjectBytes(String.format("rules/%s-rules.drl", "49156a1f-30cc-412f-8778-eb5bd842d709"))) + .thenReturn("Rules".getBytes(StandardCharsets.UTF_8)); + when(fileManagementStorageService.getStoredObjectBytes(String.format("rules/%s-rules.drl", "9b7bd575-4566-4408-984f-b26da1d2616e"))) + .thenReturn("Rules".getBytes(StandardCharsets.UTF_8)); + + ClassPathResource redactionLog = new ClassPathResource("files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json"); + when(fileManagementStorageService.getStoredObjectBytes(StorageIdUtils.getStorageId("b2c9c4e5-5382-4862-9402-5b619c41a68c", "220ab22e443c8e32d3778b0937b03170", FileType.REDACTION_LOG))) + .thenReturn(redactionLog.getInputStream().readAllBytes()); + + migrationService.migrate(); + + var allTemplates = dossierTemplateClient.getAllDossierTemplates(); + assertThat(allTemplates.size()).isEqualTo(2); + + allTemplates.forEach(dossierTemplate -> { + var reportTemplates = reportTemplateClient.getAvailableReportTemplates(dossierTemplate.getId()); + assertThat(reportTemplates.size()).isEqualTo(4); + + var dossierAttributesConfig = dossierAttributeConfigClient.getDossierAttributes(dossierTemplate.getId()); + if (dossierTemplate.getId().equals("9b7bd575-4566-4408-984f-b26da1d2616e")) { + assertThat(dossierAttributesConfig.size()).isEqualTo(1); + } + + var fileAtrributesConfig = fileAttributeConfigClient.getFileAttributeConfigs(dossierTemplate.getId()); + assertThat(fileAtrributesConfig.size()).isEqualTo(5); + + var legalBasis = legalBasisClient.getLegalBasisMapping(dossierTemplate.getId()); + if (dossierTemplate.getId().equals("9b7bd575-4566-4408-984f-b26da1d2616e")) { + assertThat(legalBasis.size()).isEqualTo(7); + } else { + assertThat(legalBasis.size()).isEqualTo(9); + } + var legalBasisVersion = legalBasisClient.getVersion(dossierTemplate.getId()); + assertThat(legalBasisVersion).isEqualTo(1); + + var watermark = watermarkClient.getWatermark(dossierTemplate.getId()); + assertThat(watermark).isNotNull(); + + var colors = dictionaryClient.getColors(dossierTemplate.getId()); + assertThat(colors).isNotNull(); + + var types = dictionaryClient.getAllTypesForDossierTemplate(dossierTemplate.getId()); + types.forEach(type -> { + var entries = dictionaryClient.getEntriesForType(type.getTypeId()); + if (dossierTemplate.getId().equals("49156a1f-30cc-412f-8778-eb5bd842d709") && type.getType() + .equals("CBI_address")) { + assertThat(entries.size()).isEqualTo(30); + } + }); + var dictionaryVersion = dictionaryClient.getVersion(dossierTemplate.getId()); + assertThat(dictionaryVersion).isGreaterThan(0); + + if (dossierTemplate.getId().equals("6d945ebb-604b-4781-a72b-0f07e8ceb3e6")) { + assertThat(types.size()).isEqualTo(6); + } else if (dossierTemplate.getId().equals("9b7bd575-4566-4408-984f-b26da1d2616e")) { + assertThat(types.size()).isEqualTo(19); + } else { + assertThat(types.size()).isEqualTo(14); + } + + var rules = rulesClient.getRules(dossierTemplate.getId()); + assertThat(rules.getValue()).isEqualTo("Rules"); + var rulesVersion = rulesClient.getVersion(dossierTemplate.getId()); + assertThat(rulesVersion).isGreaterThan(0); + }); + + var dossiers = dossierClient.getAllDossiers(); + assertThat(dossiers.size()).isEqualTo(3); + dossiers.forEach(dossier -> { + var dossierTypes = dictionaryClient.getAllTypesForDossier(dossier.getId()); + assertThat(dossierTypes.size()).isEqualTo(1); + var dossierAttributes = dossierAttributeClient.getDossierAttributes(dossier.getId()); + if (dossier.getId().equals("d46267c1-bb19-44ca-8c0c-60fb5d5309c5")) { + assertThat(dossierAttributes.size()).isEqualTo(1); + } + }); + + var files = fileClient.getAllStatuses(); + files.forEach(file -> { + var manualRedactions = manualRedactionClient.getManualRedactions(file.getDossierId(), file.getId()); + if (file.getId().equals("a7985c094cac62118c9b350461902f95")) { + assertThat(manualRedactions.getEntriesToAdd().size()).isEqualTo(1); + assertThat(manualRedactions.getForceRedactions().size()).isEqualTo(1); + assertThat(manualRedactions.getImageRecategorization().size()).isEqualTo(0); + assertThat(manualRedactions.getLegalBasisChanges().size()).isEqualTo(1); + assertThat(manualRedactions.getIdsToRemove().size()).isEqualTo(1); + assertThat(manualRedactions.getComments().size()).isEqualTo(1); + } + }); + assertThat(files.size()).isEqualTo(33); + + var auditCategories = auditClient.getCategories(); + assertThat(auditCategories.size()).isEqualTo(7); + + var auditRecords = auditClient.search(AuditSearchRequest.builder().build()); + assertThat(auditRecords.getTotalHits()).isEqualTo(128); + + var notifications = notificationClient.getNotifications("abc", true); + assertThat(notifications).isEmpty(); + + var downloads = downloadClient.getDownloadStatus("f8960240-9973-42e9-9b0f-ed096ff5a018"); + assertThat(downloads.size()).isEqualTo(0); + + var viewedPages = viewedPagesClient.getViewedPages("a7985c094cac62118c9b350461902f95", "f8960240-9973-42e9-9b0f-ed096ff5a018"); + assertThat(viewedPages.size()).isEqualTo(3); + + } + + + private String getMigrationId(String tableName) { + + return "migration/" + tableName + ".json"; + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json new file mode 100644 index 000000000..8bff93cd7 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json @@ -0,0 +1,56711 @@ +{ + "analysisVersion": 1, + "redactionLogEntry": [ + { + "id": "6fb25dfdcb51525837429b37b80d412c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: ", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 280.22, + "y": 302.73004 + }, + "width": 83.97998, + "height": 14.037, + "page": 1 + } + ], + "sectionNumber": 3, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 61, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b94d0cfd925427f3168102c909976d3", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: ", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 368.95, + "y": 89.104004 + }, + "width": 73.98999, + "height": 14.037, + "page": 1 + } + ], + "sectionNumber": 3, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Rapporteur Member State: ", + "textAfter": " Co-Rapporteur Member", + "comments": [], + "startOffset": 101, + "endOffset": 108, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "aa9ceae3ccd0b2e0ead5c114d4a47a90", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: ", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 392.62, + "y": 62.343994 + }, + "width": 54.92798, + "height": 14.037, + "page": 1 + } + ], + "sectionNumber": 1, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 137, + "endOffset": 143, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "138750ec91141a611b0c4da4fa053a37", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: Version history", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 89.184, + "y": 702.5 + }, + "width": 43.55268, + "height": 10.526819, + "page": 2 + } + ], + "sectionNumber": 6, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 13, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bd936a519fc0f40b163bd9038a172b35", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 2 + } + ], + "sectionNumber": 2361, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c419a894c27f87312a8d70de415f3594", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 3 + } + ], + "sectionNumber": 2362, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "11035a95841651847d077a8ca8ce6481", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table of contents", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 156.02, + "y": 199.14001 + }, + "width": 25.59999, + "height": 11.454, + "page": 3 + } + ], + "sectionNumber": 8, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3602, + "endOffset": 3607, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "084ad90293677fe37099614a5e4dfcad", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 4 + } + ], + "sectionNumber": 2363, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b97566e66fc8c650199a1052418a87bb", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 5 + } + ], + "sectionNumber": 2364, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "840ad971b0940fc4f261eb7c1658ba9f", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 156.02, + "y": 620.18 + }, + "width": 21.603989, + "height": 11.454, + "page": 5 + } + ], + "sectionNumber": 9, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6407, + "endOffset": 6411, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0c103a796ac82a9ae58be42105910fec", + "type": "false_positive", + "value": "List of", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3 Proposed decision with respect to the application ................................ 189", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 156.02, + "y": 235.40997 + }, + "width": 33.412003, + "height": 11.454, + "page": 6 + } + ], + "sectionNumber": 10, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 961, + "endOffset": 968, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b69a4074e458f944eba38354fe2fe58", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3 Proposed decision with respect to the application ................................ 189", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 210.17, + "y": 249.21002 + }, + "width": 22.744003, + "height": 11.454, + "page": 6 + } + ], + "sectionNumber": 10, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 874, + "endOffset": 877, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "774723c88a98f7c4325c32f4005cccf9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 6 + } + ], + "sectionNumber": 2365, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f7b94c09d124c45d3373a1d72c075aa3", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 7 + } + ], + "sectionNumber": 2366, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d6c1ad45cbc9844426035012c892f5e9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 8 + } + ], + "sectionNumber": 2367, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "42ec9dc2f75b331122ed8a588b067b80", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 165.008, + "y": 220.04999 + }, + "width": 36.328003, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 797, + "endOffset": 804, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fcf16d42dd42c5d82b9a94a03b687961", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur\nMember State", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 147.74, + "y": 472.31 + }, + "width": 30.96257, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 15, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 189, + "endOffset": 195, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6a4f22fb08c700bd47944c4ab5eeca70", + "type": "false_positive", + "value": "January", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 85.32912, + "y": 270.69 + }, + "width": 35.422707, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 532, + "endOffset": 539, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f60f40d36864bbf386ffb4689693a1ca", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1 Statement of subject matter and purpose for which this report\nhas been prepared and background information on the application", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 483.72, + "y": 586.46 + }, + "width": 41.881012, + "height": 11.017679, + "page": 9 + }, + { + "topLeft": { + "x": 70.944, + "y": 573.86 + }, + "width": 90.63377, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 14, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 446, + "endOffset": 473, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4c321fd7a2ca17c49ad0319b52ca6909", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 184.73, + "y": 207.41998 + }, + "width": 36.350098, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 890, + "endOffset": 897, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "071adeaf8369d559e63a97654007615d", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur\nMember State", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 331.2562, + "y": 484.91 + }, + "width": 41.89215, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 15, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(EU) No 844/2012 ", + "textAfter": " was assigned", + "comments": [], + "startOffset": 134, + "endOffset": 141, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ccb093235e61b5339f0d0d917146ca69", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 234.77, + "y": 80.94403 + }, + "width": 19.469925, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1439, + "endOffset": 1443, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f98616c0ea8310c97cc6ca78ee37bb0f", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 148.51106, + "y": 93.54401 + }, + "width": 41.89894, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "an application to ", + "textAfter": " as RMS", + "comments": [], + "startOffset": 1325, + "endOffset": 1332, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b73168aa424912e5f26aa9229e009aaf", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 345.31, + "y": 106.26001 + }, + "width": 133.91055, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1269, + "endOffset": 1296, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c25731e133260aa756c83bcfc3dfe2b9", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 250.61, + "y": 93.54401 + }, + "width": 30.84111, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1344, + "endOffset": 1350, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "be4c366be63455cdb5a632d3af387d92", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 9 + } + ], + "sectionNumber": 2368, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b8df762356032e9c9c8f90f703ee41a9", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 204.87822, + "y": 333.93 + }, + "width": 41.991547, + "height": 11.017679, + "page": 9 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 251, + "endOffset": 259, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d8e4df925dfb0051168648b649a9b8d6", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 253.61, + "y": 581.18 + }, + "width": 19.458878, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 635, + "endOffset": 639, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bd35932c98dd25d146596fb88af08b44", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 274.81427, + "y": 440.39 + }, + "width": 21.236328, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1317, + "endOffset": 1320, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b29e8f4750ab880e4d5e49caf2f08673", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 185.78, + "y": 402.47 + }, + "width": 19.469925, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1560, + "endOffset": 1564, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "232345742932677575d4f58c1b2e2144", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 385.70016, + "y": 542.39 + }, + "width": 21.236328, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 790, + "endOffset": 793, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "34a978e1b5e09ab0693644f220a18f7e", + "type": "CBI_address", + "value": "Syngenta Limited", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "1.2.3 Information relating to the collective provision of dossiers", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 63.42401 + }, + "width": 79.538574, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 20, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "provision of dossiers ", + "textAfter": " is the", + "comments": [], + "startOffset": 67, + "endOffset": 83, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "dc260bd17962bc0a0455dfafbe644844", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 330.53314, + "y": 619.1 + }, + "width": 21.092804, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 391, + "endOffset": 394, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6d9167a1d818498a5e4040af1e7b88dd", + "type": "false_positive", + "value": "January", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 435.7, + "y": 759.04 + }, + "width": 35.4227, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1527, + "endOffset": 1534, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e8966d135c340f0247d9f694644416d1", + "type": "PII", + "value": "regina.dorn@syngenta.com", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.2 Applicant(s) information", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 188.34003 + }, + "width": 122.451065, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 18, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 287, + "endOffset": 311, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f7a7c2aa89fdddfb0732bdb95d09b1c9", + "type": "PII", + "value": "+41 (61) 323 6155", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.2 Applicant(s) information", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 200.94 + }, + "width": 83.41362, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 18, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 261, + "endOffset": 278, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9258e98a88924b62f75dafd367ac50b5", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.2 Applicant(s) information", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 302.25 + }, + "width": 133.23717, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 18, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 111, + "endOffset": 138, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7aa20086f4a4b3772b288f0c1a3ffa61", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 209.57, + "y": 491.87 + }, + "width": 19.580322, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1094, + "endOffset": 1098, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ed24aa78088604b015dab87561ba589a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 10 + } + ], + "sectionNumber": 2369, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "20da3e649a8d47a78652f7e395adb992", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 207.05, + "y": 759.04 + }, + "width": 133.46898, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 16, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1479, + "endOffset": 1506, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2caefaeda223d2a65640e2316d8d34d9", + "type": "false_positive", + "value": "November", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 356.2452, + "y": 657.86 + }, + "width": 47.36798, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 17, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 243, + "endOffset": 251, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "256616825544ea39f45148f4aaaf48fe", + "type": "PII", + "value": "+41 (61) 323 6358", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.2 Applicant(s) information", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 213.65997 + }, + "width": 83.41362, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 18, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 238, + "endOffset": 255, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "52ec029a726efd3c6f12ed37328bfb2b", + "type": "PII", + "value": "Regina Dorn", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.2 Applicant(s) information", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 226.28998 + }, + "width": 57.624176, + "height": 11.017679, + "page": 10 + } + ], + "sectionNumber": 18, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 219, + "endOffset": 230, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c61246a8a4752456b1f7d1e661c37f02", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 11 + } + ], + "sectionNumber": 2370, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "082bdaad32c2bb6faf7f1452dd4063d1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 12 + } + ], + "sectionNumber": 2371, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c79887e0e5c2f1bb4f487b18e8d5b2fd", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 13 + } + ], + "sectionNumber": 2372, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2769a0f93a6e58ed4fd2a9ed35c4bd57", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 148.94, + "y": 393.45 + }, + "width": 133.23718, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 36, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 144, + "endOffset": 171, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fc4c07b328b087412ccc409f1e32b03d", + "type": "PII", + "value": "Patrick Gardinal", + "reason": "Producer was found", + "matchedRule": 27, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 148.94, + "y": 406.07 + }, + "width": 73.40033, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 36, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 127, + "endOffset": 143, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "49b4b3d2c95bd811976573a7ff4b7172", + "type": "PII", + "value": "+41 (61) 323 6155", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4 Information on the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 531.83 + }, + "width": 83.41362, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 35, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 220, + "endOffset": 237, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "150548e4469cb28152b426cd142c19e6", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.4 Information on the plant protection product", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 633.02 + }, + "width": 133.23717, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 35, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 70, + "endOffset": 97, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0e06579a249a55c74b138564549b697e", + "type": "PII", + "value": "+41 (0) 61 323 61 55", + "reason": "Producer was found", + "matchedRule": 27, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 148.94, + "y": 330.21 + }, + "width": 94.33217, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 36, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 245, + "endOffset": 265, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "37f9e3c45b6ff7fdc5110ad456ccd8f8", + "type": "PII", + "value": "+41 (0) 61 323 60 51", + "reason": "Producer was found", + "matchedRule": 27, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 148.94, + "y": 342.81 + }, + "width": 94.388565, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 36, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 219, + "endOffset": 239, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3272cb018f4d83bab82e5a004e57a261", + "type": "PII", + "value": "regina.dorn@syngenta.com", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4 Information on the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 519.11 + }, + "width": 122.49596, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 35, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 246, + "endOffset": 270, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c016f17170fed2c8b75a9b7b0f74a216", + "type": "PII", + "value": "Regina Dorn", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4 Information on the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 557.03 + }, + "width": 57.624176, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 35, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 178, + "endOffset": 189, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3c33ecbf5329f74c69427b890d9678e2", + "type": "PII", + "value": "+41 (61) 323 6358", + "reason": "Applicant information was found", + "matchedRule": 25, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4 Information on the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 147.86, + "y": 544.43 + }, + "width": 83.41362, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 35, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 197, + "endOffset": 214, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "007ca0cc583d19cf0582a99a7c0b1bc2", + "type": "false_positive", + "value": "Syngenta Crop Protection AG", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 148.94, + "y": 456.71 + }, + "width": 133.23718, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 36, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 53, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8206711d24719711388a810a7daae785", + "type": "PII", + "value": "patrick.gardinal@syngenta.com", + "reason": "Producer was found", + "matchedRule": 27, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 148.94, + "y": 317.49 + }, + "width": 141.26324, + "height": 11.017679, + "page": 13 + } + ], + "sectionNumber": 36, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 274, + "endOffset": 303, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "55694777e588bbb2be29cdaf13824514", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.4.7 Field of use envisaged", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 141.74, + "y": 426.95 + }, + "width": 26.871994, + "height": 11.358, + "page": 14 + } + ], + "sectionNumber": 43, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a4bbeb42c519ea3ed154d1f01dfa85f4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 14 + } + ], + "sectionNumber": 2373, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e98b5d198c4fcacf6864cfcb3f2946ca", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 15 + } + ], + "sectionNumber": 2374, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b848180f2f9646a089f538c25a59751", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 16 + } + ], + "sectionNumber": 2375, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1bda62d3888e54565bd624daec9474bd", + "type": "false_positive", + "value": "Blackwell, ISBN", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "1.5 Detailed uses of the plant protection product", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 400.43585, + "y": 125.34 + }, + "width": 22.378326, + "height": 9.65418, + "page": 16 + }, + { + "topLeft": { + "x": 135.14, + "y": 116.100006 + }, + "width": 36.921783, + "height": 9.65418, + "page": 16 + } + ], + "sectionNumber": 59, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 969, + "endOffset": 984, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b6e69037f9015af109b61275c5d5d0c4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 17 + } + ], + "sectionNumber": 2376, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "430a07cf621b873f4043d83c16eb3187", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 18 + } + ], + "sectionNumber": 2377, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e0bd35d8bc01fe1599705690b891c6e6", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 19 + } + ], + "sectionNumber": 2378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "20c94a27baeaaf9a1ef9f55ba548b08e", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.2.2 Summary of physical and chemical properties of the plant protection\nproduct", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 449.96924, + "y": 210.29999 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 19 + } + ], + "sectionNumber": 68, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 157, + "endOffset": 160, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5b6a9654d0db08bfd2c969e022691857", + "type": "hint_only", + "value": "batch analysis", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2 Summary of active substance hazard and of product risk assessment", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 601.94 + }, + "width": 64.899506, + "height": 11.017679, + "page": 19 + } + ], + "sectionNumber": 66, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 223, + "endOffset": 237, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9910e65a9b5de1cb732742a76487d498", + "type": "false_positive", + "value": "Major annual", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.3 Data on application and efficacy", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 695.42 + }, + "width": 60.649124, + "height": 11.017679, + "page": 20 + } + ], + "sectionNumber": 69, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 68, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "eed013e378bb7c68c49090b0c64eaf6a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 20 + } + ], + "sectionNumber": 2379, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "051aeea510d49e8ebb585cae931e3c69", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "2.3.2 Summary of information on the development of resistance", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 307.22214, + "y": 531.83 + }, + "width": 41.89215, + "height": 11.017679, + "page": 20 + } + ], + "sectionNumber": 70, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "weed species in ", + "textAfter": " and the", + "comments": [], + "startOffset": 511, + "endOffset": 518, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0e87c113fed01b886bdc4a486c4f06ce", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 133.38 + }, + "width": 32.03537, + "height": 10.44714, + "page": 21 + } + ], + "sectionNumber": 77, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "62750594ebc2aa09d27c1c4cc87e0748", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 21 + } + ], + "sectionNumber": 2380, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "421a390c0359ea03c62c4f8e66487deb", + "type": "CBI_author", + "value": "Moster", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 686.3 + }, + "width": 29.26651, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 83, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "MET9800605 ", + "textAfter": " (1996a) MET980060", + "comments": [], + "startOffset": 118, + "endOffset": 124, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "df2a12e25f4e63d4da029b946bb07003", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 570.35 + }, + "width": 25.890076, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 85, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Rezaaiyan", + "comments": [], + "startOffset": 113, + "endOffset": 118, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f24931d218fa560911d70d90639270ea", + "type": "CBI_author", + "value": "Rezaaiyan", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 460.13885, + "y": 570.35 + }, + "width": 42.6727, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 85, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Vargo & ", + "textAfter": " (1999) ASB2016-784", + "comments": [], + "startOffset": 121, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "697c8b10fea8863d82809c68aa6477f0", + "type": "CBI_author", + "value": "Evans", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 535.79 + }, + "width": 25.372192, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 85, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Rezaaiyan (1999) ASB2016-784 ", + "textAfter": " (2002) ASB2016-79", + "comments": [], + "startOffset": 150, + "endOffset": 155, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a533d52c8cc0f90b87905758fd4076c1", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 350.01 + }, + "width": 46.34793, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 89, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 129, + "endOffset": 139, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fb6820a76add0634c005cec047d94183", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 193.38 + }, + "width": 25.890076, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 92, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) ASB2016-78", + "comments": [], + "startOffset": 119, + "endOffset": 124, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a191b9e9a6b68c2901dbb9cd1ecb21a0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 2381, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "601b1113b809f8065918f1f6a39942d3", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 483.59 + }, + "width": 18.73877, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 86, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-33", + "comments": [], + "startOffset": 161, + "endOffset": 165, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d58bf851701557a697a0a320d099db5f", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 326.97003 + }, + "width": 18.73877, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 89, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-33", + "comments": [], + "startOffset": 159, + "endOffset": 163, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d76af2779afd22abb787e712a4a05ed1", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 506.63 + }, + "width": 46.34793, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 86, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 131, + "endOffset": 141, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7cf033f175750396e016c4e45e8d60c1", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 718.22 + }, + "width": 32.03537, + "height": 10.44714, + "page": 22 + } + ], + "sectionNumber": 82, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1bce53a0ff374db727a8b5216896e8a9", + "type": "CBI_author", + "value": "Hargeaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 622.58 + }, + "width": 43.13086, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 84, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2016-336", + "comments": [], + "startOffset": 121, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a4fab15127229783efba03e19c40f227", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 599.54 + }, + "width": 18.73877, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 84, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargeaves (2008) ASB2016-336 ", + "textAfter": " (2008) ASB2016-33", + "comments": [], + "startOffset": 150, + "endOffset": 154, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "06323955e848abd3569e04fcd4038753", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 2382, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "991978f09d101eaa0b528e18ffaf2449", + "type": "CBI_author", + "value": "Wolf", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 592.46 + }, + "width": 21.587372, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 102, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005) ASB2015-34", + "comments": [], + "startOffset": 119, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3d4e85d6156c182e978f262a31511ff1", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 718.22 + }, + "width": 32.03537, + "height": 10.44714, + "page": 23 + } + ], + "sectionNumber": 97, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "514b72db46771afe2eb39abcd7fd6cce", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-2: Validated methods for the generation of pre-authorization data for S-\nmetolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 447.35 + }, + "width": 32.03537, + "height": 10.44714, + "page": 23 + } + ], + "sectionNumber": 105, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a0d1df4d2e3eab08f7f0eead9c9940e7", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 280.28998 + }, + "width": 32.03537, + "height": 10.44714, + "page": 23 + } + ], + "sectionNumber": 109, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1d4163757427a2cdbfc4744662b32004", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 119.46002 + }, + "width": 46.34793, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 112, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 166, + "endOffset": 176, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6a11bb10fb6c5a26a4cf01ac8a9c339f", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 235.28998 + }, + "width": 18.73877, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 110, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargeaves (2008) ASB2016-336 ", + "textAfter": " (2008) ASB2016-33", + "comments": [], + "startOffset": 187, + "endOffset": 191, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "aa2b09541f0ec8fe7a6f2e65a03f8e2e", + "type": "CBI_author", + "value": "Evans", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 148.62 + }, + "width": 25.372192, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 111, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Rezaaiyan (1999) ASB2016-784 ", + "textAfter": " (2002) ASB2016-79", + "comments": [], + "startOffset": 177, + "endOffset": 182, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "eec007ab7b1b34c1d3b3e17f357cc122", + "type": "CBI_author", + "value": "Hargeaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 258.33002 + }, + "width": 43.13086, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 110, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2016-336", + "comments": [], + "startOffset": 158, + "endOffset": 167, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "38343cbad7b42bd12d6eb5b9cc5004e9", + "type": "CBI_author", + "value": "Rezaaiyan", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 460.13885, + "y": 183.06 + }, + "width": 42.75287, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 111, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Vargo & ", + "textAfter": " (1999) ASB2016-784", + "comments": [], + "startOffset": 148, + "endOffset": 157, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "77df2e7fa239120bdae14b958d622dd2", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 183.06 + }, + "width": 25.890076, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 111, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Rezaaiyan", + "comments": [], + "startOffset": 140, + "endOffset": 145, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8aae7ffcea75cab331d72c40704430f8", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 96.42401 + }, + "width": 18.73877, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 112, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-33", + "comments": [], + "startOffset": 196, + "endOffset": 200, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f2a311b9a5cea47027504810a3d666a3", + "type": "CBI_author", + "value": "Biedermann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 680.06 + }, + "width": 49.744293, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 99, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994) TOX980016", + "comments": [], + "startOffset": 53, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "896fbb917cec01a54db67ce79df5798f", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 113.34003 + }, + "width": 18.73877, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 124, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-33", + "comments": [], + "startOffset": 195, + "endOffset": 199, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "90903e725f4ed955aeca58dbbbf9ff8b", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 671.78 + }, + "width": 18.73877, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 116, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-33", + "comments": [], + "startOffset": 195, + "endOffset": 199, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "77c8cb5d366cf28528d09548fed27b58", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 72.664 + }, + "width": 25.890076, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 125, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) ASB2016-78", + "comments": [], + "startOffset": 100, + "endOffset": 105, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e789a79cb5fc995a2e6873bacd0f6b54", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 200.10004 + }, + "width": 46.34793, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 123, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 166, + "endOffset": 176, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1a2b4492fbb5274fca616b4a46cefed6", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 443.62, + "y": 347.97 + }, + "width": 32.03537, + "height": 10.44714, + "page": 24 + } + ], + "sectionNumber": 120, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d9bc21b604e2ac804e3ac51080f4001e", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 177.06 + }, + "width": 18.73877, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 123, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-33", + "comments": [], + "startOffset": 196, + "endOffset": 200, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "000a798e6e3b6228a34c808003ff92c4", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 619.58 + }, + "width": 25.890076, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 117, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) ASB2016-78", + "comments": [], + "startOffset": 301, + "endOffset": 306, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9d600ba316fcb9c6becca526dd45d2b4", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 716.66 + }, + "width": 32.03537, + "height": 10.44714, + "page": 24 + } + ], + "sectionNumber": 115, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "482615d1716dd1ca731f766e0256a11a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 2383, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5826ac55a1dadaeb49596a84f46d1c5d", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 694.7 + }, + "width": 46.34793, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 116, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 165, + "endOffset": 175, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "177b767a78b235b6d7f2161a99306a43", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 263.73004 + }, + "width": 25.890076, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 122, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Rezaaiyan", + "comments": [], + "startOffset": 140, + "endOffset": 145, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "69c14912a246506d7e2a676f1e023e27", + "type": "CBI_author", + "value": "Evans", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 229.28998 + }, + "width": 25.372192, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 122, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Rezaaiyan (1999) ASB2016-784 ", + "textAfter": " (2002) ASB2016-79", + "comments": [], + "startOffset": 177, + "endOffset": 182, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "82b6df6b591818135ca354a4e874d36d", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 136.38 + }, + "width": 46.34793, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 124, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 165, + "endOffset": 175, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "77a3447270b5d5f2844769bdadd40d4e", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 304.52997 + }, + "width": 18.73877, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 121, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargeaves (2008) ASB2016-336 ", + "textAfter": " (2008) ASB2016-33", + "comments": [], + "startOffset": 187, + "endOffset": 191, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d6b1d7a94b35d7d9bead085b3165fce3", + "type": "CBI_author", + "value": "Rezaaiyan", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.89886, + "y": 263.73004 + }, + "width": 42.75287, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 122, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Vargo & ", + "textAfter": " (1999) ASB2016-784", + "comments": [], + "startOffset": 148, + "endOffset": 157, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6ee258faba49b798d70b001982326368", + "type": "CBI_author", + "value": "Hargeaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 327.45 + }, + "width": 43.13086, + "height": 10.526819, + "page": 24 + } + ], + "sectionNumber": 121, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2016-336", + "comments": [], + "startOffset": 158, + "endOffset": 167, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e9554cd88d2e00e648219eeb916be933", + "type": "CBI_author", + "value": "Garrigue", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 387.93 + }, + "width": 36.358032, + "height": 10.526819, + "page": 25 + } + ], + "sectionNumber": 134, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014) ASB2016-772", + "comments": [], + "startOffset": 260, + "endOffset": 268, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c605fba4f5e72fb9da23004d990258f7", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 443.62, + "y": 718.22 + }, + "width": 32.03537, + "height": 10.44714, + "page": 25 + } + ], + "sectionNumber": 128, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2cbc024e6670b8ac2ee7c57650602000", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 408.47 + }, + "width": 32.03537, + "height": 10.44714, + "page": 25 + } + ], + "sectionNumber": 133, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9ad287957f028261f75a3f3be87bac9e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 25 + } + ], + "sectionNumber": 2384, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "03f018c5380354b2907a397a37acc949", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 255.33002 + }, + "width": 46.34793, + "height": 10.526819, + "page": 25 + } + ], + "sectionNumber": 135, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005) ASB2016-78", + "comments": [], + "startOffset": 226, + "endOffset": 236, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e206a2c87536e8068936fc5a51027703", + "type": "CBI_author", + "value": "Garrigue", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 365.01 + }, + "width": 36.358032, + "height": 10.526819, + "page": 25 + } + ], + "sectionNumber": 134, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Garrigue (2014) ASB2016-772 ", + "textAfter": " (2014a) ASB2016-77", + "comments": [], + "startOffset": 288, + "endOffset": 296, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "01aa9c49e6d80e034dcfaa406b495fe2", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-8: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 223.04999 + }, + "width": 32.03537, + "height": 10.44714, + "page": 26 + } + ], + "sectionNumber": 147, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aec6c35ccc6e147deadaef0968b7bd32", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-7: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 457.67 + }, + "width": 32.036438, + "height": 10.44714, + "page": 26 + } + ], + "sectionNumber": 143, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b9752f000b10efe9625805380c257927", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 26 + } + ], + "sectionNumber": 2385, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "25a70b8aacd51b0f6f6a36e726c52dfc", + "type": "CBI_author", + "value": "Vargo", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-7: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 437.15 + }, + "width": 25.890076, + "height": 10.526819, + "page": 26 + } + ], + "sectionNumber": 144, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) ASB2016-78", + "comments": [], + "startOffset": 244, + "endOffset": 249, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b601e4d3a0e9874c3da6e3a1659b38c0", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-8: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 202.62 + }, + "width": 40.282288, + "height": 10.526819, + "page": 26 + } + ], + "sectionNumber": 148, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014) ASB2016-77", + "comments": [], + "startOffset": 221, + "endOffset": 229, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8239e4c741a87844c58e34bd46b9d24b", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 440.62, + "y": 686.9 + }, + "width": 32.03537, + "height": 10.44714, + "page": 26 + } + ], + "sectionNumber": 138, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "514a812c6b7d46b5cb6268e3ac2f6068", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 27 + } + ], + "sectionNumber": 2386, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a9c6ec2d10fdbd93d51882766025bfb4", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 610.58 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 169, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 251, + "endOffset": 259, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8a610726e8636d3817e2b4d4c6989587", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 697.34 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 168, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 265, + "endOffset": 273, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f7471490f55f0404bb609ecfdb1d0b9b", + "type": "CBI_author", + "value": "Giannone", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 407.81024, + "y": 402.71 + }, + "width": 39.834137, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 171, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "ASB2015-335 ILV of ", + "textAfter": " (2002)", + "comments": [], + "startOffset": 157, + "endOffset": 165, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b19dc41676a03a648c0bdadb94de50f0", + "type": "false_positive", + "value": "Luna", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 267.7521, + "y": 338.97 + }, + "width": 21.368256, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 172, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 106, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6cff0504ac95041305c7467fcc86f343", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 442.34155, + "y": 576.14 + }, + "width": 30.342194, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 169, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "of Class & ", + "textAfter": " (2014)", + "comments": [], + "startOffset": 236, + "endOffset": 243, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c5d441ffdabf38dd2eddaff8fb1456b0", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 437.15 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 171, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 173, + "endOffset": 181, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6e4fbce828684fa11bbf87aacb642b6e", + "type": "CBI_author", + "value": "Allen", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 286.76996 + }, + "width": 23.131165, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 173, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2017) ASB2017-13208,", + "comments": [], + "startOffset": 138, + "endOffset": 143, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f52d33940532235bbaee52f448634426", + "type": "CBI_author", + "value": "Miller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 610.58 + }, + "width": 25.900024, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 169, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13201", + "comments": [], + "startOffset": 193, + "endOffset": 199, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a03c05b33b9ed64e68696910a543c9df", + "type": "CBI_author", + "value": "Giannone", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 500.87 + }, + "width": 39.72458, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 170, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Giannone (2002) ASB2011-14092 ", + "textAfter": " (2002) ASB2011-14095", + "comments": [], + "startOffset": 198, + "endOffset": 206, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "484b95f98163582e3db2925811c8f2ab", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 200.10004 + }, + "width": 46.34793, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 174, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-336", + "comments": [], + "startOffset": 290, + "endOffset": 300, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "655f67578e035f1f2b7fa1b9ae6d3ea0", + "type": "CBI_author", + "value": "Benazeraf", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 437.15 + }, + "width": 41.477478, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 171, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2004) ASB2015-335", + "comments": [], + "startOffset": 121, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ec05524efc278e1c33e322bec5e8e766", + "type": "CBI_author", + "value": "Giannone", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 523.91 + }, + "width": 39.72458, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 170, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2002) ASB2011-14092", + "comments": [], + "startOffset": 168, + "endOffset": 176, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "32435881f294424e5e1a8b4261cfb90d", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 373.53 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 172, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 190, + "endOffset": 198, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6dcc9b687fc6c606a39a4d7ccf6b1098", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 200.10004 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 174, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 332, + "endOffset": 340, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fa99b75c2fc73aa321c6c33ca9f33447", + "type": "false_positive", + "value": "Luna", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 267.7521, + "y": 252.33002 + }, + "width": 21.368256, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 173, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 83, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f6d782c099ae2435ce071c550adbfb77", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 523.91 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 170, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 228, + "endOffset": 236, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b06e98a694398a11d099c6b68fc6afc", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 373.53 + }, + "width": 30.342194, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 172, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 161, + "endOffset": 168, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cc5bd462341ec7e11581109aa37c4bef", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 412.3918, + "y": 697.34 + }, + "width": 30.342194, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 168, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014) ASB2016-794", + "comments": [], + "startOffset": 238, + "endOffset": 245, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "82d1e645a93672bfdd8e7fc2b7cffe6d", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 286.76996 + }, + "width": 38.05127, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 173, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 188, + "endOffset": 196, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7986fd0bcd75038c9613fe0a71e84b35", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 407.92975, + "y": 576.14 + }, + "width": 22.6232, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 169, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "ASB2017-13201 ILV of ", + "textAfter": " & Richter", + "comments": [], + "startOffset": 228, + "endOffset": 233, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e105aae46713b4b7b764eff602c91393", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 697.34 + }, + "width": 22.6232, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 168, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 230, + "endOffset": 235, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "76a2aad5e8626bac4e84e558dd7e37de", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 2387, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f81f4c1123999b9ad651179b589dbc20", + "type": "false_positive", + "value": "Luna", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 267.99115, + "y": 662.78 + }, + "width": 21.477814, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 168, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 171, + "endOffset": 175, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5c1340d100dcbfb627524c3794dfced9", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 407.92975, + "y": 252.33002 + }, + "width": 30.232635, + "height": 10.526819, + "page": 28 + } + ], + "sectionNumber": 173, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "ASB2017-13208, ILV of ", + "textAfter": " (2016)", + "comments": [], + "startOffset": 173, + "endOffset": 180, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "774f2be4d846399c76cd62b39e679442", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 692.9 + }, + "width": 18.73877, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 177, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) ASB2015-338 ", + "textAfter": " (2008) ASB2015-339", + "comments": [], + "startOffset": 329, + "endOffset": 333, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b5363d45df3cb3267969330bf75e76e1", + "type": "CBI_author", + "value": "Richardson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 439.07 + }, + "width": 46.517273, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 179, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014) ASB2016-792", + "comments": [], + "startOffset": 258, + "endOffset": 268, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "753c5587beea2f4a8e52b20c7842e703", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 571.79 + }, + "width": 38.05127, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 178, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 327, + "endOffset": 335, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1ddff335cc2613385f26d7d4cd0953d6", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 424.0949, + "y": 525.71 + }, + "width": 18.73877, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 178, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008) and ", + "textAfter": " (2008)", + "comments": [], + "startOffset": 315, + "endOffset": 319, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4e4fbfbe72ec89162aa44ce812c39d6a", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 439.07 + }, + "width": 38.05127, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 179, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 288, + "endOffset": 296, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a067553a085913ed13ba669312d3fd02", + "type": "CBI_author", + "value": "Robinson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 571.79 + }, + "width": 39.316193, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 178, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014) ASB2016-793", + "comments": [], + "startOffset": 258, + "endOffset": 266, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a76cbc4d628ad577230168a50810dc5e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 2388, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "20ccebaf720aa848f8264cbed4f97687", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 306.33002 + }, + "width": 38.05127, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 180, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 334, + "endOffset": 342, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2986409554bf851d77ca981e0f7028af", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 715.94 + }, + "width": 38.05127, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 177, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 353, + "endOffset": 361, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bc1cdc46ab3810c8094d7aaed90326c2", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 306.33002 + }, + "width": 40.282288, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 180, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014) ASB2016-774", + "comments": [], + "startOffset": 306, + "endOffset": 314, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7d685e5b5a942b14ef7d0599379f3111", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 407.81024, + "y": 537.23 + }, + "width": 46.46747, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 178, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "ASB2016-793 ILV of ", + "textAfter": " (2008) and", + "comments": [], + "startOffset": 293, + "endOffset": 303, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3d3f9a2ed4dbe2044d471c8d00846a0a", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 715.94 + }, + "width": 46.34793, + "height": 10.526819, + "page": 29 + } + ], + "sectionNumber": 177, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2008) ASB2015-338", + "comments": [], + "startOffset": 299, + "endOffset": 309, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fa6b15b2cbbc6c99a43c5bbd8fec1005", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 99.41998 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 196, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 13, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ced0cc93174c20adabbe871d48b3c0e5", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 2389, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f2c14aa37aaf6739d37bc5ffbddd754d", + "type": "CBI_author", + "value": "Miller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 403.06, + "y": 297.69 + }, + "width": 25.900024, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 190, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-1320", + "comments": [], + "startOffset": 106, + "endOffset": 112, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ac4dc39d47cd5753477c166416982807", + "type": "false_positive", + "value": "Luna", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 267.7521, + "y": 571.79 + }, + "width": 21.368256, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 184, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 86, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "42656974c1b9732cdbf0a13e85654fa4", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 216.33002 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 192, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 5, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "72ec3dfd8c651110614e81f9e9d643bc", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 606.26 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 184, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 141, + "endOffset": 148, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "903c09ed293ba527eed717eb8996978d", + "type": "CBI_author", + "value": "Miller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 403.06, + "y": 356.13 + }, + "width": 25.900024, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 188, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-1320", + "comments": [], + "startOffset": 108, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2d90ba4d7be48f8129f9a5559ada6243", + "type": "CBI_author", + "value": "Allen", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 403.06, + "y": 99.41998 + }, + "width": 23.131165, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 196, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2017) ASB2017-1320", + "comments": [], + "startOffset": 71, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "548a45fe3367cd93fa01a872d235a307", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 191.2718, + "y": 326.85004 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 189, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 38, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0f0f85662f5c3e6cfd90d1a8ccf884ed", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 128.70001 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 195, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 33, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7f24f4b0cdee0fce5385710d5701be60", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 99.41998 + }, + "width": 30.338928, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 196, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 42, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "435d3ba5e1da8b86c7e1eccb9fe89117", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 191.2718, + "y": 385.29 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 187, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 36, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6012a0eb975de777d70ca3549f83a095", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 128.70001 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 195, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 4, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f89ba7339f69d06f5d672d33b2b99f7e", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 216.33002 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 192, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 34, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cf9bd2e1bee5392f683ff45e49e08c76", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 356.13 + }, + "width": 22.623154, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 188, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 36, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c55d8734c6401a2faabd04edbb5c8548", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 318.53305, + "y": 326.85004 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 189, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 74, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9e50eb53a3e1e13831dc7fe3df1012b5", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 385.29 + }, + "width": 22.623154, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 187, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 28, + "endOffset": 33, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2eca1dc437d65fd1fce7fad21da817d7", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 297.69 + }, + "width": 22.623154, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 190, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 34, + "endOffset": 39, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7d93014445967be615818f1b2975c4dd", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 318.5218, + "y": 356.13 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 188, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 80, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "50f29810527d7d2cf536347b1d3e2aad", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 385.29 + }, + "width": 22.6232, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 187, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 64, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a53b162ec0d7626255845c1ff908fb34", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 191.2718, + "y": 356.13 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 188, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 44, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2da81f2502fc0819038f1f3050924dab", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 326.85004 + }, + "width": 22.623154, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 189, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 30, + "endOffset": 35, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8c62326975ee043bfa07add02df1cb2e", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 318.5218, + "y": 385.29 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 187, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 72, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1fc820120dcde19907ddb7250daea903", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 191.2718, + "y": 297.69 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 190, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 42, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4526467d0bdf8d9e79dc5a0cdc9038dd", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 187.02002 + }, + "width": 30.338715, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 193, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 33, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1d001201aea636ca735005215fce6976", + "type": "false_positive", + "value": "Syngenta", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 478.18, + "y": 606.26 + }, + "width": 38.082214, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 184, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 170, + "endOffset": 178, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c7491cc50fe941c62ec6bf5ff345bb7f", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 157.85999 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 194, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 34, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e3d0140274867fec6a216f5e485af16a", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 297.69 + }, + "width": 22.6232, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 190, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 70, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8a7fd1c097a153144191fa817c615108", + "type": "CBI_author", + "value": "Allen", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 403.06, + "y": 157.85999 + }, + "width": 23.131165, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 194, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2017) ASB2017-1320", + "comments": [], + "startOffset": 63, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f813f7271d6ac788648dd6b0bb68e240", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 326.85004 + }, + "width": 22.63446, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 189, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 66, + "endOffset": 71, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "97b81a0e167b0413531cfbfed39138ed", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 187.02002 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 193, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 4, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4a6aab5c721c0d3761563b1e29fc1b29", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 157.85999 + }, + "width": 30.342148, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 194, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 5, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4ac5e07187685d39b66cb775940d869c", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 318.5218, + "y": 297.69 + }, + "width": 30.342194, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 190, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Class & ", + "textAfter": " (2014), ASB2016-794", + "comments": [], + "startOffset": 78, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e956a73bceadcac000a22275c3ef41c0", + "type": "CBI_author", + "value": "Class", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 356.13 + }, + "width": 22.6232, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 188, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Richter", + "comments": [], + "startOffset": 72, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0ddd728c6274e18f64afbbeeaa532515", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 594.74 + }, + "width": 40.282288, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "SYN547977, CGA-40172, CGA-41507: ", + "textAfter": " (2014), ASB2016-774", + "comments": [], + "startOffset": 302, + "endOffset": 310, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f7cfdf59f504987d79fe67de511b029c", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 652.22 + }, + "width": 46.34793, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", + "textAfter": " (2008), ASB2015-338", + "comments": [], + "startOffset": 213, + "endOffset": 223, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d50c19f4d56110735eb965ec00322010", + "type": "CBI_author", + "value": "Richardson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 403.06, + "y": 629.3 + }, + "width": 46.529327, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(2014), ASB2016- 793 ", + "textAfter": " (2014), ASB2016-792", + "comments": [], + "startOffset": 397, + "endOffset": 407, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "78faac4acdb8fc6d04e496661cd91fcd", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 652.22 + }, + "width": 46.34787, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", + "textAfter": " (2008), ASB2015-338", + "comments": [], + "startOffset": 58, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2380e464078d8609c933d0c33c8b84ff", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 715.94 + }, + "width": 46.34793, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 200, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "CGA-354743: ", + "textAfter": " (2008) ASB2015-336,", + "comments": [], + "startOffset": 68, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a04360f059dbbe2fa2ece024ca35348d", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 519.59 + }, + "width": 18.73877, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 202, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008), ASB2015-338 ", + "textAfter": " (2008), ASB2015-339", + "comments": [], + "startOffset": 236, + "endOffset": 240, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f3980ceade6ea3603ee7af5585e3bb79", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 594.74 + }, + "width": 40.28224, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "SYN547977, CGA-40172, CGA-41507: ", + "textAfter": " (2014), ASB2016-", + "comments": [], + "startOffset": 147, + "endOffset": 155, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a0e876708ed1dd79b8d8473ebf2bed2e", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 519.59 + }, + "width": 18.738754, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 202, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008), ASB2015-338 ", + "textAfter": " (2008), ASB2015-339", + "comments": [], + "startOffset": 81, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e4f13e1fd33cff9c4b2df356fef7773b", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 485.03 + }, + "width": 40.282288, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 202, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "SYN547977, CGA-40172, CGA-41507: ", + "textAfter": " (2014), ASB2016-774", + "comments": [], + "startOffset": 294, + "endOffset": 302, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8a50474df071726cd919942ecedb6c02", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 715.94 + }, + "width": 46.34787, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 200, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "CGA-354743: ", + "textAfter": " (2008) ASB2015-", + "comments": [], + "startOffset": 12, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3388c9d46b52de845d5d5002be63baa2", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 485.03 + }, + "width": 40.28224, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 202, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "SYN547977, CGA-40172, CGA-41507: ", + "textAfter": " (2014), ASB2016-", + "comments": [], + "startOffset": 139, + "endOffset": 147, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ac5c019866380880da2fd1e64c83108b", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 351.45 + }, + "width": 30.342148, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 205, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 13, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "68931e9aa97cf4a11f75d8d57a752cf9", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 380.61 + }, + "width": 30.342148, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 204, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 12, + "endOffset": 19, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3909b7139058c62cb7b158e5c37ae7eb", + "type": "CBI_author", + "value": "Robinson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 403.06, + "y": 652.22 + }, + "width": 39.316193, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", + "textAfter": " (2014), ASB2016-", + "comments": [], + "startOffset": 367, + "endOffset": 375, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3ab4c84ea1be8f014f4c5af951d77cd2", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 629.3 + }, + "width": 18.738754, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008), ASB2015-338 ", + "textAfter": " (2008), ASB2015-339", + "comments": [], + "startOffset": 89, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5d3eee802a7d266cc07623475f96309b", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 542.51 + }, + "width": 46.34787, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 202, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", + "textAfter": " (2008), ASB2015-338", + "comments": [], + "startOffset": 50, + "endOffset": 60, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0200ff14ba1a9edb5bb4e576515c891b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 2390, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a59b59ddb9c9ebb2308256a90c00049e", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.5.2.2 Residue analysis", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 318.91345, + "y": 248.25 + }, + "width": 44.475525, + "height": 11.017679, + "page": 31 + } + ], + "sectionNumber": 207, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the method by ", + "textAfter": " (2014) for", + "comments": [], + "startOffset": 1932, + "endOffset": 1940, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b4065ef0f5d8b2163eb3411ecfcc6263", + "type": "CBI_author", + "value": "Sole", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 629.3 + }, + "width": 18.73877, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Hargreaves (2008), ASB2015-338 ", + "textAfter": " (2008), ASB2015-339", + "comments": [], + "startOffset": 244, + "endOffset": 248, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1927eddfb9e83490e993161d1748c11f", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 351.45 + }, + "width": 30.342194, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 205, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 42, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "efe92bf9dba593f700c22176371c8e47", + "type": "CBI_author", + "value": "Richter", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 380.61 + }, + "width": 30.342194, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 204, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2016) ASB2017-13207", + "comments": [], + "startOffset": 41, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d99882b6eef0118e6e888ce9610dd472", + "type": "CBI_author", + "value": "Hargreaves", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 542.51 + }, + "width": 46.39447, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 202, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", + "textAfter": " (2008), ASB2015-338", + "comments": [], + "startOffset": 205, + "endOffset": 215, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9b327eae1cc5fe81752ee5cb13ba9766", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 258.64395, + "y": 401.15 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 392, + "endOffset": 395, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b945fbb28494566f60e6f7f12139912c", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 278.453, + "y": 421.79 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 256, + "endOffset": 259, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "69f5b7c1bacf1ace6c682855cc53c7ca", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 422.3359, + "y": 328.65 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 912, + "endOffset": 915, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "da25a30eb84b2f86db31cc57661b1fbb", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 310.91595, + "y": 359.73 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 680, + "endOffset": 683, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "67c048db5af31f3217c0325e82707c2c", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 195.464, + "y": 328.65 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 864, + "endOffset": 867, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "479d2c9618ae73862951011c31a8d5af", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 244.87401, + "y": 88.02399 + }, + "width": 12.36702, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 212, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 322, + "endOffset": 325, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f18dd47b24a6601a9291668a058e383e", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 173.87299, + "y": 380.37 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 509, + "endOffset": 512, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f8a2bc88c5ee4dd8d54597f9889a6b3f", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 363.341, + "y": 297.57 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1117, + "endOffset": 1120, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e4e40ec9cb1abf55c0589556b71f33d2", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 368.34103, + "y": 421.79 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 277, + "endOffset": 280, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "092f3b449d4782a0b21a3e19bfc91750", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 334.289, + "y": 318.33002 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 966, + "endOffset": 969, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ef069844f1ae029e52842ad69ae0c896", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 394.60098, + "y": 338.97 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 841, + "endOffset": 844, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2ab6160fc823b7f4e2701b6f32b40f1d", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 167.402, + "y": 390.81 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 438, + "endOffset": 441, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1bc42984884971a7383f333b19932c7e", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 353.824, + "y": 308.01 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1042, + "endOffset": 1045, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "86bae50096d2ac8333cef5ab16916c7b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 32 + } + ], + "sectionNumber": 2391, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e0534b0b3a2abbe9f1a25c45a1957e5c", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 375.08603, + "y": 390.81 + }, + "width": 12.502014, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 486, + "endOffset": 489, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a26f3549a6a2707a5f58a8a8b4d16766", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 390.647, + "y": 370.05 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 630, + "endOffset": 633, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6fa7c5108791f4a77caa286bf9f52305", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 209.84598, + "y": 349.41 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 726, + "endOffset": 729, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7601d8f8b74a5636c4a1463fbd309a28", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 370.85004, + "y": 380.37 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 555, + "endOffset": 558, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8c3871dc80e193801867e7454f726a10", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 186.113, + "y": 287.25 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1148, + "endOffset": 1151, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2d1905f4caa4533b8691c2773f980f88", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 167.402, + "y": 401.15 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 371, + "endOffset": 374, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b28172de31d4265a65cda080b44f941b", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 181.193, + "y": 338.97 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 791, + "endOffset": 794, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b647c6d6dd14f110730a0333a5ede22e", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 263.783, + "y": 411.47 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 323, + "endOffset": 326, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bea4699e07507eacba3298b9de902228", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 295.69696, + "y": 370.05 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 607, + "endOffset": 610, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7fa1811bd5d17087b7bea8565f6ae4b5", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 422.39902, + "y": 318.33002 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 990, + "endOffset": 993, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6b6702b2d401b6c7f4d9e8ea1be83077", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 292.69098, + "y": 349.41 + }, + "width": 12.367004, + "height": 10.0905, + "page": 32 + } + ], + "sectionNumber": 209, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 747, + "endOffset": 750, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9121ae9a23f0a4d86f81c79fd92ce26a", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 190.79985, + "y": 732.74 + }, + "width": 46.17569, + "height": 11.017679, + "page": 33 + } + ], + "sectionNumber": 217, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 10, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c2baca3ac9d9d1920601331ee8282cfc", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 33 + } + ], + "sectionNumber": 2392, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2bfc49ca9b5544569411c936cf99df04", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 371.1272, + "y": 758.56 + }, + "width": 17.504791, + "height": 11.017679, + "page": 33 + } + ], + "sectionNumber": 216, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 47, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2c40e55c80fed504f1537064510559d1", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 676.46 + }, + "width": 45.292175, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 221, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 41, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a866029dd1beffc56e0f8e5c685c20f6", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 2393, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a9dffda5fd230fd4a812d27c3b07d69c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 35 + } + ], + "sectionNumber": 2394, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4ccf2b666a5eea16c327c5b64e1e619b", + "type": "false_positive", + "value": "Buehler assay", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-6: Results of skin sensitisation tests in comparison with CLP criteria", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 228.77, + "y": 558.59 + }, + "width": 56.81584, + "height": 10.526819, + "page": 36 + } + ], + "sectionNumber": 240, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 606, + "endOffset": 619, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5891f6526b40724880fdf37df7816d9f", + "type": "CBI_author", + "value": "Anon", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Comparison with criteria for classification and labelling and conclusion", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 139.7984, + "y": 302.37 + }, + "width": 25.354248, + "height": 11.017679, + "page": 36 + } + ], + "sectionNumber": 241, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the subcategorization (", + "textAfter": "., 2014 ASB2016-685).", + "comments": [], + "startOffset": 1321, + "endOffset": 1325, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1f693dc0372d61b9d9186d96986e507b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 36 + } + ], + "sectionNumber": 2395, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b6dcdb0f311b2f1b34d0dc8792d33b32", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 2396, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "76b08ac3ca0d7d04fbfcdc7f256374a1", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 462.82, + "y": 485.15 + }, + "width": 47.572968, + "height": 10.44714, + "page": 38 + } + ], + "sectionNumber": 253, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 45, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b37b9bad33d45da98a72614542a2ba12", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 2397, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3f75408e8612393359eec50baa8002f7", + "type": "CBI_author", + "value": "Tisdell", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-9: Summary of the results of the submitted long-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 126.17999 + }, + "width": 28.828339, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 272, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 109, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "75fbb12e27c83571bf30b8488168df30", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-9: Summary of the results of the submitted long-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 471.82, + "y": 181.14001 + }, + "width": 47.5719, + "height": 10.44714, + "page": 39 + } + ], + "sectionNumber": 271, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 112, + "endOffset": 122, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4f809b6d2af0bef7ce2a9619eb46a14f", + "type": "CBI_author", + "value": "Hertner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 517.91 + }, + "width": 31.407898, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 268, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1995", + "comments": [], + "startOffset": 128, + "endOffset": 135, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ebe8430b24e278aae7b7a726e165c0ac", + "type": "CBI_author", + "value": "Tisdell", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-9: Summary of the results of the submitted long-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 85.50397 + }, + "width": 28.828339, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 273, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 100, + "endOffset": 107, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5232d93021f73ffc97c6fbdf127a7fa0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 2398, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "34b2aedb24846939dd8a77c338ca589e", + "type": "CBI_author", + "value": "Hertner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 692.3 + }, + "width": 31.407898, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 264, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 117, + "endOffset": 124, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "81ec8034ec026a48328807cfa008cc48", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 462.82, + "y": 753.4 + }, + "width": 47.572968, + "height": 10.44714, + "page": 39 + } + ], + "sectionNumber": 262, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 45, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3d2aa43b8dcf2a386ffde3f6edf5a050", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 2399, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "71c1c14ab8a446471352da5757147486", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 468.22, + "y": 434.27 + }, + "width": 47.57187, + "height": 10.44714, + "page": 40 + } + ], + "sectionNumber": 276, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 89, + "endOffset": 99, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "43bf00e91e4e7974e01b52a22d705ca7", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 41 + } + ], + "sectionNumber": 2400, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "842e1ba4082a69b48472fbb8c97a1eed", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 42 + } + ], + "sectionNumber": 2401, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9c0045ea4b1c452b0e5b8efe13158bab", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 43 + } + ], + "sectionNumber": 2402, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aaeb951370a9e559046c2432b9dca076", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 44 + } + ], + "sectionNumber": 2403, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "30a9c54f4b9c99a5f364a46b0c90549f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 45 + } + ], + "sectionNumber": 2404, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7638a71f54a5d5a4ecd0058ff5754f8b", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6.10 Summary of medical data and information", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 136.68718, + "y": 494.15 + }, + "width": 17.493774, + "height": 11.017679, + "page": 46 + } + ], + "sectionNumber": 321, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1047, + "endOffset": 1050, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "96b0b7450444448354268bd61e2af50b", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Conclusion by the RMS (2016):", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 350.34186, + "y": 280.76996 + }, + "width": 36.438416, + "height": 11.017679, + "page": 46 + } + ], + "sectionNumber": 323, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 194, + "endOffset": 201, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4d6aac75b6c6848f44a0cf8c510c0a5c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 46 + } + ], + "sectionNumber": 2405, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "25fe2a31c5f212e7ce46debf3bd18383", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Conclusion by the RMS (2016):", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 350.34186, + "y": 104.46002 + }, + "width": 36.438416, + "height": 11.017679, + "page": 47 + } + ], + "sectionNumber": 327, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 194, + "endOffset": 201, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bfdbbe5a1a92caafa18761b59f03f798", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 47 + } + ], + "sectionNumber": 2406, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a07b14dd094a59935f9cf7f63fde8708", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Conclusion by the RMS (2016):", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 350.34186, + "y": 520.31 + }, + "width": 36.438416, + "height": 11.017679, + "page": 47 + } + ], + "sectionNumber": 325, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 194, + "endOffset": 201, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4d9cba3a00b37ef9c900609ee6e3a7f2", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 48 + } + ], + "sectionNumber": 2407, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ac0ffa28299c4233d586797393b9c7ca", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7 Residues", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 310.13657, + "y": 102.900024 + }, + "width": 32.717896, + "height": 11.017679, + "page": 48 + } + ], + "sectionNumber": 329, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 212, + "endOffset": 218, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "31be7c0c1c83c4e356fa6387815834bf", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 244.36832, + "y": 240.09003 + }, + "width": 32.717896, + "height": 11.017679, + "page": 49 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 353, + "endOffset": 359, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5b4545250b55eeab5d8b09d3b6120f40", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 164.71777, + "y": 252.69 + }, + "width": 14.987686, + "height": 11.017679, + "page": 49 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 240, + "endOffset": 243, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f1db5b43b44c100aaa05e31027c75825", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 49 + } + ], + "sectionNumber": 2408, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8727b997017df763a45f1a7075c4a4b6", + "type": "false_positive", + "value": "List of", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 170.21, + "y": 758.92 + }, + "width": 31.293747, + "height": 10.929359, + "page": 50 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 685, + "endOffset": 692, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "629825d907085acdff6c0db9d86a1836", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 50 + } + ], + "sectionNumber": 2409, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bc72454dc012f3388a05789e0f07c9b9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 51 + } + ], + "sectionNumber": 2410, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7516b8f104ce5eaf9037fdb5ee0bb9e0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 52 + } + ], + "sectionNumber": 2411, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2224819429abeb77c8a1a7fc4941a106", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 53 + } + ], + "sectionNumber": 2412, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4efa200d414f22aab2c774837ac12dd0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 54 + } + ], + "sectionNumber": 2413, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "40d3c0cc2dcd4e25f913f4201727cdcf", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 371.73566 + }, + "width": 110.5348, + "height": 93.22937, + "page": 54 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e1caaec5496bb0c3c8c32221f9b6fb90", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 557.5062 + }, + "width": 110.75764, + "height": 75.90493, + "page": 54 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b38696e44f10de1b133d359c26e71b6", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 274.40796 + }, + "width": 113.04885, + "height": 91.30305, + "page": 54 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "528308e99d0256735dddc4845dccea80", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.85, + "y": 476.02 + }, + "width": 110.75, + "height": 75.6, + "page": 54 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "14725840d580b2d1f55f240ea2ee137a", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 182.47939 + }, + "width": 112.93428, + "height": 85.882164, + "page": 54 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "dc0c5e571bf5239111ebef4dbdba24e5", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 111.12166 + }, + "width": 189.78651, + "height": 65.33364, + "page": 54 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "75db5a442ad57a9862e1af481ef4a048", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 55 + } + ], + "sectionNumber": 2414, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8b82cefa1b25e3df905a480325d96830", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.1 Metabolism in plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 298.05 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 55 + } + ], + "sectionNumber": 379, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 749, + "endOffset": 752, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ee45747ade1ba3f2e2ff4b7e34adc3ee", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.1 Metabolism in plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 285.31, + "y": 222.21002 + }, + "width": 14.982391, + "height": 11.017679, + "page": 55 + } + ], + "sectionNumber": 379, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1224, + "endOffset": 1227, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a299b28c087f09cee6808c5d3b33c91d", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.1 Metabolism in plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 238.23312, + "y": 323.37 + }, + "width": 14.987686, + "height": 11.017679, + "page": 55 + } + ], + "sectionNumber": 379, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 634, + "endOffset": 637, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bddbdec204726742bf8093ef377f185e", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.1 Metabolism in plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 151.76782, + "y": 285.45 + }, + "width": 32.717926, + "height": 11.017679, + "page": 55 + } + ], + "sectionNumber": 379, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 862, + "endOffset": 868, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f3b9c67a1ed941a3c1ac8e468a2cffcd", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 544.0382 + }, + "width": 180.72943, + "height": 77.969536, + "page": 55 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4739424b7a51474914e3a519f6faa607", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 627.9419 + }, + "width": 181.5275, + "height": 92.96038, + "page": 55 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "22076b912290edf504ceab4c3e07a4ea", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 258.91, + "y": 464.24075 + }, + "width": 113.01097, + "height": 73.76492, + "page": 55 + } + ], + "sectionNumber": 378, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "07644e65d8e7472cd50545d97c6abfc1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 56 + } + ], + "sectionNumber": 2415, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d556df87c0ccecb6a5a49398a7d4e5ae", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 57 + } + ], + "sectionNumber": 2416, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2379058df283aea1ea9c23484ebaef79", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 58 + } + ], + "sectionNumber": 2417, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a496d6a6dffde3e12d7bc4f56abd559f", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.2 Metabolism in poultry", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 243.81633, + "y": 683.3 + }, + "width": 32.71791, + "height": 11.017679, + "page": 59 + } + ], + "sectionNumber": 383, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 350, + "endOffset": 356, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "617b502621919f103c104d6df87e1f5b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 59 + } + ], + "sectionNumber": 2418, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1c83c3d22b9b9270cca5efba6b6f16f1", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.3 Metabolism in lactating ruminants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 243.81633, + "y": 304.52997 + }, + "width": 32.71791, + "height": 11.017679, + "page": 59 + } + ], + "sectionNumber": 384, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 368, + "endOffset": 374, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9839b0940f9cafe06377b8be73c9312a", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.2 Metabolism in poultry", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 484.6713, + "y": 480.83 + }, + "width": 14.987671, + "height": 11.017679, + "page": 59 + } + ], + "sectionNumber": 383, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1748, + "endOffset": 1751, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2558ef028cd81b32b2e7fa9acd39adef", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.2 Metabolism in poultry", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 173.71535, + "y": 607.46 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 59 + } + ], + "sectionNumber": 383, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 804, + "endOffset": 807, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f0efdba1df805c215c805e4b4d1fbca9", + "type": "false_positive", + "value": "January", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.5 Metabolism in fish", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 387.54288, + "y": 507.59 + }, + "width": 35.30124, + "height": 11.017679, + "page": 60 + } + ], + "sectionNumber": 388, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 195, + "endOffset": 202, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c98d18f14e102c76e9f6349855541fce", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.2.3 Metabolism in lactating ruminants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 759.04 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 60 + } + ], + "sectionNumber": 384, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1834, + "endOffset": 1837, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "50529a413094d3816f7c54a13ade6631", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 60 + } + ], + "sectionNumber": 2419, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "10f1c79f39300f764052f85d8e12a0c4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 61 + } + ], + "sectionNumber": 2420, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "52afd4edd45f6a26d845ac829738aabb", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 62 + } + ], + "sectionNumber": 2421, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "35590f5a8ab5a24c3c97d26d41f39276", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.3 Definition of the residue", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 518.27 + }, + "width": 23.676155, + "height": 11.017679, + "page": 63 + } + ], + "sectionNumber": 397, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1143, + "endOffset": 1148, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7c3396859ae627e67d4d65d4d8af185c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 63 + } + ], + "sectionNumber": 2422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "193d639fed9c2ab7232c7bdcc0f4801f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 64 + } + ], + "sectionNumber": 2423, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "492de2fd178bf399ca92767bedb6047f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 65 + } + ], + "sectionNumber": 2424, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4a5dc2003729403f7e3c8de91c85f4a0", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.3.2 Definition of the residue in animals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 412.3, + "y": 127.26001 + }, + "width": 14.987701, + "height": 11.017679, + "page": 65 + } + ], + "sectionNumber": 398, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 221, + "endOffset": 224, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7aeb03becafecea93f1f156cd13cf9ae", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 66 + } + ], + "sectionNumber": 2425, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "75f13390cd7607da20a985c42c2a9cd9", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.4 Summary of residue trials in plants and identification of critical GAP", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 201.88498, + "y": 66.90399 + }, + "width": 32.828323, + "height": 11.017679, + "page": 67 + } + ], + "sectionNumber": 411, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2196, + "endOffset": 2202, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "09a2ef81c3f57274fc7dece7877e7c37", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.4 Summary of residue trials in plants and identification of critical GAP", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 313.16998 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 67 + } + ], + "sectionNumber": 411, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1504, + "endOffset": 1507, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c0ce5338fdedaee828f9ac07c3bb2617", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-3: Summary of new residue data from EU sunflower trials", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 472.42, + "y": 254.01001 + }, + "width": 19.67688, + "height": 9.58986, + "page": 67 + } + ], + "sectionNumber": 404, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "** (mg/kg", + "comments": [], + "startOffset": 71, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4fa34f209c3869fda26bc22367eb0c10", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 67 + } + ], + "sectionNumber": 2426, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c559372cb688b3ce0eb8ded4632d7682", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-5: Summary of new residue data from EU maize trials", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 470.5, + "y": 236.85004 + }, + "width": 19.67688, + "height": 9.58986, + "page": 68 + } + ], + "sectionNumber": 422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "** (mg/kg", + "comments": [], + "startOffset": 71, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e044a0805d8b829d67424b22d5884486", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 68 + } + ], + "sectionNumber": 2427, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7548aac113c0b4b2f4c084b209dfdf70", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 69 + } + ], + "sectionNumber": 2428, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "734820fa83391e1db0a46bf26627c5c2", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-5: Summary of new residue data from EU maize trials", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 470.5, + "y": 753.88 + }, + "width": 19.67688, + "height": 9.58986, + "page": 69 + } + ], + "sectionNumber": 440, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "** (mg/kg", + "comments": [], + "startOffset": 71, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3848294295c7831d02e323cd383eb150", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.4.2 Maize", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 163.61711, + "y": 471.35 + }, + "width": 32.828323, + "height": 11.017679, + "page": 69 + } + ], + "sectionNumber": 452, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2061, + "endOffset": 2067, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "70b46f05c43cbeda95b21ca0bfdc836e", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.5 Summary of feeding studies in poultry, ruminants, pigs and fish", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 361.76462, + "y": 588.38 + }, + "width": 32.717896, + "height": 11.017679, + "page": 70 + } + ], + "sectionNumber": 485, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1310, + "endOffset": 1316, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "423db19641042898eff105d6017ca86e", + "type": "false_positive", + "value": "Turkey", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-7: Results of the dietary burden calculation", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 85.104, + "y": 233.37 + }, + "width": 29.953728, + "height": 10.526819, + "page": 70 + } + ], + "sectionNumber": 483, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "53448ae09b81756692796b0944ab76d4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 70 + } + ], + "sectionNumber": 2429, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2c3a3b368756272e5a681da189e499b6", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.5.2 Ruminant", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 74.65344, + "y": 695.78 + }, + "width": 17.49376, + "height": 11.017679, + "page": 71 + } + ], + "sectionNumber": 487, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 769, + "endOffset": 772, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0146894bf39484882987a7ffaad46664", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.5.4 Fish", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 141.74, + "y": 582.98 + }, + "width": 22.875992, + "height": 11.358, + "page": 71 + } + ], + "sectionNumber": 489, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5e45eb2acdb6b5b40d19e8393088bd20", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 71 + } + ], + "sectionNumber": 2430, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "09e83f1eb38245cfc689b1cdedab13e9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 72 + } + ], + "sectionNumber": 2431, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1df5cb6b31de0f027442a91dba1284f2", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 435.22128, + "y": 60.783997 + }, + "width": 19.46991, + "height": 11.017679, + "page": 72 + } + ], + "sectionNumber": 514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 864, + "endOffset": 868, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b1cccde75881f7754d68dfe3182b9d46", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-8: Toxicological reference values for the dietary risk assessment of\nS-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 141.5, + "y": 199.38 + }, + "width": 26.54741, + "height": 10.526819, + "page": 72 + } + ], + "sectionNumber": 495, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 16, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "92babd4b3976c8fb24d3675253f7700d", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-9: Residue input values for the consumer risk assessment", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 253.85, + "y": 569.15 + }, + "width": 22.672943, + "height": 10.526819, + "page": 73 + } + ], + "sectionNumber": 504, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " according to", + "comments": [], + "startOffset": 27, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c30e8c2e63eb4997824b43f81b13f5c5", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 73 + } + ], + "sectionNumber": 2432, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c66fdeb28e39da9cedd25bd453872c3e", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 471.72223, + "y": 407.4301 + }, + "width": 13.087524, + "height": 8.687853, + "page": 74 + } + ], + "sectionNumber": 514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the highest national ", + "textAfter": " was identified", + "comments": [], + "startOffset": 2096, + "endOffset": 2099, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1672f40eaa6e97dfa2d8c864bbdf7bd2", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 176.44547, + "y": 400.31815 + }, + "width": 29.028625, + "height": 8.687853, + "page": 74 + } + ], + "sectionNumber": 514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2191, + "endOffset": 2200, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ea835b96f684f2a303edf878a29cebd8", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 577.7728, + "y": 407.4301 + }, + "width": 13.087524, + "height": 8.687853, + "page": 74 + } + ], + "sectionNumber": 514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "identified (proposed temporary ", + "textAfter": " = pTMRL).", + "comments": [], + "startOffset": 2135, + "endOffset": 2138, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a9af70d4e97de6d244660f4f6640c40b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 74 + } + ], + "sectionNumber": 2433, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0d08b7c1923736a74805e2208e01226b", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:ocr", + "color": [ + 0.7411765, + 0.8392157, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 536.7944, + "y": 436.8539 + }, + "width": 170.53722, + "height": 16.778795, + "page": 74 + } + ], + "sectionNumber": 514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d09ecae7f6967e5f23347d9c1cfeceb3", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:ocr", + "color": [ + 0.7411765, + 0.8392157, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 537.2772, + "y": 462.3328 + }, + "width": 170.05429, + "height": 49.438755, + "page": 74 + } + ], + "sectionNumber": 514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "186b0370b7b6ebef62e59283e04dd044", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Prepare workbook for refined\ncalculations", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 112.64698, + "y": 455.74457 + }, + "width": 14.364342, + "height": 8.86552, + "page": 75 + } + ], + "sectionNumber": 522, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "IESTI calculation. Threshold ", + "textAfter": " is the", + "comments": [], + "startOffset": 825, + "endOffset": 828, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8f9141f5a3c3779e8cd4d502efbadc07", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: Prepare workbook for refined\ncalculations", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 388.41788, + "y": 404.19733 + }, + "width": 13.8637085, + "height": 8.86552, + "page": 75 + } + ], + "sectionNumber": 517, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Commodities pTMRL/ threshold ", + "textAfter": " (mg/kg)", + "comments": [], + "startOffset": 114, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d8dc5fef76f91efe9f6b402340f3ff6c", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: Prepare workbook for refined\ncalculations", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 552.97705, + "y": 404.19733 + }, + "width": 13.8637085, + "height": 8.86552, + "page": 75 + } + ], + "sectionNumber": 517, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Commodities pTMRL/ threshold ", + "textAfter": " (mg/kg)", + "comments": [], + "startOffset": 177, + "endOffset": 180, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d1c7477eeaec147102192d36ac466e27", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: Prepare workbook for refined\ncalculations", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 753.5852, + "y": 404.19733 + }, + "width": 13.8637085, + "height": 8.86552, + "page": 75 + } + ], + "sectionNumber": 517, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Commodities pTMRL/ threshold ", + "textAfter": " (mg/kg", + "comments": [], + "startOffset": 240, + "endOffset": 243, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "38b5a287fa713af836278608fa5c280d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 75 + } + ], + "sectionNumber": 2434, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "01a3cf5f5564721a5fa68abf4f277e2e", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: Prepare workbook for refined\ncalculations", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 231.94382, + "y": 404.19733 + }, + "width": 13.863739, + "height": 8.86552, + "page": 75 + } + ], + "sectionNumber": 517, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Commodities pTMRL/ threshold ", + "textAfter": " (mg/kg)", + "comments": [], + "startOffset": 51, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "dfe766aff07f098d554b140fe7263e6a", + "type": "false_positive", + "value": "December", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 507.96268, + "y": 696.62 + }, + "width": 17.633636, + "height": 11.017679, + "page": 76 + }, + { + "topLeft": { + "x": 70.944, + "y": 683.9 + }, + "width": 33.325127, + "height": 11.017679, + "page": 76 + } + ], + "sectionNumber": 528, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 237, + "endOffset": 245, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "79426893df2c5511570bd47769e46fd2", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-10: EU MRLs and MRLs proposed by the RMS", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 287.4043, + "y": 561.11 + }, + "width": 24.425934, + "height": 10.44714, + "page": 76 + } + ], + "sectionNumber": 523, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Existing EU ", + "textAfter": " (mg/kg)", + "comments": [], + "startOffset": 34, + "endOffset": 37, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a01a3ad8e5588b0f485a828cfecc0048", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 76 + } + ], + "sectionNumber": 2435, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "db700470724e21e9a4aa68a77b3cefba", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 393.6465, + "y": 645.98 + }, + "width": 24.923676, + "height": 11.017679, + "page": 76 + } + ], + "sectionNumber": 528, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "on in the ", + "textAfter": " review (0.05", + "comments": [], + "startOffset": 555, + "endOffset": 558, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "05c56b79c8614db3462ba63cfcc4e7bf", + "type": "CBI_address", + "value": "MRL", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.7-10: EU MRLs and MRLs proposed by the RMS", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 327.67, + "y": 549.59 + }, + "width": 24.425934, + "height": 10.44714, + "page": 76 + } + ], + "sectionNumber": 523, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Proposed EU ", + "textAfter": " (mg/kg)", + "comments": [], + "startOffset": 58, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4e623c2c2c43f721b7bdd67d700df6e6", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 281.30017, + "y": 683.9 + }, + "width": 19.458862, + "height": 11.017679, + "page": 76 + } + ], + "sectionNumber": 528, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 286, + "endOffset": 290, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "11b6051a91d6c1948fa9311c9a2e8aa2", + "type": "false_positive", + "value": "February", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8 Fate and behaviour in the environment", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 146.25105, + "y": 243.06 + }, + "width": 40.832336, + "height": 11.017679, + "page": 76 + } + ], + "sectionNumber": 588, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 260, + "endOffset": 268, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4d7a8674e9858857e5b999caf60404e3", + "type": "false_positive", + "value": "Major metabolites", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8 Fate and behaviour in the environment", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 170.21, + "y": 758.92 + }, + "width": 87.46529, + "height": 10.929359, + "page": 77 + } + ], + "sectionNumber": 588, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 433, + "endOffset": 450, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "14a0992e4f164dfd57cd9c51af524842", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 418.75507, + "y": 246.09003 + }, + "width": 30.34436, + "height": 11.017679, + "page": 77 + }, + { + "topLeft": { + "x": 402.46, + "y": 233.37 + }, + "width": 53.0094, + "height": 11.017679, + "page": 77 + }, + { + "topLeft": { + "x": 402.46, + "y": 220.77002 + }, + "width": 12.691376, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 476, + "endOffset": 495, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4767325d61dacd1bd51db6ea818f0fcc", + "type": "false_positive", + "value": "Sodium Salt", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 612.86 + }, + "width": 55.18431, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 26, + "endOffset": 37, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e5fb433c217e1e7326a5cb53bb5b481c", + "type": "CBI_author", + "value": "Hein W.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 157.02002 + }, + "width": 38.282104, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 532, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "21.1% (d153) (", + "textAfter": ", 2007) water:", + "comments": [], + "startOffset": 126, + "endOffset": 133, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b9f36108ceba66d6ce945fed035f5400", + "type": "false_positive", + "value": "Sodium Salt", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 536.99 + }, + "width": 55.18431, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 100, + "endOffset": 111, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9f4ff77115801f4d5636b71389b30b94", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 429.07742, + "y": 93.664 + }, + "width": 19.42575, + "height": 11.017679, + "page": 77 + }, + { + "topLeft": { + "x": 402.46, + "y": 81.064026 + }, + "width": 29.030518, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 532, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(d 362) (", + "textAfter": ", 1997)", + "comments": [], + "startOffset": 168, + "endOffset": 175, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "64f48105caea0a90d7966f7324ecbab9", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.4813, + "y": 359.85 + }, + "width": 19.42575, + "height": 11.017679, + "page": 77 + }, + { + "topLeft": { + "x": 402.46, + "y": 347.25 + }, + "width": 29.030518, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "study end) (", + "textAfter": " 1997) lysimeter:", + "comments": [], + "startOffset": 407, + "endOffset": 414, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c348429751dd9592f985041566c1e849", + "type": "CBI_author", + "value": "Keller A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 432.68753, + "y": 612.86 + }, + "width": 20.618103, + "height": 11.017679, + "page": 77 + }, + { + "topLeft": { + "x": 402.46, + "y": 600.26 + }, + "width": 23.477478, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 256, + "endOffset": 264, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a59f42680d04506c15bb8129561c658b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 77 + } + ], + "sectionNumber": 2436, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "14cd0ccf4ecfc6631fda72f7f01c6daa", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.4813, + "y": 486.35 + }, + "width": 19.42575, + "height": 11.017679, + "page": 77 + }, + { + "topLeft": { + "x": 402.46, + "y": 473.75 + }, + "width": 29.030518, + "height": 11.017679, + "page": 77 + } + ], + "sectionNumber": 531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "study end) (", + "textAfter": ", 1997) s/w", + "comments": [], + "startOffset": 330, + "endOffset": 337, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f8a7893b8af93a6f997972cbd19e7af1", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 418.75507, + "y": 542.99 + }, + "width": 30.34436, + "height": 11.017679, + "page": 78 + }, + { + "topLeft": { + "x": 402.46, + "y": 530.27 + }, + "width": 53.0094, + "height": 11.017679, + "page": 78 + }, + { + "topLeft": { + "x": 402.46, + "y": 517.67 + }, + "width": 12.691376, + "height": 11.017679, + "page": 78 + } + ], + "sectionNumber": 535, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012", + "comments": [], + "startOffset": 174, + "endOffset": 193, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "da1bbad0a2f11139295726952989f11a", + "type": "CBI_author", + "value": "Morgenroth U", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 453.95 + }, + "width": 39.441284, + "height": 11.017679, + "page": 78 + }, + { + "topLeft": { + "x": 402.46, + "y": 441.23 + }, + "width": 29.593597, + "height": 11.017679, + "page": 78 + } + ], + "sectionNumber": 536, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "7.6% (d120) (", + "textAfter": ", 1997) lysimeter:", + "comments": [], + "startOffset": 119, + "endOffset": 131, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "503d7caff3b552dd1568e0ceb99fa81e", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 644.18 + }, + "width": 43.77997, + "height": 11.017679, + "page": 78 + } + ], + "sectionNumber": 535, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(d 362) (", + "textAfter": ", 1997) lysimeter:", + "comments": [], + "startOffset": 103, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2de1d1734a06e17644bb05ad1d8d04c5", + "type": "CBI_author", + "value": "Clark A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 263.73004 + }, + "width": 36.089478, + "height": 11.017679, + "page": 78 + } + ], + "sectionNumber": 537, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "6.5% (d14) (", + "textAfter": ", 1995)", + "comments": [], + "startOffset": 132, + "endOffset": 139, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "dd49db0f56a86bb32ff6e6fe7225abf0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 78 + } + ], + "sectionNumber": 2437, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7ccce817afae36a58747fe32a1b692b9", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 418.76944, + "y": 340.05 + }, + "width": 30.333313, + "height": 11.017679, + "page": 78 + }, + { + "topLeft": { + "x": 402.46, + "y": 327.45 + }, + "width": 53.0094, + "height": 11.017679, + "page": 78 + }, + { + "topLeft": { + "x": 402.46, + "y": 314.73004 + }, + "width": 12.691376, + "height": 11.017679, + "page": 78 + } + ], + "sectionNumber": 536, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 193, + "endOffset": 212, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7c03d1e8bce03b9f17a1bc5c4abecfec", + "type": "CBI_author", + "value": "Clark A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 644.18 + }, + "width": 36.074097, + "height": 11.017679, + "page": 79 + } + ], + "sectionNumber": 540, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "120 d) (", + "textAfter": ", 1995) lysimeter:", + "comments": [], + "startOffset": 108, + "endOffset": 115, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9bcbe98ba6e3c968789c2b28d91e628c", + "type": "CBI_author", + "value": "Fent", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 137.22003 + }, + "width": 20.62912, + "height": 11.017679, + "page": 79 + } + ], + "sectionNumber": 542, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 1999)", + "comments": [], + "startOffset": 187, + "endOffset": 191, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "143389213840861c765d2ff144e5e4b9", + "type": "CBI_author", + "value": "Fent", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.18, + "y": 530.27 + }, + "width": 20.62912, + "height": 11.017679, + "page": 79 + } + ], + "sectionNumber": 540, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 1999)", + "comments": [], + "startOffset": 178, + "endOffset": 182, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "921c2b0a7cf4f1ab451a9a62ff29f2f3", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 79 + } + ], + "sectionNumber": 2438, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2c1dd0802d9da2a47e9be794f3b2a8a5", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 418.76944, + "y": 352.77 + }, + "width": 30.333313, + "height": 11.017679, + "page": 79 + }, + { + "topLeft": { + "x": 402.46, + "y": 340.05 + }, + "width": 53.0094, + "height": 11.017679, + "page": 79 + }, + { + "topLeft": { + "x": 402.46, + "y": 327.45 + }, + "width": 12.691376, + "height": 11.017679, + "page": 79 + } + ], + "sectionNumber": 541, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 248, + "endOffset": 267, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca877e9a57d740b8d142c125e459864e", + "type": "CBI_author", + "value": "Hein W.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 453.95 + }, + "width": 38.282104, + "height": 11.017679, + "page": 79 + } + ], + "sectionNumber": 541, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "9.1% (d153) (", + "textAfter": ", 2007) lysimeter:", + "comments": [], + "startOffset": 178, + "endOffset": 185, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cff586a170ae312427641926a8ed6fed", + "type": "CBI_author", + "value": "Kitschmann P", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 263.73004 + }, + "width": 33.45758, + "height": 11.017679, + "page": 79 + }, + { + "topLeft": { + "x": 402.46, + "y": 251.01001 + }, + "width": 34.241425, + "height": 11.017679, + "page": 79 + } + ], + "sectionNumber": 542, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "181 d) (", + "textAfter": ", 1997a) lysimeter:", + "comments": [], + "startOffset": 110, + "endOffset": 122, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5dab16572591eb168eecc7b2ea183fd4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 80 + } + ], + "sectionNumber": 2439, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "deb3e18ac6a374c0ae7ab4d61d0d5c34", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 517.67 + }, + "width": 30.333313, + "height": 11.017679, + "page": 80 + }, + { + "topLeft": { + "x": 402.46, + "y": 505.07 + }, + "width": 53.0094, + "height": 11.017679, + "page": 80 + }, + { + "topLeft": { + "x": 402.46, + "y": 492.35 + }, + "width": 12.691376, + "height": 11.017679, + "page": 80 + } + ], + "sectionNumber": 545, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 200, + "endOffset": 219, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "559bd94632792dbc995eb09cebe0bea1", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 428.63 + }, + "width": 28.522736, + "height": 11.017679, + "page": 80 + } + ], + "sectionNumber": 546, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "44.2% (d120) (", + "textAfter": " ,1997) sediment:", + "comments": [], + "startOffset": 182, + "endOffset": 188, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cede1c2d2f6bd1a9b23e8f7a97170b18", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 644.18 + }, + "width": 33.45758, + "height": 11.017679, + "page": 80 + }, + { + "topLeft": { + "x": 402.46, + "y": 631.58 + }, + "width": 25.34317, + "height": 11.017679, + "page": 80 + } + ], + "sectionNumber": 545, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "28 d) (", + "textAfter": ", 1997) lysimeter:", + "comments": [], + "startOffset": 127, + "endOffset": 137, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e680ebcae14656e56a034bc98e9ec314", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 276.81 + }, + "width": 43.77997, + "height": 11.017679, + "page": 80 + } + ], + "sectionNumber": 546, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "8.2% (d175) (", + "textAfter": ", 1997) s/w", + "comments": [], + "startOffset": 264, + "endOffset": 271, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b1ac4fdd4e68656cf895dc5b90e8800e", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 352.77 + }, + "width": 43.77997, + "height": 11.017679, + "page": 80 + } + ], + "sectionNumber": 546, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "9.6% (d175) (", + "textAfter": ", 1997) water:", + "comments": [], + "startOffset": 224, + "endOffset": 231, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "73d41f796a79f127edd68ec34906b569", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 408.92944, + "y": 150.29999 + }, + "width": 43.77997, + "height": 11.017679, + "page": 80 + } + ], + "sectionNumber": 546, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "54.7% (d271) (", + "textAfter": ", 1997)", + "comments": [], + "startOffset": 342, + "endOffset": 349, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "11ce63236c2ce84693ceb29a987385b9", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 253.28998 + }, + "width": 30.333313, + "height": 11.017679, + "page": 81 + }, + { + "topLeft": { + "x": 402.46, + "y": 240.57 + }, + "width": 53.0094, + "height": 11.017679, + "page": 81 + }, + { + "topLeft": { + "x": 402.46, + "y": 227.97003 + }, + "width": 12.691376, + "height": 11.017679, + "page": 81 + } + ], + "sectionNumber": 552, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 166, + "endOffset": 185, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c44f6bdffb4aa82db20f3b09c56b755f", + "type": "CBI_author", + "value": "Bond&Ha nd", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 430.07 + }, + "width": 46.219788, + "height": 11.017679, + "page": 81 + }, + { + "topLeft": { + "x": 402.46, + "y": 417.35 + }, + "width": 12.039978, + "height": 11.017679, + "page": 81 + } + ], + "sectionNumber": 551, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2014)", + "comments": [], + "startOffset": 159, + "endOffset": 169, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3b208cbe6d1cbfb736d29a72fa500308", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 81 + } + ], + "sectionNumber": 2440, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c70f4d81f0d94821dae8a8e0839d1fed", + "type": "CBI_author", + "value": "Bond&Ha nd", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 618.86 + }, + "width": 46.219788, + "height": 11.017679, + "page": 81 + }, + { + "topLeft": { + "x": 402.46, + "y": 606.26 + }, + "width": 12.039978, + "height": 11.017679, + "page": 81 + } + ], + "sectionNumber": 550, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2014)", + "comments": [], + "startOffset": 151, + "endOffset": 161, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "739f412ec91beed049731b111c2a2b88", + "type": "CBI_author", + "value": "Bond&Ha nd", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 618.86 + }, + "width": 46.219788, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 402.46, + "y": 606.26 + }, + "width": 12.039978, + "height": 11.017679, + "page": 82 + } + ], + "sectionNumber": 555, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2014)", + "comments": [], + "startOffset": 212, + "endOffset": 222, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6f4869ce6d8264352da55acb3fb9aba2", + "type": "false_positive", + "value": "Ammonium Salt", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 74.65344, + "y": 656.9 + }, + "width": 54.212784, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 70.944, + "y": 644.18 + }, + "width": 18.222397, + "height": 11.017679, + "page": 82 + } + ], + "sectionNumber": 555, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 33, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a84d5ee91e412916d2ca0b2c6e9b03d1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 82 + } + ], + "sectionNumber": 2441, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "654925f59a464bda8942992208402327", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 432.95 + }, + "width": 30.333313, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 402.46, + "y": 420.35 + }, + "width": 53.0094, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 402.46, + "y": 407.63 + }, + "width": 12.691376, + "height": 11.017679, + "page": 82 + } + ], + "sectionNumber": 556, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 172, + "endOffset": 191, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "87de219fa1445793fb1173a82e345b9f", + "type": "false_positive", + "value": "Ammonium Salt", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 74.65344, + "y": 279.21002 + }, + "width": 54.212784, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 70.944, + "y": 266.49 + }, + "width": 18.222397, + "height": 11.017679, + "page": 82 + } + ], + "sectionNumber": 557, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 33, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "938b3941639e1ab683eaf21cdd694616", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 241.16998 + }, + "width": 30.333313, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 402.46, + "y": 228.57 + }, + "width": 53.0094, + "height": 11.017679, + "page": 82 + }, + { + "topLeft": { + "x": 402.46, + "y": 215.94 + }, + "width": 12.691376, + "height": 11.017679, + "page": 82 + } + ], + "sectionNumber": 557, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 189, + "endOffset": 208, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c42f90a28580ba89fe0434316ace01ea", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 83 + } + ], + "sectionNumber": 2442, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "00e81b46bf872907cee9e86f35caffff", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 618.86 + }, + "width": 30.333313, + "height": 11.017679, + "page": 83 + }, + { + "topLeft": { + "x": 402.46, + "y": 606.26 + }, + "width": 53.0094, + "height": 11.017679, + "page": 83 + }, + { + "topLeft": { + "x": 402.46, + "y": 593.66 + }, + "width": 12.691376, + "height": 11.017679, + "page": 83 + } + ], + "sectionNumber": 560, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 160, + "endOffset": 179, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "24ed99a55bf28d4e099d42d6642b0507", + "type": "CBI_author", + "value": "Fent", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 442.67 + }, + "width": 20.62912, + "height": 11.017679, + "page": 83 + } + ], + "sectionNumber": 561, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "a.i. equivalente/L (", + "textAfter": " 1999)", + "comments": [], + "startOffset": 119, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c07c18f6b20d1d94852dcc2feb1704fe", + "type": "CBI_author", + "value": "Zbaerben&Nicoll ier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 250.16998 + }, + "width": 30.333313, + "height": 11.017679, + "page": 83 + }, + { + "topLeft": { + "x": 402.46, + "y": 237.57 + }, + "width": 53.0094, + "height": 11.017679, + "page": 83 + }, + { + "topLeft": { + "x": 402.46, + "y": 224.85004 + }, + "width": 12.691376, + "height": 11.017679, + "page": 83 + } + ], + "sectionNumber": 562, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2012)", + "comments": [], + "startOffset": 196, + "endOffset": 215, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d2f040b34001e9d4fca9c0c07c47621f", + "type": "false_positive", + "value": "Sodium Salt", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 300.81 + }, + "width": 55.18431, + "height": 11.017679, + "page": 83 + } + ], + "sectionNumber": 562, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 20, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5cb335ad96628b8a389886752b5ce838", + "type": "CBI_author", + "value": "Bond&Ha nd", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 618.86 + }, + "width": 46.219788, + "height": 11.017679, + "page": 84 + }, + { + "topLeft": { + "x": 402.46, + "y": 606.26 + }, + "width": 12.039978, + "height": 11.017679, + "page": 84 + } + ], + "sectionNumber": 565, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "equivalent /L (", + "textAfter": ", 2014)", + "comments": [], + "startOffset": 224, + "endOffset": 234, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "37f9d87cbf5dfe17a4bff25706d6bfdd", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 315.21002 + }, + "width": 43.77997, + "height": 11.017679, + "page": 84 + } + ], + "sectionNumber": 566, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the study (", + "textAfter": ", 1997) s/w", + "comments": [], + "startOffset": 247, + "endOffset": 254, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f49d6396f5977ed90c6dcb59d9e495ac", + "type": "false_positive", + "value": "Ammonium Salt", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 74.65344, + "y": 656.9 + }, + "width": 54.212784, + "height": 11.017679, + "page": 84 + }, + { + "topLeft": { + "x": 70.944, + "y": 644.18 + }, + "width": 18.222397, + "height": 11.017679, + "page": 84 + } + ], + "sectionNumber": 565, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 33, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ea55b3e4a672a41ea7c5556bb4a96da2", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 201.29999 + }, + "width": 43.77997, + "height": 11.017679, + "page": 84 + } + ], + "sectionNumber": 566, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the study (", + "textAfter": ", 1997)", + "comments": [], + "startOffset": 327, + "endOffset": 334, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f1380958db5fd208a19f3b6539d85bbf", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 428.99 + }, + "width": 43.77997, + "height": 11.017679, + "page": 84 + } + ], + "sectionNumber": 566, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the study (", + "textAfter": ", 1997) water:", + "comments": [], + "startOffset": 171, + "endOffset": 178, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "01c980bd4e15f1062a4464c0f899d40e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 84 + } + ], + "sectionNumber": 2443, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "15350ff315d39b6f4d049e424db0520e", + "type": "CBI_author", + "value": "Simmonds R", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 530.27 + }, + "width": 48.019318, + "height": 11.017679, + "page": 85 + }, + { + "topLeft": { + "x": 402.46, + "y": 517.67 + }, + "width": 8.363678, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 570, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the study (", + "textAfter": ", 2012", + "comments": [], + "startOffset": 234, + "endOffset": 244, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b8e4e2b5f77d8eb44d6e4c0a23822b44", + "type": "CBI_author", + "value": "Simmonds M", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 449.34692, + "y": 284.61 + }, + "width": 60.472412, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 153, + "endOffset": 163, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "aefa00a506228535147eac6d79fc96a7", + "type": "CBI_author", + "value": "Simmonds R", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 413.74286, + "y": 297.33002 + }, + "width": 58.143005, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(Simmonds M & ", + "textAfter": ", 2013) <2.6", + "comments": [], + "startOffset": 124, + "endOffset": 134, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "630c49a0d5b37d4cf06a4af79588956b", + "type": "CBI_author", + "value": "Merritt, A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 432.7979, + "y": 335.73 + }, + "width": 45.699554, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 574, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 116, + "endOffset": 126, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b5cfcb910f6ca6c324f3e26a4e458168", + "type": "CBI_author", + "value": "Simmonds R", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 208.73999 + }, + "width": 58.143005, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(moist soil) (", + "textAfter": ", 2012) TLC", + "comments": [], + "startOffset": 250, + "endOffset": 260, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "41641b00cc48e7cf87a84f7164213cd7", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 85 + } + ], + "sectionNumber": 2444, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "698432891c2cfcd3ad7dad66ba2c2f56", + "type": "CBI_author", + "value": "Simmonds R", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 413.74286, + "y": 272.01 + }, + "width": 58.143005, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(Simmonds M & ", + "textAfter": ", 2014) soil-photolysis:", + "comments": [], + "startOffset": 166, + "endOffset": 176, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "350ad337c1fb641b49f87f390a6cf3a7", + "type": "CBI_author", + "value": "Merritt, A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 432.7979, + "y": 145.5 + }, + "width": 45.667877, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 354, + "endOffset": 364, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b8a8a3bd54cd299d026b8021a834d28c", + "type": "CBI_author", + "value": "Simmonds M", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 449.34692, + "y": 309.93 + }, + "width": 60.472412, + "height": 11.017679, + "page": 85 + } + ], + "sectionNumber": 575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 111, + "endOffset": 121, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9c9df40b9fe6825e9d32ccfc22d32918", + "type": "CBI_author", + "value": "Merritt, A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 454.74542, + "y": 454.43 + }, + "width": 45.667908, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 578, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 413, + "endOffset": 423, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e2a85b56add0426d56ce653310dca0e4", + "type": "CBI_author", + "value": "Mamouni A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 456.556, + "y": 377.97 + }, + "width": 54.554993, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 579, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 164, + "endOffset": 173, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "163e9c57fbbbb63d7fc4d10e9926ec65", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 229.40997 + }, + "width": 54.12442, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 580, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "at d28 (", + "textAfter": ", 1997 a", + "comments": [], + "startOffset": 103, + "endOffset": 113, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2478900c2ca67a27726b9699ffdf59fc", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 86 + } + ], + "sectionNumber": 2445, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5dffc398f2e80e3739f563268bc40bfd", + "type": "CBI_author", + "value": "Mamouni A.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 456.58, + "y": 694.82 + }, + "width": 57.28897, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 578, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "max: 2.2% (", + "textAfter": ", 1997a) sediment:", + "comments": [], + "startOffset": 128, + "endOffset": 138, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "88b27fedbfd7b14e43f26e24e66966b1", + "type": "CBI_author", + "value": "Mamouni A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 456.556, + "y": 416.03 + }, + "width": 54.554993, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 579, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 129, + "endOffset": 138, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "52fca84de74b707284909f50d6c04ac9", + "type": "CBI_author", + "value": "Simmonds R", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 505.07 + }, + "width": 58.143005, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 578, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(moist soil) (", + "textAfter": ", 2012) TLC", + "comments": [], + "startOffset": 327, + "endOffset": 337, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d246b7546e3f9b3db34767b1ed13bfc7", + "type": "CBI_author", + "value": "Mamouni A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 456.556, + "y": 340.05 + }, + "width": 54.554993, + "height": 11.017679, + "page": 86 + } + ], + "sectionNumber": 579, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 203, + "endOffset": 212, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ce067662a0c915094e2e2ef5a6967d66", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 87 + } + ], + "sectionNumber": 2446, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c250085cb1bd0c23cd4e530b5c7f9706", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 376.96884, + "y": 260.97003 + }, + "width": 47.88681, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "metabolism studies (", + "textAfter": "&Simmonds 2013 and", + "comments": [], + "startOffset": 596, + "endOffset": 604, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "07faab383cc11e0352c3ce67b73ed454", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 221.67177, + "y": 223.04999 + }, + "width": 22.373459, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Phaff, 2001 and ", + "textAfter": ", 2007) were", + "comments": [], + "startOffset": 857, + "endOffset": 861, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "40dd467dea535b052de8ae154f2f5376", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 185.46191, + "y": 58.50403 + }, + "width": 47.8869, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "new studies (", + "textAfter": " & Simmonds,", + "comments": [], + "startOffset": 2017, + "endOffset": 2025, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fdd4653ae5685dc38527cf92aa4d9d18", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 216.3003, + "y": 210.29999 + }, + "width": 28.533768, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(Clark, 1995 and ", + "textAfter": ", 1997) the", + "comments": [], + "startOffset": 923, + "endOffset": 929, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "57ec1c86df3f88d0ba0e5ca5845a3053", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 379.05972, + "y": 298.89 + }, + "width": 25.475677, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "several studies (", + "textAfter": ", 1995; Morgenroth,", + "comments": [], + "startOffset": 298, + "endOffset": 303, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1d6d1a4a085e0fc79bf85bee7f1b8084", + "type": "CBI_author", + "value": "Purdy J.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 468.18112, + "y": 412.43 + }, + "width": 36.968323, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 586, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "0.4 µg/l (", + "textAfter": ", 1994", + "comments": [], + "startOffset": 39, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3acbc340d0c96b3d7f91203a896ccc82", + "type": "CBI_author", + "value": "Kitschmann P", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 406.16943, + "y": 682.1 + }, + "width": 63.022675, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 583, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "4.5% (d28) (", + "textAfter": "., 1997", + "comments": [], + "startOffset": 169, + "endOffset": 181, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9230b19d924967792e5138325474899c", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 89.634735, + "y": 223.04999 + }, + "width": 27.231041, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "degradation studies (", + "textAfter": ", 1996, Phaff,", + "comments": [], + "startOffset": 828, + "endOffset": 833, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b6d2d14ab9db8555fa294dcda62fdacc", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 432.4006, + "y": 260.97003 + }, + "width": 48.019318, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "metabolism studies (Simmonds&", + "textAfter": " 2013 and", + "comments": [], + "startOffset": 605, + "endOffset": 613, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "06d0c24c299f2d8749a3fffbe2152fc5", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 286.28998 + }, + "width": 54.124466, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "1995; Morgenroth, 1997, ", + "textAfter": ", 1997, Keller,", + "comments": [], + "startOffset": 329, + "endOffset": 339, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "125806e8d44f7d8feb038c7d0c39dc57", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 141.1179, + "y": 210.29999 + }, + "width": 25.464645, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "two studies (", + "textAfter": ", 1995 and", + "comments": [], + "startOffset": 907, + "endOffset": 912, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e4794aee367bed061f81f50ca0b6b01f", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 158.25935, + "y": 286.28998 + }, + "width": 28.522736, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "1997, Kitschmann, 1997, ", + "textAfter": ", 1997). However,", + "comments": [], + "startOffset": 347, + "endOffset": 353, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "380b8faef3891c4373b3cf34c09a0053", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 247.35217, + "y": 58.50403 + }, + "width": 48.1297, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "studies (Simmonds & ", + "textAfter": ", 2013 &", + "comments": [], + "startOffset": 2028, + "endOffset": 2036, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c084db7daebf22102e2295fa7886d59e", + "type": "CBI_author", + "value": "Morgenroth", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 439.857, + "y": 298.89 + }, + "width": 53.52832, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "studies (Clark, 1995; ", + "textAfter": ", 1997, Kitschmann,", + "comments": [], + "startOffset": 311, + "endOffset": 321, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "dae6aa64ccf80f89e0526492f5afadc1", + "type": "CBI_author", + "value": "Hein W.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.55743, + "y": 450.95 + }, + "width": 38.29312, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 585, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "< 0.8% (", + "textAfter": ", 2007", + "comments": [], + "startOffset": 40, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0228cfd5b5380430fbb9da27e911c3c5", + "type": "CBI_author", + "value": "Phaff", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 148.93999, + "y": 223.04999 + }, + "width": 24.824326, + "height": 11.017679, + "page": 87 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "studies (Lucas, 1996, ", + "textAfter": ", 2001 and", + "comments": [], + "startOffset": 841, + "endOffset": 846, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a4e78e1b15d39a844d73e8561c6da6a4", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 334.6123, + "y": 695.78 + }, + "width": 43.77997, + "height": 11.017679, + "page": 88 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "studies (Kitschmann, 1997b; ", + "textAfter": ", 1997b) were", + "comments": [], + "startOffset": 2555, + "endOffset": 2562, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "50789d305df29abede187464aaec370b", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 365.86664, + "y": 683.18 + }, + "width": 40.048492, + "height": 11.017679, + "page": 88 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "2004 and 2005; ", + "textAfter": ", 2003; Nicollier&Glänzel,", + "comments": [], + "startOffset": 2658, + "endOffset": 2667, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "968594bf4eff7c9b6e4743fbac29c9e7", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 264.90582, + "y": 683.18 + }, + "width": 22.461761, + "height": 11.017679, + "page": 88 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "new studies (", + "textAfter": ", 2004 and", + "comments": [], + "startOffset": 2637, + "endOffset": 2641, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0d0714bbe70ddeb6a47af64d372423e8", + "type": "CBI_author", + "value": "Nicollier&Glänzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 439.6249, + "y": 683.18 + }, + "width": 83.20419, + "height": 11.017679, + "page": 88 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "2005; Nicollier, 2003; ", + "textAfter": ", 2003) were", + "comments": [], + "startOffset": 2675, + "endOffset": 2692, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f5421c845cc393aad15514195f71bd2c", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 239.39233, + "y": 695.78 + }, + "width": 54.234863, + "height": 11.017679, + "page": 88 + } + ], + "sectionNumber": 589, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "degradation studies (", + "textAfter": ", 1997b; Mamouni,", + "comments": [], + "startOffset": 2536, + "endOffset": 2546, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8d51e77a1d51d6b9ca8ad2e5ee36066e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 88 + } + ], + "sectionNumber": 2447, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7257765389187100535b1692e9a502aa", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 89 + } + ], + "sectionNumber": 2448, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "086c9bcacbb7303ae83bffe622b9788b", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 101.70001 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 608, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 46, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f6c5627809251e43363661a173723f69", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 136.73999 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 607, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 41, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "994b6c1585f9f879945a1a94034a19bd", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 518.51 + }, + "width": 23.131134, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 591, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 58, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "df4e2137cc60604587b37661a11eb221", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 359.73 + }, + "width": 49.266296, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 598, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 76, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b6af73a624970a01648f935318d559d5", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 477.23 + }, + "width": 24.774567, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 593, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1996 [M", + "comments": [], + "startOffset": 38, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "54a26648ff03474739ae8715ce685a8f", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 241.77002 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 604, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 57, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1fa44f5bee92786be09d5761eb8882f9", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 453.71 + }, + "width": 24.774567, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 594, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1996 [M", + "comments": [], + "startOffset": 42, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8a6bd64198dc189d82aa9d5023112359", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 66.784 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 609, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " an", + "comments": [], + "startOffset": 48, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2882565f66130415edbc4bb4114c71c1", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 171.65997 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 606, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 56, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f45a2c5a2d15bc3c4b9a6d127d723fcb", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 2449, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a8f0937bc01ede130194ab5bc5953a8c", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 395.27 + }, + "width": 25.890076, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 596, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 45, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8bd5a4577d372f3a2d3ea5ce8102d118", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 424.55 + }, + "width": 24.774567, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 595, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1996 [M", + "comments": [], + "startOffset": 85, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "45bda80e80c5d9e03ae4c508d2406f85", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 195.18 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 605, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 55, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "48dce62e2d531a3b0c6b103790b6b349", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 90.18402 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 608, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 59, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "93fd1896d840476ebf6eb2ff0156e686", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 125.22003 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 607, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 54, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d3dd74116e2db67a4166472d84ea3511", + "type": "CBI_author", + "value": "Morgenroth", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 289.28998 + }, + "width": 48.66864, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 601, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 45, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c4666f0cdb4216beade177a6f01701a2", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 312.69 + }, + "width": 49.266296, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 600, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 66, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d2ec31f19d7e8602d7e22d2f1b169393", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 230.25 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 604, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 70, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d288785f8e834d1cdbb4c6f3e8c71782", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 383.25 + }, + "width": 25.890076, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 597, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1997 [M", + "comments": [], + "startOffset": 44, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "73909aee65b137156b186bc74e00729e", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 206.70001 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 605, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 42, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6ffd07f1e9bd7e08ad72f79440c9cb8a", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 336.21 + }, + "width": 49.266296, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 599, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 47, + "endOffset": 57, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8c13a4d5bd30af752155a648a25b31bd", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 500.75 + }, + "width": 23.131134, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 592, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1995 [M", + "comments": [], + "startOffset": 58, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fee419eb8624d93dfc472f001f74d8ea", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 253.77002 + }, + "width": 20.362274, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 603, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 40, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7600150ef14b5d15e0033b4a47ff5946", + "type": "CBI_author", + "value": "Phaff", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 265.76996 + }, + "width": 22.653046, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 602, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 50, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d79c53a412c05cfe8c4917d864d4a60a", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 125.22003 + }, + "width": 33.678764, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 607, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 7, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4c762590efe91f8b3ef821473a005ae8", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 160.26001 + }, + "width": 43.718445, + "height": 10.526819, + "page": 90 + } + ], + "sectionNumber": 606, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 69, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d6299365e68ce8f8bbe142b83700d02b", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 285.21002 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 622, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 98, + "endOffset": 106, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7db5d927eeb6878b4ef3d6f00cbaba05", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 671.54 + }, + "width": 43.763794, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 614, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 41, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ac0a9b0c1adb28d622456241559a725b", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 179.22003 + }, + "width": 24.774567, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 627, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 70, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8445550b20c05aed7134983ea6733cb8", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 331.77 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 621, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 71, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "529ec29f2128c6e9d1bddc0acb15636a", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 729.98 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 612, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 0, + "endOffset": 8, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2e6aac9c41c7030f2b8be8b94ff06442", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 695.06 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 613, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 71, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3bb1faeb2f3e2dddfb9664132ec7946c", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 155.70001 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 628, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 59, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0c96e4eff4a7da5873e21884475777b8", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 74.29056, + "y": 144.18 + }, + "width": 33.678764, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 628, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Silt loam (", + "textAfter": ")", + "comments": [], + "startOffset": 11, + "endOffset": 18, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6d9a60dbb2b67792bf2913c77f83e232", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 109.26001 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 629, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 60, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "250f8b8b43ae3640264ad851ac5ed01b", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 74.29056, + "y": 97.74402 + }, + "width": 33.678764, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 629, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Sandy loam (", + "textAfter": ")", + "comments": [], + "startOffset": 12, + "endOffset": 19, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8c3be5fcbb029781e282fc94d5b905c9", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 660.02 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 614, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 54, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "777eb1db49e631ca98e1dd8822a90b3f", + "type": "CBI_author", + "value": "Phaff", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 389.73 + }, + "width": 22.653046, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 620, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 86, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d235a0c552c6eb3be9d631a1d1664259", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 308.25 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 622, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 85, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fb47d26b3ba155d1ae277676eafdf7fc", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 354.69 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 621, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 58, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c64699700e916ea883b20e91ffb5c11f", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 132.65997 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 628, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 72, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2c6daf283325c220bc425ea3dcb97cbc", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 249.69 + }, + "width": 23.131134, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 624, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 86, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3216f191ae44bc67fe4db8c4d11d3776", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 2450, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f531dfc1cde5916d7273f24399e40d0a", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 86.224 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 629, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 73, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0b2cefa5e772a60d630fd0e24810ac27", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 139.65805, + "y": 62.70398 + }, + "width": 33.678757, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 630, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Geometric mean ", + "textAfter": " (n=2)", + "comments": [], + "startOffset": 15, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c8523bef71e27232989c90a8c4a7ea8e", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 463.3, + "y": 706.46 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 613, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 58, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ccd598583aa8333cde8a5b32b14c7489", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 660.02 + }, + "width": 33.678764, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 614, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 7, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2a4cc37b0729f2116f6e222dd4aeec35", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 598.22 + }, + "width": 43.718445, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 636, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 87, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7b4098d5f8aa76f5382eea9f99c592a8", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 469.79 + }, + "width": 24.774567, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 640, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 94, + "endOffset": 99, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "50ee9001aad33a140ef750a2d2b66675", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 376.17 + }, + "width": 49.266235, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 643, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 83, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "26ffc739b708aa55b5230961b355ef05", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 621.74 + }, + "width": 43.718445, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 635, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 96, + "endOffset": 104, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "13d4e6c7ed99af5e137b0100b40a9425", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 317.73004 + }, + "width": 49.266235, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 645, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 77, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3ee098ad1b3966af1a4791f4381308a7", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 411.23 + }, + "width": 20.362274, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 642, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 70, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2c33fb37e1a1372b708793b664fcab23", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 504.71 + }, + "width": 49.266235, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 639, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 100, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6212a84901442f379cd149cd801355a4", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 703.22 + }, + "width": 25.890076, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 633, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 75, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2c1a3828d47f225f803481c57fcf9bb3", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 575.3 + }, + "width": 43.718445, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 636, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 100, + "endOffset": 108, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2cae93fc40cb412b94ac7cc813b16a38", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 2451, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5aeaca8c4e5343a7af487dbdaae34086", + "type": "CBI_author", + "value": "Morgenroth", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 551.75 + }, + "width": 48.66858, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 637, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 75, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "aad2d191e51c331897c79d502a820003", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 644.78 + }, + "width": 43.718445, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 635, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 83, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "537acbaeb899a5e4ca0ca159a8c11c39", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 341.25 + }, + "width": 24.774567, + "height": 10.526819, + "page": 92 + } + ], + "sectionNumber": 644, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 66, + "endOffset": 71, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1bed650183d72419ba221cdfa3b5222a", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 108.77997 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 667, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 74, + "endOffset": 82, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a939d74fb402c4caa54e1a4979e9592c", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 155.34003 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 666, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 73, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c5b4618bf7ce88df6a33502627066d84", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 353.85 + }, + "width": 24.774567, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 660, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 85, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1fdf7131504b39b2bfa0f87a9fb3d2e3", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 2452, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5e4c5b45e47981c3f1849a4733534af5", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 190.26001 + }, + "width": 25.890076, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 665, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 81, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5624bad3e56fd9eafb7df2ab5a08894f", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 85.86401 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 667, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 87, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "57a1e9939ac40e5bc6b31e8988526c20", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 132.29999 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 666, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 86, + "endOffset": 94, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b7a8f906168beea64c621b9b13f05461", + "type": "CBI_author", + "value": "Phaff", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 494.39 + }, + "width": 22.653046, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 655, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 89, + "endOffset": 94, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "810ad1446758a18a84d318801769f2ae", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 140.72377, + "y": 202.26001 + }, + "width": 33.678757, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 664, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Arithmetic mean ", + "textAfter": " (n=2)", + "comments": [], + "startOffset": 16, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "023fac96863cac9d86a86300f5b7b493", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 139.65805, + "y": 214.26001 + }, + "width": 33.678757, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 663, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Geometric mean ", + "textAfter": " (n=2)", + "comments": [], + "startOffset": 15, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6757119e99fec05985b4f60303abdd10", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 447.83 + }, + "width": 23.131134, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 656, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 85, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "52f12bd8aa4c7f6841e19994d7a2bd84", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 236.25 + }, + "width": 49.266235, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 684, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 84, + "endOffset": 94, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e164e5fd8dd356714696e3b401d16a4e", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 527.75 + }, + "width": 49.266235, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 676, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 105, + "endOffset": 115, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "99fc6231bfcbbf6b718c5766e4fff066", + "type": "CBI_author", + "value": "Glänzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 691.7 + }, + "width": 31.965698, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 670, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Nicollier and ", + "textAfter": ", 200", + "comments": [], + "startOffset": 80, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9a4e729cb68c016cf0ea69f01e70e774", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 2453, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ba4ea9cecfc5572c850e119d9072d0cd", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 341.25 + }, + "width": 20.362274, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 681, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 72, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0eddaa06aec522a66beebdbb04f587f2", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 96.18402 + }, + "width": 49.266235, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 688, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 78, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1bd78603eb12ea18d647183ba355eeb5", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 633.26 + }, + "width": 43.718445, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 672, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 83, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4dcbcc8f0be4da4c8d3fa499d2a308be", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 703.22 + }, + "width": 36.4776, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 670, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Glänzel,", + "comments": [], + "startOffset": 66, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a83cfa9634f901b24eee845c1f9edcd8", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 387.69 + }, + "width": 20.362274, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 680, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 87, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c0f297f6607660832fd7f57b080ca432", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 668.3 + }, + "width": 39.734497, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 671, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 74, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "18c84a8cac3abd7d9cd412b6a10d5a94", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 142.73999 + }, + "width": 24.774567, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 687, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 81, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2d87a333e0f19f49ac30dba396aa4190", + "type": "CBI_author", + "value": "Morgenroth", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 586.82 + }, + "width": 48.66858, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 673, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 78, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9361a1d7382decf911f0b56c37705b2d", + "type": "CBI_author", + "value": "Glänzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 178.26001 + }, + "width": 31.965698, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 685, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Nicollier and ", + "textAfter": ", 200", + "comments": [], + "startOffset": 79, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2ec1e5e399f5be89ec5555dff3a4b404", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 189.65997 + }, + "width": 36.4776, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 685, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Glänzel,", + "comments": [], + "startOffset": 65, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "740d74dc7a2ec65d26f01a3fefa61c2d", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 481.19 + }, + "width": 24.774567, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 677, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 104, + "endOffset": 109, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6709a41c0a5785fdca60a6bf6d28781e", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 703.22 + }, + "width": 36.4776, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 691, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Glänzel,", + "comments": [], + "startOffset": 61, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "12522c24957aaac245163709503e566b", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 127.02002 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 711, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 76, + "endOffset": 84, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6f8f5e2cc3f527f098da0982a431caf2", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 208.5 + }, + "width": 24.774567, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 709, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 86, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e27a29935fd14b469ef1411737643d4e", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 74.30398, + "y": 115.5 + }, + "width": 33.677704, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 711, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Sandy loam (", + "textAfter": ")", + "comments": [], + "startOffset": 12, + "endOffset": 19, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c861431917176f5cb1ee304dd0b71ab5", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 279.45 + }, + "width": 23.131134, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 705, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 86, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1f17a3a09bc88a0d06607176e457022e", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 302.97003 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 704, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 74, + "endOffset": 82, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8c84c71367a0e3ac4482dbc61f450d6a", + "type": "CBI_author", + "value": "Phaff", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 349.53 + }, + "width": 22.653046, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 703, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 80, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5a7e90e4ada88a215c83ec372b4f39e4", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 103.97998 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 711, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 89, + "endOffset": 97, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "32501645fd50bb7428b431570ba37298", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 326.01 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 704, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 61, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3e0112d30c690cd0044acb3f649704e2", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 2454, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ad08480419914a10d338b0f1ef037590", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 139.1, + "y": 519.47 + }, + "width": 29.864075, + "height": 10.44714, + "page": 95 + } + ], + "sectionNumber": 698, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 10, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d4442ff925783676d3df5f47d026cd51", + "type": "CBI_author", + "value": "Glänzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 691.7 + }, + "width": 31.965698, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 691, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Nicollier and ", + "textAfter": ", 200", + "comments": [], + "startOffset": 75, + "endOffset": 82, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3cbaeb1fa3659ecb2ae331d90b26ab77", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 152.70001 + }, + "width": 36.4776, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 736, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 69, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "eeca6648109fefc65ec8134ee20abd25", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 139.1, + "y": 756.28 + }, + "width": 29.864075, + "height": 10.44714, + "page": 96 + } + ], + "sectionNumber": 715, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 10, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "61d6a500ffa06719f3733e8c853e18b4", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 340.77 + }, + "width": 20.362274, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 728, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 83, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8f8f07061041d92952ffe6b36c778a21", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 540.23 + }, + "width": 49.266235, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 720, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1997", + "comments": [], + "startOffset": 79, + "endOffset": 89, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b1feaf25c2096106d56958f41d6e39d7", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 575.3 + }, + "width": 49.266235, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 719, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1997", + "comments": [], + "startOffset": 78, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d95295b46c2849ae0580cb55c6c412c8", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 645.26 + }, + "width": 43.718445, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 717, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 83, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ba99f286829aad5a127e15c68e2f2267", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 211.26001 + }, + "width": 24.774567, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 734, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 82, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fd524bb3a96358c26763c9852eb5a6b7", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 598.82 + }, + "width": 43.718445, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 718, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 84, + "endOffset": 92, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c0c43cdcc8fbcd64e07847687411616f", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 176.22003 + }, + "width": 49.266235, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 735, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 80, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "30cc6d2fedb886b1903387ad358ffbfb", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 422.75 + }, + "width": 24.774567, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 725, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 95, + "endOffset": 100, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "177f0e41bf7b40cfa35103a3b3aab80c", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 505.19 + }, + "width": 36.4776, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 721, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 69, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bb203ccbbc5d2615d35ef4aca2535209", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 2455, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "09cecd25376f4d6f2354b19dbe2755e8", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 621.74 + }, + "width": 43.718445, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 718, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 71, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b9de557560b84b5ce6c7bf7dd1c480e3", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 668.3 + }, + "width": 43.718445, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 717, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 70, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "952fb0e937d1cb378959d6eddc1c6ab6", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 246.69 + }, + "width": 36.4776, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 732, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 200", + "comments": [], + "startOffset": 74, + "endOffset": 83, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1d6d2a5c1a51d2fffe0567dd5253b29d", + "type": "CBI_author", + "value": "Keller", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 703.22 + }, + "width": 25.890076, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 716, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 84, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2aef261a93180309a2d21e975563949b", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 270.21002 + }, + "width": 49.266235, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 731, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 85, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6b11f9c5ce8877d30914b6d2b787e4ed", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 457.79 + }, + "width": 49.266235, + "height": 10.526819, + "page": 96 + } + ], + "sectionNumber": 724, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 100, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "35a6ca80c500e1991444763be055503a", + "type": "CBI_author", + "value": "Gl änzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 513.4367, + "y": 546.71 + }, + "width": 10.959961, + "height": 10.526819, + "page": 97 + }, + { + "topLeft": { + "x": 470.26, + "y": 535.19 + }, + "width": 22.005676, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 749, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Nicollier&", + "textAfter": ", 200", + "comments": [], + "startOffset": 80, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "60b8d31417a3aea577d036986fd52294", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 570.23 + }, + "width": 36.4776, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 748, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "&Gl änzel, 200", + "comments": [], + "startOffset": 76, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c368b7c3d07fca3f3fa3a206cd52994a", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 546.71 + }, + "width": 36.4776, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 749, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "&Gl änzel, 200", + "comments": [], + "startOffset": 70, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a183485907c1127463b5eabe498538b0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 2456, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "be32c4c0872f08cf383c02b2a8e74594", + "type": "CBI_author", + "value": "Gl änzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 513.4367, + "y": 617.78 + }, + "width": 10.959961, + "height": 10.526819, + "page": 97 + }, + { + "topLeft": { + "x": 470.26, + "y": 606.26 + }, + "width": 22.005676, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 745, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Nicollier&", + "textAfter": ", 200", + "comments": [], + "startOffset": 85, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4347a57d953c7556dbc2100e1ec0e2d4", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 641.3 + }, + "width": 39.734497, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 744, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 78, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e673586e57cdc112f778b5ef67c3267f", + "type": "CBI_author", + "value": "Gl änzel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 513.4367, + "y": 570.23 + }, + "width": 10.959961, + "height": 10.526819, + "page": 97 + }, + { + "topLeft": { + "x": 470.26, + "y": 558.71 + }, + "width": 22.005676, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 748, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Nicollier&", + "textAfter": ", 200", + "comments": [], + "startOffset": 86, + "endOffset": 94, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "dd9f106eca3deca004ae89bec05cf0d0", + "type": "CBI_author", + "value": "Nicollier", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 617.78 + }, + "width": 36.4776, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 745, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "&Gl änzel, 200", + "comments": [], + "startOffset": 75, + "endOffset": 84, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "47018a0184b7bb619b377318db24d65b", + "type": "CBI_author", + "value": "Roohi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-8: Summary of DT50 modelling endpoints for the metabolite CGA37735", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 336.33 + }, + "width": 25.352264, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 755, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 76, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f26ce58bfaff1194767563d8b5496fa8", + "type": "CBI_author", + "value": "Lucas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 506.39 + }, + "width": 24.774567, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 769, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 88, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7da017c59a8a4691ac2b8f6e4434ed9e", + "type": "CBI_author", + "value": "Roohi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 401.39 + }, + "width": 25.352264, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 772, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 86, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "598a75a72eb199fb075bf9cae6410e0b", + "type": "CBI_author", + "value": "Clark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-9: DT50 modelling endpoint for the metabolite CGA40172", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 684.62 + }, + "width": 23.131134, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 763, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 72, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "aee4789ba8c455f7c61540f2cf9b5627", + "type": "CBI_author", + "value": "Luca", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 471.35 + }, + "width": 20.87024, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 770, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 83, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "63374975b9e22a725f49e3b0fb047b0b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 2457, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5ec6d122f2b7373f3b6c3fbcbbdecb59", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 703.22 + }, + "width": 43.718445, + "height": 10.526819, + "page": 99 + } + ], + "sectionNumber": 784, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "& Simmonds, 201", + "comments": [], + "startOffset": 70, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "393e0f07a2af0bba30d440a55200ee69", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-12: Summary of DT50 modelling endpoints for the metabolite CGA41507", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 399.83 + }, + "width": 43.77997, + "height": 11.017679, + "page": 99 + } + ], + "sectionNumber": 794, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1997", + "comments": [], + "startOffset": 77, + "endOffset": 84, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a154d7a9910fcb5c0f92eca6d28570f0", + "type": "CBI_author", + "value": "Hein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 621.26 + }, + "width": 20.362274, + "height": 10.526819, + "page": 99 + } + ], + "sectionNumber": 787, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ",200", + "comments": [], + "startOffset": 81, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "eff459590acd1ca3815ecd53a230eb69", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 668.3 + }, + "width": 43.718445, + "height": 10.526819, + "page": 99 + } + ], + "sectionNumber": 785, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 81, + "endOffset": 89, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "89b4a6e30ed1b3cc65b9025f18768de0", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 691.7 + }, + "width": 43.718445, + "height": 10.526819, + "page": 99 + } + ], + "sectionNumber": 784, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds& ", + "textAfter": ", 201", + "comments": [], + "startOffset": 80, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6ab70823c968fbbf3c92073bba579401", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 99 + } + ], + "sectionNumber": 2458, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 42, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "deda66059440e7e36e136a5aa9bbce0b", + "type": "CBI_author", + "value": "Merritt", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 442.42, + "y": 622.46 + }, + "width": 29.306335, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 798, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 73, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "403e924a6845b9f3ed5d4833378ed3d5", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 442.42, + "y": 540.95 + }, + "width": 43.718445, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 800, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 101, + "endOffset": 109, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9a1b383f76fd08d701658eb84d5a4b9f", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 104.8578, + "y": 540.95 + }, + "width": 38.110962, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 800, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Borstel, ", + "textAfter": ", loamy sand,", + "comments": [], + "startOffset": 9, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f7cce036e30ce63688587f5e0ef57d69", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 171.89, + "y": 59.583984 + }, + "width": 38.110962, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 812, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Herxheimweyhe r, ", + "textAfter": null, + "comments": [], + "startOffset": 35, + "endOffset": 42, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "78453ee7183b43077403c6b212e22525", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 224.13 + }, + "width": 38.12091, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 805, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Uhrsleben, ", + "textAfter": null, + "comments": [], + "startOffset": 28, + "endOffset": 35, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f59fbbbb3841cb1b36ccbc495d36e7ea", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 106.619995 + }, + "width": 28.07129, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 810, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 26, + "endOffset": 32, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e3e9d66179b6f5fd3e3c34f649614a4d", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 100.46, + "y": 291.33002 + }, + "width": 29.864082, + "height": 10.44714, + "page": 100 + } + ], + "sectionNumber": 803, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "337a0a92ca923b65ff0ca1620f1aa035", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 2459, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7c8d62701d0dbed9ed7a58e5d6c7e9b3", + "type": "recommendation_CBI_author", + "value": "Dark", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 349.51, + "y": 651.74 + }, + "width": 23.190887, + "height": 10.44714, + "page": 100 + } + ], + "sectionNumber": 797, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " control DegT50/90", + "comments": [], + "startOffset": 33, + "endOffset": 37, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "67c1d9752cb88fb9c2afd5a5f922b770", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 104.8578, + "y": 505.91 + }, + "width": 38.110962, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 801, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Borstel, ", + "textAfter": ", loamy sand,", + "comments": [], + "startOffset": 9, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b337d49ddbf8e1f30664f30ecdb1e057", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 548.51 + }, + "width": 38.12091, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 821, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Meißner Vockerode, ", + "textAfter": null, + "comments": [], + "startOffset": 38, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5ecfe53023c632f742f45d072f92affc", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 173.45, + "y": 583.46 + }, + "width": 38.230484, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 820, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Goch/Niederrhei n, ", + "textAfter": null, + "comments": [], + "startOffset": 37, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "74e758ce96baf5367fd69de5310c53fd", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 478.55 + }, + "width": 38.12091, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 823, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Pleidelsheim Württemberg, ", + "textAfter": null, + "comments": [], + "startOffset": 44, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2c1ba9458a1e043060c2e349432b540a", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 513.47 + }, + "width": 38.12091, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 822, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "OldenburgAltratjensdorf, ", + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "48a3725422946416e1fbb31cf20ae60c", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 665.54 + }, + "width": 38.12091, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 817, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Riepsdorf, ", + "textAfter": null, + "comments": [], + "startOffset": 29, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "09e17a068313f93bebfac8b5f2c1e9d3", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 419.99 + }, + "width": 38.12091, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 825, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Höperhöfen, ", + "textAfter": null, + "comments": [], + "startOffset": 30, + "endOffset": 37, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3edc81174a1cf4bca9838df61dd8d2f8", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 177.89, + "y": 443.51 + }, + "width": 38.230484, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 824, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "RheinauMemprechtshof en, ", + "textAfter": null, + "comments": [], + "startOffset": 48, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6eed735a610bf5dde1c666c5d60fcf34", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 2460, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2c3558235d1e789c9fb49bec683e429b", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 689.06 + }, + "width": 38.12091, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 816, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Wuhnitz, ", + "textAfter": null, + "comments": [], + "startOffset": 27, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca04314d6fa984be6f7164de91171801", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 100.46, + "y": 756.28 + }, + "width": 29.864082, + "height": 10.44714, + "page": 101 + } + ], + "sectionNumber": 814, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7b05771f2046e21baed3b63ff2519ffa", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 102 + } + ], + "sectionNumber": 2461, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e1d680a8787251e73c5d7a6ccd390187", + "type": "CBI_author", + "value": "Ellgehausen, H.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.86, + "y": 92.94403 + }, + "width": 64.39554, + "height": 10.526819, + "page": 102 + } + ], + "sectionNumber": 847, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1997", + "comments": [], + "startOffset": 47, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0ebe7bdba1acdc771fcf6b0e3ef1d976", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-15 DT50 values at 12 °C S-metolachlor for assessment of the P-criterion (POP,\nPBT, vPvB)", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 76.584, + "y": 596.9 + }, + "width": 33.678764, + "height": 10.526819, + "page": 102 + } + ], + "sectionNumber": 833, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (geometric mean,", + "comments": [], + "startOffset": 0, + "endOffset": 7, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "273166c8fdb9049309b8f4709115cc53", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 74.064, + "y": 200.34003 + }, + "width": 29.864082, + "height": 10.44714, + "page": 102 + } + ], + "sectionNumber": 842, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6d0440aea7d14b244b1ffc41aa70e5df", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 74.064, + "y": 756.28 + }, + "width": 29.864082, + "height": 10.44714, + "page": 103 + } + ], + "sectionNumber": 851, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2cc159e824c96eb2465869f99939df47", + "type": "CBI_author", + "value": "Hein, W.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.86, + "y": 632.9 + }, + "width": 37.30426, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 858, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 63, + "endOffset": 71, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "180b19e4ea368e9bfbdf55b6e49835b5", + "type": "CBI_author", + "value": "Nicollier, G.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.86, + "y": 656.42 + }, + "width": 51.198486, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 857, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2000", + "comments": [], + "startOffset": 54, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cc89b3ddad43006d6d7b02a4c3bfadb9", + "type": "CBI_author", + "value": "Glänzel, A.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.86, + "y": 682.7 + }, + "width": 46.676605, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 855, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1999", + "comments": [], + "startOffset": 55, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0b2ea56fc21a0e4fc7d41bb738400f9f", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-18: Freundlich adsorption coefficients and exponents of CGA41507", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 234.81 + }, + "width": 39.734497, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 874, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", A.and Voelkel,", + "comments": [], + "startOffset": 54, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "17ac702fdf044791a5fdb5f2860a2d5f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 2462, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "33888a53d12e52cc1022f5d4db587f59", + "type": "CBI_author", + "value": "Voelkel, W", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-18: Freundlich adsorption coefficients and exponents of CGA41507", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 223.28998 + }, + "width": 46.990967, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 874, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Mamouni, A.and ", + "textAfter": ". (1997", + "comments": [], + "startOffset": 69, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1013d0dddd17eac11ee7b0eee7b40056", + "type": "CBI_author", + "value": "Mamouni, A.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-17: Freundlich adsorption coefficients and expone.nts of CG40172", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 438.11 + }, + "width": 54.445404, + "height": 10.526819, + "page": 103 + } + ], + "sectionNumber": 865, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995b", + "comments": [], + "startOffset": 51, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a923252e299c221d413c4641501686e4", + "type": "CBI_author", + "value": "Mamouni, A.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-19: Freundlich adsorption coefficients and exponents of CGA51202", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 633.14 + }, + "width": 54.445404, + "height": 10.526819, + "page": 104 + } + ], + "sectionNumber": 887, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995a", + "comments": [], + "startOffset": 47, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8f27aa0683a79fa7bae89be4eb679282", + "type": "CBI_author", + "value": "Voelkel, W", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-21: Freundlich adsorption coefficients and exponents of CGA357704", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 167.94 + }, + "width": 46.975403, + "height": 10.526819, + "page": 104 + } + ], + "sectionNumber": 909, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ". (1997", + "comments": [], + "startOffset": 42, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9bdf720d557eb73fb159b9b29858e78f", + "type": "CBI_author", + "value": "Spare, W.C.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-20: Freundlich adsorption coefficients and exponents of CGA376944", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 378.21 + }, + "width": 49.87372, + "height": 10.526819, + "page": 104 + } + ], + "sectionNumber": 899, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1997", + "comments": [], + "startOffset": 50, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca90087e0b7e1e3befeb15229d6433a8", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 104 + } + ], + "sectionNumber": 2463, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2df7178bcd3fab8b102b726b4ef0c625", + "type": "CBI_author", + "value": "Ulbrich, R.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-20: Freundlich adsorption coefficients and exponents of CGA376944", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 415.19 + }, + "width": 45.581207, + "height": 10.526819, + "page": 104 + } + ], + "sectionNumber": 896, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1997", + "comments": [], + "startOffset": 41, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "62be855cf9ec640c905179c4ccd5e5bd", + "type": "CBI_author", + "value": "Burgess, M", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-23: Freundlich adsorption coefficients and exponents of CGA37735", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 456.23 + }, + "width": 47.00528, + "height": 10.526819, + "page": 105 + } + ], + "sectionNumber": 929, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ". and Simmonds,", + "comments": [], + "startOffset": 51, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3d7ac8429c2cbf6ee5869a19dbf390c9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 105 + } + ], + "sectionNumber": 2464, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "635893a4e82b3a2aab9b589dc3bcf708", + "type": "CBI_author", + "value": "Simmonds, M.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-22: Freundlich adsorption coefficients and exponents of SYN546829", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 690.38 + }, + "width": 60.052826, + "height": 10.526819, + "page": 105 + } + ], + "sectionNumber": 918, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 52, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "05905a1c52a80bc62eb5ad5ab5a4c4e8", + "type": "CBI_author", + "value": "Simmonds, M.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-24: Freundlich adsorption coefficients and exponents of SYN542607", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 235.64996 + }, + "width": 60.052826, + "height": 10.526819, + "page": 105 + } + ], + "sectionNumber": 940, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 50, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cec4d1d3961fd3c753d262e6383865e4", + "type": "CBI_author", + "value": "Simmonds, M.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-23: Freundlich adsorption coefficients and exponents of CGA37735", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 444.83 + }, + "width": 60.052826, + "height": 10.526819, + "page": 105 + } + ], + "sectionNumber": 929, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 67, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "eb6bbe3de0478911dc7d4004248ce94b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 106 + } + ], + "sectionNumber": 2465, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a5079fce85cd693865651fac0a78a181", + "type": "CBI_author", + "value": "MüllerKallert", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-27: Distribution of the radioactivity in leachate of aged soil column leaching\nstudies with S-metolachlor (% applied radioactivity)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 474.94, + "y": 107.82001 + }, + "width": 31.57669, + "height": 10.526819, + "page": 106 + }, + { + "topLeft": { + "x": 474.94, + "y": 96.304016 + }, + "width": 28.71872, + "height": 10.526819, + "page": 106 + } + ], + "sectionNumber": 968, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 47, + "endOffset": 60, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "11170759bfeb4deab84855d54a5da866", + "type": "CBI_author", + "value": "Plücken", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-26: Study conditions of aged column leaching studies with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 468.46, + "y": 319.64996 + }, + "width": 33.071228, + "height": 10.526819, + "page": 106 + } + ], + "sectionNumber": 961, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 57, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "248f6441a520b972dd1bfaa0fa10a645", + "type": "CBI_author", + "value": "MüllerKallert", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-26: Study conditions of aged column leaching studies with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 468.46, + "y": 366.57 + }, + "width": 31.57669, + "height": 10.526819, + "page": 106 + }, + { + "topLeft": { + "x": 468.46, + "y": 355.17 + }, + "width": 28.71872, + "height": 10.526819, + "page": 106 + } + ], + "sectionNumber": 959, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 55, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ff34a5ff2f88b530b8f20a928ed6d51d", + "type": "CBI_author", + "value": "Plücken", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-27: Distribution of the radioactivity in leachate of aged soil column leaching\nstudies with S-metolachlor (% applied radioactivity)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 474.94, + "y": 729.98 + }, + "width": 33.071228, + "height": 10.526819, + "page": 107 + } + ], + "sectionNumber": 972, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 56, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fa3ea2fb060d0c702f9f6e2f36e309c1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 107 + } + ], + "sectionNumber": 2466, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "230ab216cc1706e164de60a80f560048", + "type": "published_information", + "value": "Mass Spectrometry", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Lysimeter studies", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 472.27002, + "y": 513.35 + }, + "width": 53.566284, + "height": 11.017679, + "page": 108 + }, + { + "topLeft": { + "x": 70.944, + "y": 500.63 + }, + "width": 38.99968, + "height": 11.017679, + "page": 108 + } + ], + "sectionNumber": 1017, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3838, + "endOffset": 3855, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a4d196958e8eef557b2f7a8e2fdc94fe", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 108 + } + ], + "sectionNumber": 2467, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "da47e4d832722eb63c3fc0243edf6cab", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 109 + } + ], + "sectionNumber": 2468, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b0e06ce555da0c4da4fb78f1770c84d", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Lysimeter studies", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 434.9182, + "y": 578.3 + }, + "width": 12.367004, + "height": 10.0905, + "page": 109 + } + ], + "sectionNumber": 1017, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 5151, + "endOffset": 5154, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "192131c63e5331c44d418b419a908ace", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 110 + } + ], + "sectionNumber": 2469, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f442a2b51b069e7d7fb84acbb4171fed", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Field leaching studies", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 114.53998 + }, + "width": 25.000961, + "height": 10.929359, + "page": 111 + } + ], + "sectionNumber": 1018, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 5, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "116336cf052f0e6d279cfca90fdcc423", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 111 + } + ], + "sectionNumber": 2470, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9ddb6a01650e083c44ee02ef1fe472a9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 112 + } + ], + "sectionNumber": 2471, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "847555f31c3a583fcc0df010d5e066f4", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Field leaching studies", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 187.5264, + "y": 708.5 + }, + "width": 41.89218, + "height": 11.017679, + "page": 112 + } + ], + "sectionNumber": 1018, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "conducted in Lorsch, ", + "textAfter": " at a", + "comments": [], + "startOffset": 549, + "endOffset": 556, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3ce7fb1248ef1bb2a37564381e1c45df", + "type": "false_positive", + "value": "May", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Field leaching studies", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 240.25348, + "y": 733.7 + }, + "width": 21.26944, + "height": 11.017679, + "page": 112 + } + ], + "sectionNumber": 1018, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 361, + "endOffset": 364, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3b97224569ac1b0b828f2e78757e7006", + "type": "hint_only", + "value": "test site", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Field leaching studies", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 257.92853, + "y": 500.03 + }, + "width": 34.89279, + "height": 11.017679, + "page": 112 + } + ], + "sectionNumber": 1018, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2132, + "endOffset": 2141, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9afc238389743a4d07b603fa227a4ddc", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 113 + } + ], + "sectionNumber": 2472, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "dcadaf01ec13f022610b87a974b05830", + "type": "CBI_author", + "value": "Cline", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.2 Summary of fate and behaviour in water and sediment", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 382.5724, + "y": 173.22003 + }, + "width": 24.857422, + "height": 11.017679, + "page": 114 + } + ], + "sectionNumber": 1040, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "according Zepp and ", + "textAfter": " (1977) at", + "comments": [], + "startOffset": 1429, + "endOffset": 1434, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a1fdf951c70dda87577709fe59617947", + "type": "hint_only", + "value": "latitude", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.2 Summary of fate and behaviour in water and sediment", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 453.58, + "y": 173.22003 + }, + "width": 34.086853, + "height": 11.017679, + "page": 114 + } + ], + "sectionNumber": 1040, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1445, + "endOffset": 1453, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d80424c6f47f38c45777c693f4ebc6cc", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 114 + } + ], + "sectionNumber": 2473, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ca98d0d12508b2d0f325f69aaa4a0c0b", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Groundwater monitoring studies", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 274.44434, + "y": 633.14 + }, + "width": 14.987701, + "height": 11.017679, + "page": 114 + } + ], + "sectionNumber": 1019, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4276, + "endOffset": 4279, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ae61dc71afd477e7db6a5d9442b9416f", + "type": "CBI_author", + "value": "Zepp", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.8.2 Summary of fate and behaviour in water and sediment", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 337.474, + "y": 173.22003 + }, + "width": 23.54367, + "height": 11.017679, + "page": 114 + } + ], + "sectionNumber": 1040, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "program GC-SOLAR according ", + "textAfter": " and Cline", + "comments": [], + "startOffset": 1420, + "endOffset": 1424, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9d31a7ecb0804086f271dfd4a645332b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 115 + } + ], + "sectionNumber": 2474, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "689e4c77eb025f7c6c2109d39b357c6a", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-30: Degradation in water/sediment systems", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 72.744, + "y": 494.99 + }, + "width": 29.888794, + "height": 10.44714, + "page": 115 + } + ], + "sectionNumber": 1020, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "23653dc5c36d7c29a50836302e348027", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 116 + } + ], + "sectionNumber": 2475, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "dc27d04106a36671fb415b03f1531902", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 221.40884, + "y": 532.31 + }, + "width": 39.854004, + "height": 10.526819, + "page": 116 + } + ], + "sectionNumber": 1031, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "silt loam (study ", + "textAfter": ")", + "comments": [], + "startOffset": 36, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "830d8e2088f00b7777afaca834193520", + "type": "CBI_author", + "value": "Seyfried", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 210.09863, + "y": 517.55 + }, + "width": 34.864, + "height": 10.526819, + "page": 116 + } + ], + "sectionNumber": 1032, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "sandy loam (study ", + "textAfter": ")", + "comments": [], + "startOffset": 33, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0f3e03a1dd4421ed21d0e80fb57d949e", + "type": "false_positive", + "value": "Henry's", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.3 Summary of fate and behaviour in air", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 99.00768, + "y": 242.85004 + }, + "width": 34.561592, + "height": 11.017679, + "page": 116 + } + ], + "sectionNumber": 1041, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 149, + "endOffset": 156, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "49b9ea5c20975f18cf6fa7168ae41f29", + "type": "false_positive", + "value": "Law", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.3 Summary of fate and behaviour in air", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 136.17935, + "y": 242.85004 + }, + "width": 20.618088, + "height": 11.017679, + "page": 116 + } + ], + "sectionNumber": 1041, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 157, + "endOffset": 160, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1acf5ae8ffdac668c1384ef977337026", + "type": "CBI_author", + "value": "Mamouni", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 210.09863, + "y": 546.95 + }, + "width": 39.853973, + "height": 10.526819, + "page": 116 + } + ], + "sectionNumber": 1030, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "sandy loam (study ", + "textAfter": ")", + "comments": [], + "startOffset": 33, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fb5143631cfab5ea38d952ed8d9b902d", + "type": "CBI_author", + "value": "Seyfried", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 221.36339, + "y": 502.91 + }, + "width": 34.74446, + "height": 10.526819, + "page": 116 + } + ], + "sectionNumber": 1033, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "silt loam (study ", + "textAfter": ")", + "comments": [], + "startOffset": 36, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bb486a8851784e259c27d98014589e6d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 117 + } + ], + "sectionNumber": 2476, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1b552b5eeab7519b1843e0f550c9ca3c", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active\nsubstance, metabolites, degradation and reaction products", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 274.44434, + "y": 588.62 + }, + "width": 14.987701, + "height": 11.017679, + "page": 118 + } + ], + "sectionNumber": 1042, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 5698, + "endOffset": 5701, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b7bddcd542498daf58d75641eb01ab5a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 118 + } + ], + "sectionNumber": 2477, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "525571c951f734f5c8e73e372bf34d50", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 119 + } + ], + "sectionNumber": 2478, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ec08773c6bd3290f0aca06a51d99d721", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.8.6 Summary of exposure calculations and product assessment", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 285.40707, + "y": 600.86 + }, + "width": 54.00299, + "height": 11.017679, + "page": 119 + } + ], + "sectionNumber": 1098, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "study (21.9 %; ", + "textAfter": ", 1997). However,", + "comments": [], + "startOffset": 744, + "endOffset": 754, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4ac1a291abda744a6662f5aa8f184f54", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.6 Summary of exposure calculations and product assessment", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 575.66 + }, + "width": 17.615196, + "height": 11.017679, + "page": 119 + } + ], + "sectionNumber": 1098, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 898, + "endOffset": 901, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ea27814c31970e89e4ed8bb5b1f5d67f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 120 + } + ], + "sectionNumber": 2479, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "56d9b75dfc291467aa456c4ea836157d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 121 + } + ], + "sectionNumber": 2480, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6850fad3551027acbbdc9377c4616897", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 122 + } + ], + "sectionNumber": 2481, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "96066bc0f041ec342aed89a0be5ea7db", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 123 + } + ], + "sectionNumber": 2482, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "919156f1baf850c6860cb8777eb31a33", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 124 + } + ], + "sectionNumber": 2483, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "39547271626d63b7dba9c7a065323551", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 125 + } + ], + "sectionNumber": 2484, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "84ca1603f6d1da476f8d03f9d4ced518", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 126 + } + ], + "sectionNumber": 2485, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c8c45541ec6eaa5c40f21344afbad8f2", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 127 + } + ], + "sectionNumber": 2486, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4f6e7db9ed2845f927143c6300e70557", + "type": "CBI_author", + "value": "Anas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 78.504, + "y": 453.71 + }, + "width": 21.03952, + "height": 10.5318, + "page": 128 + } + ], + "sectionNumber": 1270, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " platyrhynchos", + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "76d76bc1ab05042e48877b6992491878", + "type": "CBI_author", + "value": "Anas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 78.504, + "y": 593.66 + }, + "width": 21.03952, + "height": 10.5318, + "page": 128 + } + ], + "sectionNumber": 1266, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " platyrhynchos", + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "92e6d9be5413e61df471d4fae7664821", + "type": "false_positive", + "value": "Short", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 523.67 + }, + "width": 22.583313, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1268, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 45, + "endOffset": 50, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "174d3b44d6de65db9d57890368ddbdcc", + "type": "false_positive", + "value": "Short", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 488.75 + }, + "width": 22.583313, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1269, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 46, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "61dc17490712ac26d49019c91aadf97e", + "type": "CBI_author", + "value": "Beavers, J.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 593.66 + }, + "width": 53.82788, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1266, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1983 b", + "comments": [], + "startOffset": 73, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "919b5d9960c499b00bc818301571076e", + "type": "CBI_author", + "value": "Beavers, J.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 488.75 + }, + "width": 53.82788, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1269, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1983 c", + "comments": [], + "startOffset": 88, + "endOffset": 101, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a5f2055cd16d6c1b257c173f75061593", + "type": "CBI_author", + "value": "Beavers, J.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 523.67 + }, + "width": 53.82788, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1268, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1983 a", + "comments": [], + "startOffset": 87, + "endOffset": 100, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "19b4540bc88b1e1e19c53e9b0cb75fcd", + "type": "CBI_author", + "value": "Beavers, J.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 453.71 + }, + "width": 53.82788, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1270, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1978 a", + "comments": [], + "startOffset": 111, + "endOffset": 124, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cdabd247305f57ecad6bdd34e7883fa4", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 453.71 + }, + "width": 43.77603, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1270, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0e65f174bff76d266442d5d99fd93efc", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 395.75 + }, + "width": 43.77603, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1271, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 44, + "endOffset": 53, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a374749c184cf93f14220e72bd85f86c", + "type": "CBI_author", + "value": "Beavers, J.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 558.71 + }, + "width": 53.82788, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1267, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1983 d", + "comments": [], + "startOffset": 74, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3583ccae64aff3e6c6926a3b9c0c1dcf", + "type": "CBI_author", + "value": "Anas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 78.504, + "y": 523.67 + }, + "width": 21.03952, + "height": 10.5318, + "page": 128 + } + ], + "sectionNumber": 1268, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " platyrhynchos", + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a11a8ca9a05533656be21d2e7b4df057", + "type": "CBI_author", + "value": "Beavers, J.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 395.75 + }, + "width": 53.82788, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1271, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1978 b", + "comments": [], + "startOffset": 100, + "endOffset": 113, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "973f04578d04343f1da7df760d1f820d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 2487, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "96f7ec75560cdce46000b06905cc0dd7", + "type": "CBI_author", + "value": "Kaczor, M.H.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 683.06 + }, + "width": 55.979218, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1277, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Miller", + "comments": [], + "startOffset": 134, + "endOffset": 146, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b68d4cfa18a103d13ee9e32b139898d7", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 2488, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "67dac98c9abb1539105c1d48d2bb5da4", + "type": "CBI_author", + "value": "Priestley, S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 440.90967, + "y": 602.54 + }, + "width": 48.93747, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1277, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Taylor, S. & ", + "textAfter": " 201", + "comments": [], + "startOffset": 217, + "endOffset": 230, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "200928085ce8adf6302ffc3ca6f2af59", + "type": "CBI_author", + "value": "Taylor, S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 602.54 + }, + "width": 40.660736, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1277, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Statistical Re-analysis by ", + "textAfter": " & Priestley,", + "comments": [], + "startOffset": 204, + "endOffset": 214, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "456dc0ea50fc3d9d05697e3e202b6925", + "type": "CBI_author", + "value": "Miller V.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 456.24808, + "y": 683.06 + }, + "width": 38.14087, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1277, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Kaczor, M.H. & ", + "textAfter": ",.L.C. 1999 029901", + "comments": [], + "startOffset": 149, + "endOffset": 158, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "308185d34aebbc031c70f0d8cfd16628", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 683.06 + }, + "width": 43.77603, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1277, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 46, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "76289a115e81cfcc89679cec91162463", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-2: Decision relevant endpoints for risk assessment of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 433.55 + }, + "width": 18.210884, + "height": 10.526819, + "page": 130 + } + ], + "sectionNumber": 1287, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "90e4a2c8b029277b4bf28d0363a79e06", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 130 + } + ], + "sectionNumber": 2489, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3ed461a8661a20e0efc695283db73a41", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-2: Decision relevant endpoints for risk assessment of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 461.75 + }, + "width": 18.210884, + "height": 10.526819, + "page": 130 + } + ], + "sectionNumber": 1286, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4a6ff493d8a003ec923394d7f6fecf03", + "type": "CBI_author", + "value": "Collins", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 638.78 + }, + "width": 29.814362, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1298, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995) CGA77102/007", + "comments": [], + "startOffset": 58, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4a3e345ddebf64c8c2acdfb02b48c72f", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 709.34 + }, + "width": 18.210884, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1299, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d3846355874efe39a260d8c796d29466", + "type": "CBI_author", + "value": "Buccafusco", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 709.34 + }, + "width": 47.46347, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1296, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1978) CGA24705/019", + "comments": [], + "startOffset": 57, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4a108075bee68bdb3be22bcc969b0b97", + "type": "CBI_author", + "value": "Collins", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 550.31 + }, + "width": 29.814362, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1301, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995) CGA77102/007", + "comments": [], + "startOffset": 61, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "af20c1993b664891c90d29b0be89d480", + "type": "CBI_author", + "value": "Spare", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 520.79 + }, + "width": 23.758606, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1302, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1983) CGA77102/000", + "comments": [], + "startOffset": 64, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "56d3f00a06c2e9e5a3ac9cbf05d5b176", + "type": "CBI_author", + "value": "Memmert", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 448.31 + }, + "width": 40.34198, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1304, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2006 85925", + "comments": [], + "startOffset": 85, + "endOffset": 92, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9c6d807ee7d1122640f9f0f650ea0106", + "type": "CBI_author", + "value": "Spare", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 609.26 + }, + "width": 23.758606, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1299, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1983) CGA77102/000", + "comments": [], + "startOffset": 60, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bedc6f37319ef3a897bc5498ae734f2b", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 2490, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "074feda81dc1487438ef9d777b037ca7", + "type": "false_positive", + "value": "Parent", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-4: Toxicity data for S-metolachlor and its metabolites potentially relevant for\nsurface water risk assessment", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 76.584, + "y": 684.62 + }, + "width": 26.547401, + "height": 10.526819, + "page": 132 + } + ], + "sectionNumber": 1311, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e302064e4b5760fb7969872b22584e3a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 132 + } + ], + "sectionNumber": 2491, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1f3cd32ebce14400e082ce0264ba271d", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.3 Summary of effects on arthropods", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 228.42961, + "y": 70.86401 + }, + "width": 36.350082, + "height": 11.017679, + "page": 133 + } + ], + "sectionNumber": 1358, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1423, + "endOffset": 1430, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0a597eb874a67d5da30758a09ee5dfe7", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 133 + } + ], + "sectionNumber": 2492, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aca9bd6d27db0fa5a88f1741635742e5", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.3 Summary of effects on arthropods", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 428.38, + "y": 159.41998 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 133 + } + ], + "sectionNumber": 1358, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 790, + "endOffset": 793, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fcca42ee44f6952d09289b50a3beaccc", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.3 Summary of effects on arthropods", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 222.69 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 133 + } + ], + "sectionNumber": 1358, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 437, + "endOffset": 440, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aae0e9eb86256cdadb5b592affee641a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 134 + } + ], + "sectionNumber": 2493, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0472326e994233fc577f29c60c95f40d", + "type": "false_positive", + "value": "Date", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 631.7 + }, + "width": 20.999695, + "height": 10.44714, + "page": 134 + } + ], + "sectionNumber": 1340, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 106, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2b6fb67005373ec0a89e252950416d38", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 643.22 + }, + "width": 32.03537, + "height": 10.44714, + "page": 134 + } + ], + "sectionNumber": 1340, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 99, + "endOffset": 105, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f313665c88e650b0b16378785e8ae276", + "type": "CBI_author", + "value": "Großmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.9.5 Summary of effects on earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 186.4224, + "y": 313.64996 + }, + "width": 48.008347, + "height": 11.017679, + "page": 135 + } + ], + "sectionNumber": 1376, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "formulation A9396B (", + "textAfter": ", 1997). The", + "comments": [], + "startOffset": 166, + "endOffset": 174, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0c8e306a9bfa6ddfbf8f447ce04753a8", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 135 + } + ], + "sectionNumber": 2494, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "63c47a87d5ced925e127e966c19c47bf", + "type": "false_positive", + "value": "Date", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 736.22 + }, + "width": 20.999695, + "height": 10.44714, + "page": 135 + } + ], + "sectionNumber": 1354, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 106, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6386ada75f0ef71fdf78ed6e48958189", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 747.74 + }, + "width": 32.03537, + "height": 10.44714, + "page": 135 + } + ], + "sectionNumber": 1354, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 99, + "endOffset": 105, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "28f03abbfc148ccf8cd919610f32008c", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 399.95 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1364, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014c 14", + "comments": [], + "startOffset": 106, + "endOffset": 118, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "71d8531843af0247b7add7122bdda4ce", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 306.93 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1366, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014e 14", + "comments": [], + "startOffset": 104, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "eb50418cd5da6ebd3037a15dd5808241", + "type": "CBI_author", + "value": "Forster A.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 108.900024 + }, + "width": 41.36789, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1371, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", Pease G.,", + "comments": [], + "startOffset": 142, + "endOffset": 152, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e6e047ce9828fe195212cdd4050c05e2", + "type": "CBI_author", + "value": "Milanesi F.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 97.38397 + }, + "width": 46.43753, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1371, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "A., Pease G., ", + "textAfter": " 2006 ER-06-KCB21", + "comments": [], + "startOffset": 164, + "endOffset": 175, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "115b8d5167745e5525e66aa75b41c81b", + "type": "CBI_author", + "value": "Müther J.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 492.95 + }, + "width": 39.33609, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1362, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2004 20041060/0", + "comments": [], + "startOffset": 102, + "endOffset": 111, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9ccd02c7dd6c7bfe3293383dce81479c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 2495, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b831cf1f4d1d090238079b0d256228ce", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 128.84363, + "y": 120.65997 + }, + "width": 22.603226, + "height": 10.44714, + "page": 136 + } + ], + "sectionNumber": 1370, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 10, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6135f49c43311b2782fbf6f8ebc24cef", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 353.49 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1365, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014d 14", + "comments": [], + "startOffset": 105, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "94527633f2ec7ab3fc30197edd8623cd", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 213.89996 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1368, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014g 14", + "comments": [], + "startOffset": 104, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "365f37efe456ec764163bda96393be66", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 167.46002 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1369, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014h 14", + "comments": [], + "startOffset": 105, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3e7f163fcc90ac26fb2b8197300e6406", + "type": "CBI_author", + "value": "Pease G.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 460.58765, + "y": 108.900024 + }, + "width": 35.979492, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1371, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Forster A., ", + "textAfter": ", Milanesi F.", + "comments": [], + "startOffset": 154, + "endOffset": 162, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "93b70d7f4635292f0c165764036c9062", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 260.49 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1367, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014f 14", + "comments": [], + "startOffset": 106, + "endOffset": 118, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6ba09936a8a11c69e607f579b3a74a22", + "type": "CBI_author", + "value": "Friedrich S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 446.39 + }, + "width": 48.10086, + "height": 10.526819, + "page": 136 + } + ], + "sectionNumber": 1363, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014b 14", + "comments": [], + "startOffset": 105, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c0591d35f759b0650b25ce359430ba32", + "type": "CBI_author", + "value": "McCormac", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 473.63 + }, + "width": 45.81006, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1381, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA51202_1001", + "comments": [], + "startOffset": 73, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7082590861443887a542233726374d60", + "type": "CBI_author", + "value": "McCormac", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 241.16998 + }, + "width": 45.81006, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1386, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 NOA436611_1001", + "comments": [], + "startOffset": 100, + "endOffset": 108, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f1b30d779354353eb255ae5a77260d82", + "type": "CBI_author", + "value": "Friedrich", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 380.61 + }, + "width": 37.613007, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1383, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA040172_1000", + "comments": [], + "startOffset": 105, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f0effedcf8909a92c335f27785f6eaf5", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 2496, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c6091847b640c28b8bcdbc3747cb7360", + "type": "CBI_author", + "value": "McCormac", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 520.19 + }, + "width": 45.81006, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1380, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA354743_1000", + "comments": [], + "startOffset": 108, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "09264d39ef0c7978e44719accbc111b0", + "type": "CBI_author", + "value": "Vinall", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 194.58002 + }, + "width": 25.840302, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1387, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2013 A9396G_1070", + "comments": [], + "startOffset": 108, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fc770ded17a9cee40664d2e2fb272a5b", + "type": "CBI_author", + "value": "Vinall", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 101.58002 + }, + "width": 25.840302, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1389, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA51202_1001", + "comments": [], + "startOffset": 110, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "edcbeee2ef53a2b83b27c39c0ac169e2", + "type": "CBI_author", + "value": "Friedrich", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 334.17 + }, + "width": 37.613007, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1384, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA050720_1001", + "comments": [], + "startOffset": 105, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3d986c97e751d869d47863837fa84671", + "type": "CBI_author", + "value": "McCormac", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 566.63 + }, + "width": 45.81006, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1379, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2013 A9396G_1070", + "comments": [], + "startOffset": 105, + "endOffset": 113, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "60874166fe2ffaa0cab54f2a22f47277", + "type": "CBI_author", + "value": "Friedrich", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 427.19 + }, + "width": 37.613007, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1382, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA368208_1001", + "comments": [], + "startOffset": 108, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c93f850a34ed3c73f1a3020c33ab4142", + "type": "CBI_author", + "value": "Vinall", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 148.14001 + }, + "width": 25.840302, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1388, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA354743_10010", + "comments": [], + "startOffset": 111, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6a1f7c9e21259aebb5a421d4527ba9ca", + "type": "CBI_author", + "value": "McCormac", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 287.61 + }, + "width": 45.81006, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1385, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA037735_1000", + "comments": [], + "startOffset": 108, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bb0a5744d5787230a8520d12c3670137", + "type": "CBI_author", + "value": "Hutcheson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 101.34003 + }, + "width": 43.638824, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1408, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA77102_1001", + "comments": [], + "startOffset": 66, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d351b7c2da2edd3d2ee1c65e9aef9a49", + "type": "CBI_author", + "value": "Vinall", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 590.78 + }, + "width": 25.840302, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1395, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA037735_1001", + "comments": [], + "startOffset": 90, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "84bf460b7db4684cc1e78f05bf5cad7b", + "type": "CBI_author", + "value": "Vinall", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 544.19 + }, + "width": 25.840302, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1396, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 NOA436611_1001", + "comments": [], + "startOffset": 91, + "endOffset": 97, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ad1bcaa625fbc4dfe3b7ef38d7357632", + "type": "CBI_author", + "value": "Seyfried", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 255.81 + }, + "width": 34.744507, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1403, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2000 CGA77102/057", + "comments": [], + "startOffset": 71, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "967cfa4581bb94718d79a6d8bc8e9223", + "type": "CBI_author", + "value": "Seyfried", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 150.89996 + }, + "width": 34.744507, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1407, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2000 CGA77102/057", + "comments": [], + "startOffset": 64, + "endOffset": 72, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "45cea8918bfd8f5c2785cce3737ff08d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 2497, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "411068fef44166ca8d867a767ee1afdc", + "type": "CBI_author", + "value": "Hutcheson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 191.58002 + }, + "width": 43.638824, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1406, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA77102_1001", + "comments": [], + "startOffset": 65, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "85033180a9d2c020c3cf72ea63ab1942", + "type": "CBI_author", + "value": "Chetram & Schuster", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 679.7 + }, + "width": 74.377045, + "height": 10.0905, + "page": 139 + } + ], + "sectionNumber": 1413, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1995a CGA77102/007", + "comments": [], + "startOffset": 130, + "endOffset": 148, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "459f62b92abe14dab61442555a7221cf", + "type": "CBI_author", + "value": "Chetram & Schuster", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 610.22 + }, + "width": 74.377045, + "height": 10.0905, + "page": 139 + } + ], + "sectionNumber": 1414, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1995b CGA77102/007", + "comments": [], + "startOffset": 138, + "endOffset": 156, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a24cd1d08471465c970402c822337c59", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 139 + } + ], + "sectionNumber": 2498, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8c3fd5bbb27e7deb57abe176035b6ae8", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 140 + } + ], + "sectionNumber": 2499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e6a18d0fa6e2ab2cc62f2cb86319f7c9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 141 + } + ], + "sectionNumber": 2500, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d2d201b403ff1a23710de025562b8516", + "type": "false_positive", + "value": "Wood", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11 Summary of product exposure and risk assessment", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 261.04907, + "y": 135.18 + }, + "width": 27.98172, + "height": 11.017679, + "page": 142 + } + ], + "sectionNumber": 1458, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1465, + "endOffset": 1469, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d66a549db80c08b31a6bcc03d852ec1d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 142 + } + ], + "sectionNumber": 2501, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "81e943a9fd6f88a85c75812b5ade60f3", + "type": "CBI_author", + "value": "Albuquerque", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.9.11 Summary of product exposure and risk assessment", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 316.96182, + "y": 97.26398 + }, + "width": 58.72174, + "height": 11.017679, + "page": 142 + } + ], + "sectionNumber": 1458, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "refinement report by ", + "textAfter": " (2014). Table", + "comments": [], + "startOffset": 1635, + "endOffset": 1646, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d4ecc28f8d6cc584bfe072bfd9b387cc", + "type": "false_positive", + "value": "Wood", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11 Summary of product exposure and risk assessment", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 469.95856, + "y": 758.92 + }, + "width": 29.096802, + "height": 10.929359, + "page": 143 + } + ], + "sectionNumber": 1458, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1734, + "endOffset": 1738, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "deb9f6d272be26fe0f531eb45dbc54a2", + "type": "false_positive", + "value": "Wood", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-11: Refined long-term risk assessment for the relevant focal species Wood pigeon considering PD for the early post-emergence use of A9396G in maize", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 207.41, + "y": 576.86 + }, + "width": 25.51155, + "height": 10.526819, + "page": 143 + } + ], + "sectionNumber": 1456, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 83, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d56a32985d928e3b625d602006837235", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 143 + } + ], + "sectionNumber": 2502, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8657ac63d14702a32306ecc73a018265", + "type": "false_positive", + "value": "Wood", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11 Summary of product exposure and risk assessment", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 497.36407, + "y": 491.15 + }, + "width": 27.760986, + "height": 11.017679, + "page": 143 + } + ], + "sectionNumber": 1458, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1991, + "endOffset": 1995, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ee6dd7216a252e3b5429f832718cb972", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 144 + } + ], + "sectionNumber": 2503, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "90f6e8050e4c0d4e894813fbbbe6e907", + "type": "false_positive", + "value": "Large", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-13: Long-term risk to mammals from S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 241.25, + "y": 313.28998 + }, + "width": 24.127136, + "height": 10.526819, + "page": 144 + } + ], + "sectionNumber": 1480, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 102, + "endOffset": 107, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c5f41aa9208cb743b6dbe4ead66f4db4", + "type": "false_positive", + "value": "Large", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-13: Long-term risk to mammals from S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 241.25, + "y": 642.02 + }, + "width": 24.127136, + "height": 10.526819, + "page": 145 + } + ], + "sectionNumber": 1491, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 23, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a06255ef06b0e5d8f767836231673b0e", + "type": "false_positive", + "value": "Wood mouse", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-14: Refined long-term risk assessment for the relevant focal species Wood\nmouse considering 90th %tile PT for the early postemergence use of A9396G in maize", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 232.6712, + "y": 122.58002 + }, + "width": 25.421936, + "height": 10.526819, + "page": 145 + }, + { + "topLeft": { + "x": 193.13, + "y": 111.06 + }, + "width": 27.00557, + "height": 10.526819, + "page": 145 + } + ], + "sectionNumber": 1497, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 81, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aaea7a1c94b166f7c228903e55c8340d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 145 + } + ], + "sectionNumber": 2504, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1953958627070d3ab63bbf6fd9871fc6", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 146 + } + ], + "sectionNumber": 2505, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "94c4efbae8fa5ee2273f0b25136204b8", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-15: Application rate to endpoint ratios for birds and mammals exposed to\nA9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 357.43, + "y": 643.34 + }, + "width": 47.227142, + "height": 10.44714, + "page": 146 + } + ], + "sectionNumber": 1500, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 126, + "endOffset": 135, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8d3fa7b2bb9409ecb2f22fb101afbae1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 147 + } + ], + "sectionNumber": 2506, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8ae452eb77b786ff158859051c87b6f1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 148 + } + ], + "sectionNumber": 2507, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d830ffe14f8609f424128ab823e2adb3", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 149 + } + ], + "sectionNumber": 2508, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ab7f05950c2a0fa85d169609699b89cc", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-17: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 217.58, + "y": 469.1 + }, + "width": 17.53299, + "height": 10.018499, + "page": 149 + } + ], + "sectionNumber": 1524, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ffa83bab22ebc54366d5e477ac835816", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-17: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 312.77, + "y": 474.26 + }, + "width": 17.53302, + "height": 10.018499, + "page": 149 + } + ], + "sectionNumber": 1524, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 17, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5c8487b44151cf6407db72678ccb69d8", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 150 + } + ], + "sectionNumber": 2509, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "baefd4cae0dd16fdc2044361f917b8ef", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-18: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10, 25m buffer + 80% run-off mitigation", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 194.06, + "y": 463.82 + }, + "width": 19.246704, + "height": 10.44714, + "page": 150 + } + ], + "sectionNumber": 1548, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "37425942f523f97588fbdbc7bcfac1e3", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-18: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10, 25m buffer + 80% run-off mitigation", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 283.25, + "y": 469.58 + }, + "width": 19.246765, + "height": 10.44714, + "page": 150 + } + ], + "sectionNumber": 1548, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 17, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3dddfb601169f1cc1e0b25c64e15dff9", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-19: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 193.34, + "y": 463.82 + }, + "width": 19.246704, + "height": 10.44714, + "page": 151 + } + ], + "sectionNumber": 1567, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "02a410e2d5fe5827b050f0728ee09fd8", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-19: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 281.81, + "y": 469.58 + }, + "width": 19.246765, + "height": 10.44714, + "page": 151 + } + ], + "sectionNumber": 1567, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 17, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4b4e1a55cbdeca8264f0ecef5d7ca3bf", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 151 + } + ], + "sectionNumber": 2510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "369dd1295cee9ea3834254cc0fc9bb9a", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-20: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10, 20m buffer + 80% run-off mitigation", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 194.06, + "y": 463.82 + }, + "width": 19.246704, + "height": 10.44714, + "page": 152 + } + ], + "sectionNumber": 1591, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "80364b18f92476edc693d6aa8d14c452", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-20: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10, 20m buffer + 80% run-off mitigation", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 283.25, + "y": 469.58 + }, + "width": 19.246765, + "height": 10.44714, + "page": 152 + } + ], + "sectionNumber": 1591, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 17, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c9331ccfa58c17013294597543c67bc1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 152 + } + ], + "sectionNumber": 2511, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "16bc2a38b0fee937912350dbed6987f2", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 153 + } + ], + "sectionNumber": 2512, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2bd3384d982ca2eb8b0a9df63f55d705", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 154 + } + ], + "sectionNumber": 2513, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fdf9080492db1cd8089129be38be516d", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11.2 Summary of the risk assessment for non-target arthropods", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 210.79872, + "y": 707.9 + }, + "width": 36.460495, + "height": 11.017679, + "page": 155 + } + ], + "sectionNumber": 1632, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 280, + "endOffset": 287, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7b91f1f5f831b899642b5ee82f714abc", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 155 + } + ], + "sectionNumber": 2514, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "62f7b76d37fb36649d9611b3c4b48e57", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 156 + } + ], + "sectionNumber": 2515, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "dcfb8e3b77e8c3235ce47cf121d94d52", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 157 + } + ], + "sectionNumber": 2516, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "451fa1bc60a152f426a0c57da16f1b7c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 158 + } + ], + "sectionNumber": 2517, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "815f90f57f611a040bd118c5df26fc59", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 159 + } + ], + "sectionNumber": 2518, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "91ae57117121665f3d1e91e6fed9f910", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 160 + } + ], + "sectionNumber": 2519, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b869c220a82609f8e49f6c82e237fe43", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 161 + } + ], + "sectionNumber": 2520, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a08369cdbdcef8ad25c8fe28ca07f224", + "type": "false_positive", + "value": "Lower HC5", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-28: HR5 values calculated for seedling emergence of non-target plants exposed\nto A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 281.83, + "y": 273.81 + }, + "width": 39.168976, + "height": 10.0905, + "page": 162 + }, + { + "topLeft": { + "x": 319.99, + "y": 273.33002 + }, + "width": 4.0, + "height": 8.727, + "page": 162 + } + ], + "sectionNumber": 1802, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 54, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4817e987baf1620ea00d221e5f5c96f7", + "type": "false_positive", + "value": "Anderson-Darling test", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-28: HR5 values calculated for seedling emergence of non-target plants exposed\nto A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 446.911, + "y": 272.73004 + }, + "width": 26.506012, + "height": 10.0905, + "page": 162 + }, + { + "topLeft": { + "x": 361.51, + "y": 262.52997 + }, + "width": 58.822083, + "height": 10.0905, + "page": 162 + } + ], + "sectionNumber": 1802, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 106, + "endOffset": 127, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "20ba64d50c4e16df8a20b273dd21ba24", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11.5 Summary of the risk assessment for non-target terrestrial plants", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 287.10184, + "y": 404.63 + }, + "width": 17.493774, + "height": 11.017679, + "page": 162 + } + ], + "sectionNumber": 1830, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 142, + "endOffset": 145, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "44747c39565920f65fdcbf5ccb05556c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 162 + } + ], + "sectionNumber": 2521, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5579bd783cc9d636941c7c97fb6c57ff", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 163 + } + ], + "sectionNumber": 2522, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e6a277e5e0cadd0995a8ed84aaa7e87e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 164 + } + ], + "sectionNumber": 2523, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6bda6cc865b4c69e4abdec2c8610dc90", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 165 + } + ], + "sectionNumber": 2524, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "76f86b96f349b46961fcc83e2ecd6642", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 166 + } + ], + "sectionNumber": 2525, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "02e232f298e4e884c2da78e585240b1c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 167 + } + ], + "sectionNumber": 2526, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "96c8b993999177d7694cb789d4356d39", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 168 + } + ], + "sectionNumber": 2527, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0fcff63dbd004c3d73db08a21f7e4237", + "type": "false_positive", + "value": "May", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Proposed notes assigned to an entry:", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 184.28625, + "y": 746.42 + }, + "width": 21.269455, + "height": 11.017679, + "page": 169 + } + ], + "sectionNumber": 1944, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 455, + "endOffset": 458, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "78fa62c6039ee5fe15d54a2e6e6d56e1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 169 + } + ], + "sectionNumber": 2528, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6ebaab442994ace9b707aa6d2fac82a5", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 170 + } + ], + "sectionNumber": 2529, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "90391bc7cdf63077448ca6a28c28adf4", + "type": "CBI_author", + "value": "Keller A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 441.7, + "y": 352.41 + }, + "width": 35.65088, + "height": 10.526819, + "page": 170 + } + ], + "sectionNumber": 1947, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 72, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "181fe3ea5d8d3169c203ee1b5c736653", + "type": "CBI_author", + "value": "Clark A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 441.6295, + "y": 258.81 + }, + "width": 32.77243, + "height": 10.526819, + "page": 170 + } + ], + "sectionNumber": 1948, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "6.5% (d14) (", + "textAfter": ", 1995", + "comments": [], + "startOffset": 58, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d2effe3869cec817ec4b45eb90dd632e", + "type": "CBI_author", + "value": "Clark A", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 469.90594, + "y": 167.94 + }, + "width": 32.77243, + "height": 10.526819, + "page": 170 + } + ], + "sectionNumber": 1949, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "120 d) (", + "textAfter": ", 1995", + "comments": [], + "startOffset": 111, + "endOffset": 118, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5f1bcd43bd9041727f1cbc97f8119ee3", + "type": "CBI_author", + "value": "Hein W.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.6593, + "y": 450.95 + }, + "width": 34.794342, + "height": 10.526819, + "page": 170 + } + ], + "sectionNumber": 1946, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "21.1% (d153) (", + "textAfter": ", 2007) lysimeter:", + "comments": [], + "startOffset": 68, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c42dbc61969852c65b91f1b8a2d8e219", + "type": "CBI_author", + "value": "Hein W.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.70303, + "y": 522.35 + }, + "width": 34.794342, + "height": 10.526819, + "page": 171 + } + ], + "sectionNumber": 1954, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "9.1% (d153) (", + "textAfter": ", 2007) lysimeter:", + "comments": [], + "startOffset": 67, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b3ab48b4eea30a5d5b7055301e2c69a2", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 464.87613, + "y": 427.43 + }, + "width": 49.166656, + "height": 10.526819, + "page": 171 + } + ], + "sectionNumber": 1955, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "28 d) (", + "textAfter": ", 1997) lysimeter:", + "comments": [], + "startOffset": 72, + "endOffset": 82, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "abab20e15aa47739a863b28523ac08c9", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 171 + } + ], + "sectionNumber": 2530, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "af81cd3ba822fa8e1dbd33d708e51f11", + "type": "CBI_author", + "value": "Morgenroth U", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.74, + "y": 707.06 + }, + "width": 58.1904, + "height": 10.526819, + "page": 171 + } + ], + "sectionNumber": 1952, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "7.6% (d120) (", + "textAfter": ", 1997) lysimeter:", + "comments": [], + "startOffset": 66, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "55d89a9d8c5039a4c1b3787e3bf9bb16", + "type": "CBI_author", + "value": "Kitschmann P", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.02, + "y": 618.86 + }, + "width": 49.156647, + "height": 10.526819, + "page": 171 + }, + { + "topLeft": { + "x": 414.1, + "y": 607.34 + }, + "width": 6.5377502, + "height": 10.526819, + "page": 171 + } + ], + "sectionNumber": 1953, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "181 d) (", + "textAfter": ", 1997a) lysimeter:", + "comments": [], + "startOffset": 65, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a37517192a792cb08a3d09fddc19d9d3", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 172 + } + ], + "sectionNumber": 2531, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2332a887b20571340364d9af9f0dda62", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 364.06702, + "y": 413.75 + }, + "width": 17.493774, + "height": 11.017679, + "page": 173 + } + ], + "sectionNumber": 1999, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 539, + "endOffset": 542, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7483e89e4be8ebe6860e54fe1703f3ac", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.11-2: Summary of the groundwater risk assessment (values ≥ 10 µg/L are highlighted in grey)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 233.69, + "y": 357.93 + }, + "width": 20.493988, + "height": 10.018499, + "page": 173 + } + ], + "sectionNumber": 1972, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 35, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1a81902030e03dbe6af297102ca99e99", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 173 + } + ], + "sectionNumber": 2532, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a2b71aaf224ae108c3f491f4ea8b9980", + "type": "CBI_author", + "value": "Tessier", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 255.60605, + "y": 151.14001 + }, + "width": 26.812012, + "height": 10.0905, + "page": 174 + } + ], + "sectionNumber": 1999, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "data taken from ", + "textAfter": ", 2014 4", + "comments": [], + "startOffset": 864, + "endOffset": 871, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4657fb8f52a8925d9868fee211c4ed60", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.11-2: Summary of the groundwater risk assessment (values ≥ 10 µg/L are highlighted in grey)", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 233.69, + "y": 757.24 + }, + "width": 20.493988, + "height": 10.018499, + "page": 174 + } + ], + "sectionNumber": 1980, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 35, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fc39b13ec6a52c74be6a827bcc7cec3f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 174 + } + ], + "sectionNumber": 2533, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "718c5b22d6cc7e71b668ff8f01510eb3", + "type": "CBI_author", + "value": "Amic", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 255.60605, + "y": 140.82 + }, + "width": 20.818024, + "height": 10.0905, + "page": 174 + } + ], + "sectionNumber": 1999, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "data taken from ", + "textAfter": ", 2014 5", + "comments": [], + "startOffset": 925, + "endOffset": 929, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e6a80ef87f2d45741475990e8971e38e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 175 + } + ], + "sectionNumber": 2534, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "537fb2fca042b992943f743ca0e74f20", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 82.21584, + "y": 86.583984 + }, + "width": 17.615196, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3222, + "endOffset": 3225, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ac7c6e403f6c5999f2f06765a851e5a6", + "type": "CBI_author", + "value": "Rüegg", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 212.65689, + "y": 478.67 + }, + "width": 29.68193, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Rüegg (1997) and ", + "textAfter": " (1997b) only", + "comments": [], + "startOffset": 397, + "endOffset": 402, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fa25030fcbc780f0844dd2a5c721da5b", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 384.47998, + "y": 175.14001 + }, + "width": 14.987671, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2622, + "endOffset": 2625, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "809048a355084851e1e842315cc9c86e", + "type": "CBI_author", + "value": "Schwab", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 218.94629, + "y": 390.21 + }, + "width": 35.787064, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Schwab (1997a) and ", + "textAfter": " (1997b) are", + "comments": [], + "startOffset": 986, + "endOffset": 992, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e4c92dc29c65c6b4e5e3c575db18524b", + "type": "CBI_author", + "value": "Corbin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 124.664635, + "y": 213.06 + }, + "width": 31.580818, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "CGA50267. The studies ", + "textAfter": " (2014) and", + "comments": [], + "startOffset": 2263, + "endOffset": 2269, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e9d9397c9c0c3b80ba9a6797503a6571", + "type": "CBI_author", + "value": "Cordingley", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 119.862236, + "y": 314.25 + }, + "width": 50.635857, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "CGA354743. The study ", + "textAfter": " (2005) was", + "comments": [], + "startOffset": 1542, + "endOffset": 1552, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6a96dc6149a0addba1a03d56887b456e", + "type": "CBI_author", + "value": "Schwab", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 124.78609, + "y": 390.21 + }, + "width": 35.89746, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "CGA354743. The studies ", + "textAfter": " (1997a) and", + "comments": [], + "startOffset": 967, + "endOffset": 973, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1920d3d48bbb856971fe46571fb9f110", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 176 + } + ], + "sectionNumber": 2535, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "eea050960d5329d39cdc7f9a3956a81a", + "type": "CBI_author", + "value": "Rüegg", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 126.68496, + "y": 478.67 + }, + "width": 29.681938, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "activity. The studies ", + "textAfter": " (1997) and", + "comments": [], + "startOffset": 380, + "endOffset": 385, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6e954422d812793999beec6698271f8d", + "type": "CBI_author", + "value": "Dupen", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 209.42978, + "y": 213.06 + }, + "width": 30.377457, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Corbin (2014) and ", + "textAfter": " (2014) were", + "comments": [], + "startOffset": 2281, + "endOffset": 2286, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8ae997cdfff9eb6502296379805c1615", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 394.59274, + "y": 503.99 + }, + "width": 17.504791, + "height": 11.017679, + "page": 176 + } + ], + "sectionNumber": 2047, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 236, + "endOffset": 239, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d09c3d36c8f319fb831c5e0e8dcd47e5", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 177 + } + ], + "sectionNumber": 2536, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8d4701444cd0b63cf3aa3904816d6524", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 178 + } + ], + "sectionNumber": 2537, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "73f604dca984ff37ac39d0ee8a9717bf", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 179 + } + ], + "sectionNumber": 2538, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c8f58a44630e080e513daac46b9ff156", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 180 + } + ], + "sectionNumber": 2539, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f87cf33ce880609d88ed40276c7377d1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 181 + } + ], + "sectionNumber": 2540, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9f7a35f942c4ffe287ef3572dfd96c28", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 182 + } + ], + "sectionNumber": 2541, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "685815fea458e63e502442d53285bdb1", + "type": "published_information", + "value": "edition", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.5 STEP 5: Refined risk assessment", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 148.27199, + "y": 698.3 + }, + "width": 25.884995, + "height": 10.0905, + "page": 183 + } + ], + "sectionNumber": 2127, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4092, + "endOffset": 4099, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "545cfc4ce3d77d4773ab33872f4ec63d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 183 + } + ], + "sectionNumber": 2542, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "29d75793c3b1c863120e257ed16b2e49", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 184 + } + ], + "sectionNumber": 2543, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e417136af1005fc830fcfd619fff933f", + "type": "CBI_author", + "value": "Anon", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.12.3 Mammalian toxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 226.7074, + "y": 335.85 + }, + "width": 25.475693, + "height": 11.017679, + "page": 184 + } + ], + "sectionNumber": 2135, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "for renewal (", + "textAfter": ". 2014, ASB2016-681,", + "comments": [], + "startOffset": 61, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0dd85b3af8ce0cca0940e5a51878ece1", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 185 + } + ], + "sectionNumber": 2544, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f54ee002f5587c687f32172a6696d6c3", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:image", + "color": [ + 0.7411765, + 0.8392157, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 92.9, + "y": 373.57 + }, + "width": 409.55, + "height": 121.55, + "page": 185 + } + ], + "sectionNumber": 2135, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b2ea5fd3a3b80f8d074bd1de25990249", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:formula", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 158.5, + "y": 538.22 + }, + "width": 278.2, + "height": 232.8, + "page": 185 + } + ], + "sectionNumber": 2135, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5979ab85f7c4b3b0132e310d28f9c4fe", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 186 + } + ], + "sectionNumber": 2545, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "efae9375b688994ed08a1a1fa9e4575c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 187 + } + ], + "sectionNumber": 2546, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bf1163c1d65a0356ad9714842d49bf08", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 188 + } + ], + "sectionNumber": 2547, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0d916f243a2ce9838919b57b068cc297", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 189 + } + ], + "sectionNumber": 2548, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "60f55aeb2782eed6eae0e97b761b4646", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 190 + } + ], + "sectionNumber": 2549, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "afc024dc831767dec3ffbebf06d43ab4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 191 + } + ], + "sectionNumber": 2550, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aefbd1a44863c9db26937db7bfbd2d2f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 192 + } + ], + "sectionNumber": 2551, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a666fc78a637f993e0d580d286d34024", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 193 + } + ], + "sectionNumber": 2552, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "51d41e4f07c27764f1122049fc6a506c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 194 + } + ], + "sectionNumber": 2553, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "11fec3ac84568cf9bbb7e4b6700507c5", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 542.7643, + "y": 422.87 + }, + "width": 41.770752, + "height": 11.017679, + "page": 195 + } + ], + "sectionNumber": 2201, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "is negligible. Therefore, ", + "textAfter": " as RMS", + "comments": [], + "startOffset": 751, + "endOffset": 758, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "59a72edc536f96678e430899a6230a75", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 195 + } + ], + "sectionNumber": 2554, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b62466d922caf4bac1d9eb2f0e3f5457", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 542.771, + "y": 104.56 + }, + "width": 41.770752, + "height": 11.017679, + "page": 195 + } + ], + "sectionNumber": 2205, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "is negligible. Therefore, ", + "textAfter": " as RMS", + "comments": [], + "startOffset": 667, + "endOffset": 674, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "03f80df13cb12fe4e5f511721fc7c4cd", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 196 + } + ], + "sectionNumber": 2555, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ca31c7f6dec137fc5e3a85ae2c911bd0", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 542.7643, + "y": 218.46002 + }, + "width": 41.770752, + "height": 11.017679, + "page": 196 + } + ], + "sectionNumber": 2212, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "is negligible. Therefore, ", + "textAfter": " as RMS", + "comments": [], + "startOffset": 757, + "endOffset": 764, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fca5669057432c6a6177532e0ca80a5d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 197 + } + ], + "sectionNumber": 2556, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b72bba0fa7f1de653cf14440730f3617", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 198 + } + ], + "sectionNumber": 2557, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "57784f6c9536c53d6c1e86d92b1ed882", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 199 + } + ], + "sectionNumber": 2558, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "23b77ae9c3a40ab4e612e42d7f37b9fd", + "type": "false_positive", + "value": "down", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 316.0897, + "y": 340.67 + }, + "width": 25.475647, + "height": 11.017679, + "page": 199 + } + ], + "sectionNumber": 2231, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 115, + "endOffset": 119, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c32e68aac3ac734d3e803c50aa5764ea", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 200 + } + ], + "sectionNumber": 2559, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b6299201039212c37b288d046f26ee0", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 201 + } + ], + "sectionNumber": 2560, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "beb2dec787a01881542bb76cb7668531", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 202 + } + ], + "sectionNumber": 2561, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b83a5629e65c34bc43da4522cd11dd26", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.07, + "y": 208.97998 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 203 + } + ], + "sectionNumber": 2248, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1464, + "endOffset": 1467, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bf82ab0712a60be7c5f7da8ffac5b09c", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 203 + } + ], + "sectionNumber": 2562, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6ce4146c7743a47979f5e903f5357819", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 204 + } + ], + "sectionNumber": 2563, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e5950419b99772a124f3b6f9968fb0f9", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.1.3 Proposal – Low risk active substance", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 198.86, + "y": 230.48999 + }, + "width": 23.692001, + "height": 11.358, + "page": 205 + } + ], + "sectionNumber": 2264, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 17, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "13ea5072286b78003b83fc46da151e82", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.3 Proposal – Low risk active substance", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 205.02002 + }, + "width": 21.688957, + "height": 10.929359, + "page": 205 + } + ], + "sectionNumber": 2258, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 3, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9a13bde7d1a2f25bf21f8047b7f5fa43", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 205 + } + ], + "sectionNumber": 2564, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f3b4265832e6bddc75c846c483507368", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 206 + } + ], + "sectionNumber": 2565, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a498642e59c811ed6cfae81d746f7308", + "type": "false_positive", + "value": "List of", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 141.74, + "y": 372.47 + }, + "width": 34.024002, + "height": 11.358, + "page": 206 + } + ], + "sectionNumber": 2314, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6, + "endOffset": 13, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4700d10d9305a48bea7c6a1109d3374a", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 167.94 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 207 + } + ], + "sectionNumber": 2280, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 139, + "endOffset": 142, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "adae0fd0a663bd88d829f3debe85e1f6", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 237.69 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 207 + } + ], + "sectionNumber": 2279, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 209, + "endOffset": 212, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8ecf17c53afda9919009db444a95f4c4", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 207 + } + ], + "sectionNumber": 2566, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "aed26fd7262bee7829a561cf9ab73642", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 110.79999 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 207 + } + ], + "sectionNumber": 2281, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 194, + "endOffset": 197, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b94e9bfb213cd660000fe3ee3b6b695a", + "type": "false_positive", + "value": "Gold", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 137.50366, + "y": 113.82001 + }, + "width": 23.06897, + "height": 11.017679, + "page": 207 + } + ], + "sectionNumber": 2281, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 13, + "endOffset": 17, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4e0326c95975cc7f538d44f0c7e0be03", + "type": "false_positive", + "value": "Gold", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 137.50366, + "y": 170.94 + }, + "width": 23.06897, + "height": 11.017679, + "page": 207 + } + ], + "sectionNumber": 2280, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 13, + "endOffset": 17, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7c1de04297a29a636ae0a2d7cbe281a2", + "type": "CBI_author", + "value": "Meseguer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 127.280624, + "y": 375.83 + }, + "width": 44.47554, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2286, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the method by ", + "textAfter": " (2014) for", + "comments": [], + "startOffset": 54, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0f0a772c887532bde1be89edf2a3e799", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 385.43 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2286, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 154, + "endOffset": 157, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a773098d8ad6876de0f8b28e8aeda11b", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 284.01 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2288, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 281, + "endOffset": 284, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4cbe29fa066e73eaad03e4eed5d12945", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 131.94 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2290, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 159, + "endOffset": 162, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "dd4b168a2bd70efbddddd42e745ee1a7", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 76.32, + "y": 128.94 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2290, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 3, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7b667f3a0939291fef7ae3b826bf16ba", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 208 + } + ], + "sectionNumber": 2567, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "33ce615a1b3aaa63c49acf4e48e5ecff", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 209 + } + ], + "sectionNumber": 2568, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "7d134d0f230890fb0019822d84389d2b", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 224.37 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 209 + } + ], + "sectionNumber": 2297, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 198, + "endOffset": 201, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3f7ccda15cae988a2e49e24cfccd5363", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 426.95 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 209 + } + ], + "sectionNumber": 2294, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 217, + "endOffset": 220, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "085953cd66b346dbd310b847f484baef", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 76.32, + "y": 423.95 + }, + "width": 15.102402, + "height": 11.017679, + "page": 209 + } + ], + "sectionNumber": 2294, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 3, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "122f1754953360317b24886a9303a90e", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 154.5 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 209 + } + ], + "sectionNumber": 2298, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 300, + "endOffset": 303, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "007130b7fd17367c019ae5b9b16df445", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 306.69 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 209 + } + ], + "sectionNumber": 2296, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 243, + "endOffset": 246, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fed9197e6b069a28d26eac3df13e18f5", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 221.76097, + "y": 281.85 + }, + "width": 54.124466, + "height": 11.017679, + "page": 210 + } + ], + "sectionNumber": 2305, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "metabolism study (", + "textAfter": ", 1997) in", + "comments": [], + "startOffset": 118, + "endOffset": 128, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2ad800679051391d0d86673d67e99ae5", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 76.32, + "y": 151.85999 + }, + "width": 46.30818, + "height": 11.017679, + "page": 210 + } + ], + "sectionNumber": 2306, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 363, + "endOffset": 373, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b0f6cf156c5a03b95fc54e146cf7800f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 210 + } + ], + "sectionNumber": 2569, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5289f21027d971eb826d53c8622370b8", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 211 + } + ], + "sectionNumber": 2570, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "83506ab57d0601994c38b43b4b43ee66", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.5 Issues that could not be finalised", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 323.59, + "y": 580.46 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 212 + } + ], + "sectionNumber": 2315, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 226, + "endOffset": 229, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ec9de5bdfe493e4793338c11b720ab3e", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 212 + } + ], + "sectionNumber": 2571, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "148453cc2fb429df78b1a587932f9e6f", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 213 + } + ], + "sectionNumber": 2572, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "15b483d4a76fe2d4d7f84d99c479dde4", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.6 Critical areas of concern", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 323.47, + "y": 693.5 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 213 + } + ], + "sectionNumber": 2317, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 171, + "endOffset": 174, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b8ba1e1918bfbcc97988753b087c8382", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.6 Critical areas of concern", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 323.47, + "y": 650.06 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 213 + } + ], + "sectionNumber": 2317, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 301, + "endOffset": 304, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3b92ae13e06ceec416b529cc5e1ba988", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 214 + } + ], + "sectionNumber": 2573, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "71e79c60808afeec9dc9bce2111a0069", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 215 + } + ], + "sectionNumber": 2574, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1e2062a74b12771eec0eb0fe80859e28", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 216 + } + ], + "sectionNumber": 2575, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d3f1a4be728ae635306ab81d12d7d432", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 217 + } + ], + "sectionNumber": 2576, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "161ac1e95b44e5aa5d6ff1b30b99dc70", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.3 Rational for the conditions and restrictions to be associated with the approval or authorisation(s), as appropriate", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 313.27, + "y": 633.62 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 217 + } + ], + "sectionNumber": 2351, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 253, + "endOffset": 256, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "425252f667ce000545c1f7b05f1fca5a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 218 + } + ], + "sectionNumber": 2577, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "648a9e2891ad86aec002416dbdc3a45a", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 219 + } + ], + "sectionNumber": 2578, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "07901828b6075af48303c7b7f376087d", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 459.34, + "y": 795.04 + }, + "width": 43.519257, + "height": 10.526819, + "page": 220 + } + ], + "sectionNumber": 2579, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8b52b13ee7cd21c845b668247d07f6e5", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.4.2 Reference list", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 302.81, + "y": 288.81 + }, + "width": 58.888, + "height": 10.0905, + "page": 221 + } + ], + "sectionNumber": 2356, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 160, + "endOffset": 172, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ad7d944d8204dd033a64ef1fa8ce314a", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4.2 Reference list", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 434.07562, + "y": 462.62 + }, + "width": 46.164642, + "height": 11.017679, + "page": 221 + } + ], + "sectionNumber": 2360, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 106, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "029ea7d8c8ae16e0fabdfb4b3e3d2f3a", + "type": "recommendation_CBI_author", + "value": "EFSA PPR", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "Table in: 3.4.2 Reference list", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 302.81, + "y": 215.34 + }, + "width": 41.392, + "height": 10.0905, + "page": 221 + } + ], + "sectionNumber": 2358, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " Panel (EFSA", + "comments": [], + "startOffset": 16, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "974abb057979ab9cd96a43143b75a839", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Header", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 705.94, + "y": 548.44 + }, + "width": 43.519226, + "height": 10.526819, + "page": 221 + } + ], + "sectionNumber": 2580, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "da4fc58e363bf80d7edd7f829027c3cf", + "type": "hint_only", + "value": "author", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.4.2 Reference list", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 221.54, + "y": 422.75 + }, + "width": 28.873001, + "height": 10.018499, + "page": 221 + } + ], + "sectionNumber": 2354, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 119, + "endOffset": 125, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "559a23796e46469f275512deddc60eb0", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.4.2 Reference list", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 377.69, + "y": 163.5 + }, + "width": 51.804993, + "height": 10.0905, + "page": 221 + } + ], + "sectionNumber": 2358, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 212, + "endOffset": 224, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0a2172ac7092ec7bdc719c4b927c37e1", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.4.2 Reference list", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 410.36307, + "y": 364.67 + }, + "width": 14.536011, + "height": 10.0905, + "page": 221 + } + ], + "sectionNumber": 2355, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 46, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "79cf0330c34eee80cb8d2cf37eefd1d2", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4.2 Reference list", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 227.28534, + "y": 462.62 + }, + "width": 46.164642, + "height": 11.017679, + "page": 221 + } + ], + "sectionNumber": 2360, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 59, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b0d1511bb7b12a2c0a31c5b431fa45c0", + "type": "false_positive", + "value": "PPR", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4.2 Reference list", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 646.05835, + "y": 462.62 + }, + "width": 20.496704, + "height": 11.017679, + "page": 221 + } + ], + "sectionNumber": 2360, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 151, + "endOffset": 154, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c12ddc7ce71012a4ebd1aa6fe4c02607", + "type": "CBI_author", + "value": "Mostert", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 60.664 + }, + "width": 32.075226, + "height": 10.526819, + "page": 21 + } + ], + "sectionNumber": 79, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1996", + "comments": [], + "startOffset": 78, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "97c2f4fd926f90025fca4b412c6b2da1", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 297.81 + }, + "width": 33.2406, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 90, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005) ASB2016-77", + "comments": [], + "startOffset": 137, + "endOffset": 145, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "122cb8cc38d8f90e5ec3bc3c020357d4", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 454.43 + }, + "width": 33.2406, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 87, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005) ASB2016-77", + "comments": [], + "startOffset": 139, + "endOffset": 147, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1ba239871e99061ca96e32c172596725", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 222.69 + }, + "width": 33.2406, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 91, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Tribolet (1998) MET2000-145 ", + "textAfter": " (1998) ASB2015-72", + "comments": [], + "startOffset": 105, + "endOffset": 113, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4a39eaf3b10577bc32a45d5e8ebf75e9", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 379.17 + }, + "width": 33.2406, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 88, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Tribolet (1998) MET2000-145 ", + "textAfter": " (1998) ASB2015-72", + "comments": [], + "startOffset": 107, + "endOffset": 115, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2bd50c69961919d7d678455f4623be83", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 245.60999 + }, + "width": 33.2406, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 91, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) MET2000-145", + "comments": [], + "startOffset": 77, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c62eabdbd695cefdfb9a08e3f167937a", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 402.23 + }, + "width": 33.2406, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 88, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) MET2000-145", + "comments": [], + "startOffset": 79, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "671d568276d33a3aab5d849e53d0f6a0", + "type": "CBI_author", + "value": "Gemrot", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-2: Validated methods for the generation of pre-authorization data for S-\nmetolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 426.83 + }, + "width": 31.457703, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 106, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 2014 ASB2016-786", + "comments": [], + "startOffset": 114, + "endOffset": 120, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "313ed7b38dbbc627e4084e4c232d02d0", + "type": "CBI_author", + "value": "Gemrot", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-2: Validated methods for the generation of pre-authorization data for S-\nmetolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 403.91 + }, + "width": 31.457703, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 106, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Gemrot, 2014 ASB2016-786 ", + "textAfter": ", 2014 ASB2016-78", + "comments": [], + "startOffset": 139, + "endOffset": 145, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "33ff5f06d03e0c11dcb619ce8f666b7e", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 579.74 + }, + "width": 33.2406, + "height": 10.526819, + "page": 26 + } + ], + "sectionNumber": 140, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Tribolet (1998) MET2000-145 ", + "textAfter": " (1998) ASB2015-72", + "comments": [], + "startOffset": 133, + "endOffset": 141, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f74fe0329bf28006a458601b00898c57", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 602.78 + }, + "width": 33.2406, + "height": 10.526819, + "page": 26 + } + ], + "sectionNumber": 140, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1998) MET2000-145", + "comments": [], + "startOffset": 105, + "endOffset": 113, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a46050328220d349008887d5b431de04", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 666.5 + }, + "width": 33.2406, + "height": 10.526819, + "page": 26 + } + ], + "sectionNumber": 139, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005) ASB2016-77", + "comments": [], + "startOffset": 151, + "endOffset": 159, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e5e051fc7e6817cc35966465e6a15830", + "type": "CBI_author", + "value": "Robinson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 715.94 + }, + "width": 39.316193, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 183, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005) ASB2015-340", + "comments": [], + "startOffset": 190, + "endOffset": 198, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ed7a2281dc699e97c8cb77150c2fc75d", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 635.42 + }, + "width": 33.2406, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 183, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Tribolet (1997) MET9800636 ", + "textAfter": " (1997) MET9800637", + "comments": [], + "startOffset": 269, + "endOffset": 277, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "911300c6701be01175cb4aff30d263c7", + "type": "CBI_author", + "value": "Wolf", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 692.9 + }, + "width": 21.587372, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 183, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Robinson (2005) ASB2015-340 ", + "textAfter": " (2005) ASB2015-341", + "comments": [], + "startOffset": 218, + "endOffset": 222, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1011c4aab8e61e0971d59f7b3f440e63", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 377.98, + "y": 658.46 + }, + "width": 33.2406, + "height": 10.526819, + "page": 30 + } + ], + "sectionNumber": 183, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Wolf (2005) ASB2015-341 ", + "textAfter": " (1997) MET9800636", + "comments": [], + "startOffset": 242, + "endOffset": 250, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "53730d4c15766d24348ce2b07ab7e3af", + "type": "CBI_author", + "value": "Robinson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 455.87 + }, + "width": 39.316116, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 203, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005), ASB2015-", + "comments": [], + "startOffset": 4, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "83615940b5a718f72d5fd433216e2899", + "type": "CBI_author", + "value": "Robinson", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 455.87 + }, + "width": 39.316193, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 203, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2005), ASB2015-340", + "comments": [], + "startOffset": 114, + "endOffset": 122, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "825f0c41d9d32571f5ad9f65e231b598", + "type": "CBI_author", + "value": "Wolf", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 432.83 + }, + "width": 21.58731, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 203, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(2005), ASB2015- 340 ", + "textAfter": " (2005), ASB2015-341", + "comments": [], + "startOffset": 34, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "555ae19df6928c4684aabe08dc2f3ada", + "type": "CBI_author", + "value": "Wolf", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 284.11, + "y": 432.83 + }, + "width": 21.587372, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 203, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Robinson (2005), ASB2015-340 ", + "textAfter": " (2005), ASB2015-341", + "comments": [], + "startOffset": 143, + "endOffset": 147, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d67a4574321ae6c474657b35dfbd3d60", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 421.31 + }, + "width": 33.240494, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 203, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Wolf (2005), ASB2015-341 ", + "textAfter": " (1997), MET9800636", + "comments": [], + "startOffset": 59, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "17763c96fec3dff7aae43b51d7fa4a7a", + "type": "CBI_author", + "value": "Tribolet", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 156.86, + "y": 398.39 + }, + "width": 33.240494, + "height": 10.526819, + "page": 31 + } + ], + "sectionNumber": 203, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Tribolet (1997), MET9800636 ", + "textAfter": " (1997) MET9800637", + "comments": [], + "startOffset": 87, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b1baf673ccbfcaf495d4fc9c7c0148a5", + "type": "false_positive", + "value": "Draize", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6.3 Summary of short-term toxicity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 268.35028, + "y": 209.58002 + }, + "width": 30.355377, + "height": 11.017679, + "page": 37 + } + ], + "sectionNumber": 252, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2055, + "endOffset": 2061, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c6622dbba2706e5615b9444617845f16", + "type": "false_positive", + "value": "May", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6.3 Summary of short-term toxicity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 695.78 + }, + "width": 21.26944, + "height": 11.017679, + "page": 38 + } + ], + "sectionNumber": 252, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3668, + "endOffset": 3671, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "df8ddcd016919770edca8b01f1c667d6", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 252.69 + }, + "width": 36.46048, + "height": 11.017679, + "page": 127 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 667, + "endOffset": 674, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d422d8b2770245da71fe8d9df14463de", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 290.61 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 127 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 378, + "endOffset": 381, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c0c985d0e4b16b583262f71e9071fb08", + "type": "CBI_author", + "value": "Taylor, S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 268.64996 + }, + "width": 40.707733, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1272, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Statistical Re-analysis by ", + "textAfter": " & Walton,", + "comments": [], + "startOffset": 204, + "endOffset": 214, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6c59a824aaf6593f6db82362694aaca3", + "type": "CBI_author", + "value": "Bomfim Pestana C.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 651.74 + }, + "width": 78.907104, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1265, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1997 CGH", + "comments": [], + "startOffset": 105, + "endOffset": 122, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8fdb796bced2296025adf02a3ed8061b", + "type": "CBI_author", + "value": "Taliaferro", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 349.17 + }, + "width": 40.98947, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1272, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " et al.", + "comments": [], + "startOffset": 145, + "endOffset": 155, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e97275638906d4d79d7e9eb426a16199", + "type": "CBI_author", + "value": "Anas", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 78.504, + "y": 349.17 + }, + "width": 21.03952, + "height": 10.5318, + "page": 128 + } + ], + "sectionNumber": 1272, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " platyrhynchos", + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca6ebe8937cc60f13aa1e2ff5ab6dc50", + "type": "CBI_author", + "value": "Walton, H.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 440.95667, + "y": 268.64996 + }, + "width": 45.08304, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1272, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Taylor, S. & ", + "textAfter": " 2014 CEA.110", + "comments": [], + "startOffset": 217, + "endOffset": 227, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "77c487373da6d82f419f9d3c67e7aef2", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 349.17 + }, + "width": 43.77603, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1272, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 43, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "89d1036a7ca86da64245a4aaadd806ff", + "type": "CBI_author", + "value": "Taylor, S.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 153.18 + }, + "width": 40.660736, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1273, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Statistical Re-analysis by ", + "textAfter": " & Walton,", + "comments": [], + "startOffset": 191, + "endOffset": 201, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a5bf57665748962936b92d890e1f3c2c", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 233.72998 + }, + "width": 43.77603, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1273, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 44, + "endOffset": 53, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f9b8d005601daab67be88dd46afb1cfb", + "type": "CBI_author", + "value": "Taliaferro", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 233.72998 + }, + "width": 40.98947, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1273, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " et al.", + "comments": [], + "startOffset": 132, + "endOffset": 142, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "712b06d5f5933974ce3b40f1753143fe", + "type": "CBI_author", + "value": "Walton, H.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 440.90967, + "y": 153.18 + }, + "width": 45.08304, + "height": 10.526819, + "page": 128 + } + ], + "sectionNumber": 1273, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Taylor, S. & ", + "textAfter": " 2014 CEA.111", + "comments": [], + "startOffset": 204, + "endOffset": 214, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "712eac5908753c21d64524b93ff7cb76", + "type": "CBI_author", + "value": "Potts", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 366.36334, + "y": 139.38 + }, + "width": 22.925415, + "height": 11.017679, + "page": 129 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the edges (", + "textAfter": ", 1971; Rands,", + "comments": [], + "startOffset": 3166, + "endOffset": 3171, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4691c69363f5b46f7e91007324f97c44", + "type": "CBI_author", + "value": "Jahn", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 282.8016, + "y": 227.97003 + }, + "width": 21.368774, + "height": 11.017679, + "page": 129 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(see DEFRA, 2005; ", + "textAfter": " et al.,", + "comments": [], + "startOffset": 2438, + "endOffset": 2442, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "15c6b46f1b1951aa58cbf3dbbd54da54", + "type": "CBI_author", + "value": "Rands", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 423.34, + "y": 139.38 + }, + "width": 28.434387, + "height": 11.017679, + "page": 129 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "edges (Potts, 1971; ", + "textAfter": ", 1985). The", + "comments": [], + "startOffset": 3179, + "endOffset": 3184, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "85a41b6f24c3462a96ae54659045273c", + "type": "published_information", + "value": "DEFRA", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 213.11714, + "y": 227.97003 + }, + "width": 37.04561, + "height": 11.017679, + "page": 129 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2425, + "endOffset": 2430, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5ad30b20444f5d7d2427763ae5d5dd8c", + "type": "CBI_author", + "value": "Kuhn", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 479.51 + }, + "width": 23.131165, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1281, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1995 2317-95", + "comments": [], + "startOffset": 44, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "84a16225f08d5f7e5c6d292c36af3557", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 462.13904, + "y": 374.73 + }, + "width": 26.91098, + "height": 10.0905, + "page": 129 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1443, + "endOffset": 1449, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "41a520588685b2b7d68cc6b25126bd6d", + "type": "CBI_author", + "value": "Marshall", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.9 Effects on non-target species", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 142.51201, + "y": 190.02002 + }, + "width": 40.16992, + "height": 11.017679, + "page": 129 + } + ], + "sectionNumber": 1284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the study of ", + "textAfter": " et al.", + "comments": [], + "startOffset": 2715, + "endOffset": 2723, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e7c80ce60c2cf64b8c833695f5be2712", + "type": "CBI_author", + "value": "Hefner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 319.28998 + }, + "width": 28.648987, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1307, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 D9345", + "comments": [], + "startOffset": 111, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7838fbebcbd5399c9c2e96dbabaf9cb0", + "type": "CBI_author", + "value": "Hoberg", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 362.25 + }, + "width": 31.02945, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1306, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 1995 94-8-540", + "comments": [], + "startOffset": 133, + "endOffset": 139, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "38e7db0e374691df2da7a3412f858f9b", + "type": "CBI_author", + "value": "Liedtke", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 579.86 + }, + "width": 31.437836, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1300, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2011) D2464", + "comments": [], + "startOffset": 52, + "endOffset": 59, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bd0d0fa3193ff7127fcf84b18bbfd5cf", + "type": "CBI_author", + "value": "Liedtke", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 491.27 + }, + "width": 31.437836, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1303, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2011 D2466", + "comments": [], + "startOffset": 56, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4a3e345ddebf64c8c2acdfb02b48c72f", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 709.34 + }, + "width": 18.210884, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1300, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "015ca530ce587e253b2081d49307df82", + "type": "CBI_author", + "value": "Eckenstein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 405.35 + }, + "width": 44.834076, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1305, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2013 D6903", + "comments": [], + "startOffset": 78, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a1a1cc785cb31ffc6973c0fdd8568d5f", + "type": "CBI_author", + "value": "Candolfi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 177.89996 + }, + "width": 32.626038, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1351, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1998 CGA77102/044", + "comments": [], + "startOffset": 132, + "endOffset": 140, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "689ed599abbfc4cbd7df009e6f1cc06f", + "type": "CBI_author", + "value": "Nienstedt", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 441.71 + }, + "width": 35.047028, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1346, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1999 CGA77102/050", + "comments": [], + "startOffset": 178, + "endOffset": 187, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f5ddb7c25fb79201e0eb07a250db1eb3", + "type": "CBI_author", + "value": "Neumann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 489.31607, + "y": 549.47 + }, + "width": 18.680939, + "height": 10.095, + "page": 134 + }, + { + "topLeft": { + "x": 452.02, + "y": 539.15 + }, + "width": 21.087982, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1343, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Wesiak & ", + "textAfter": " 1996 CGA77102/016", + "comments": [], + "startOffset": 107, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b9820509eee8f215ddbca797a8636599", + "type": "CBI_author", + "value": "Nienstedt", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 318.81 + }, + "width": 35.047028, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1348, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1999 CGA77102/046", + "comments": [], + "startOffset": 144, + "endOffset": 153, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "46c394475d240231bafbbd73e1221592", + "type": "CBI_author", + "value": "Wesiak", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 549.47 + }, + "width": 26.947052, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1343, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Neumann", + "comments": [], + "startOffset": 98, + "endOffset": 104, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d6d64b1343c3cc30c94ef4dacf489b43", + "type": "CBI_author", + "value": "Nienstedt", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 487.55 + }, + "width": 35.047028, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1345, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1999 CGA77102/047", + "comments": [], + "startOffset": 157, + "endOffset": 166, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "02c3e66c8d1867d93af1c0b1f8ede070", + "type": "CBI_author", + "value": "Engelhard", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 592.22 + }, + "width": 39.096954, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1342, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1998 CGA77102/039", + "comments": [], + "startOffset": 118, + "endOffset": 127, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2bbcf865ab71f7ed6cdc7900a7dba3dc", + "type": "CBI_author", + "value": "Candolfi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 223.89001 + }, + "width": 32.626038, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1350, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1998 CGA77102/044", + "comments": [], + "startOffset": 122, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "633acd07ec3361888629cf32539ac686", + "type": "CBI_author", + "value": "Nienstedt", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 375.09 + }, + "width": 35.047028, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1347, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2000 CGA77102/054", + "comments": [], + "startOffset": 138, + "endOffset": 147, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "46265f50c7bc96367141ff5f89d0c66e", + "type": "CBI_author", + "value": "Candolfi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 132.06 + }, + "width": 32.662018, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1352, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1998 CGA77102/044", + "comments": [], + "startOffset": 115, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f600353bab8a7e5cb9beb65be1a70bab", + "type": "CBI_author", + "value": "Candolfi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 269.73004 + }, + "width": 32.626038, + "height": 10.095, + "page": 134 + } + ], + "sectionNumber": 1349, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1997 CGA77102/023", + "comments": [], + "startOffset": 151, + "endOffset": 159, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bca6c1695999b1a8893e68de742f7a65", + "type": "CBI_author", + "value": "Wesiak", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 711.98 + }, + "width": 26.947052, + "height": 10.095, + "page": 135 + } + ], + "sectionNumber": 1355, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " & Neumann", + "comments": [], + "startOffset": 124, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a214b922cc764ef242f80866d10e6889", + "type": "CBI_author", + "value": "Neumann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 489.31607, + "y": 711.98 + }, + "width": 18.680939, + "height": 10.095, + "page": 135 + }, + { + "topLeft": { + "x": 452.02, + "y": 701.66 + }, + "width": 21.087982, + "height": 10.095, + "page": 135 + } + ], + "sectionNumber": 1355, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Wesiak & ", + "textAfter": " 1996 CGA77102/016", + "comments": [], + "startOffset": 133, + "endOffset": 140, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1cd9a1983a5cc2b6fc3b8475ed54dc93", + "type": "CBI_author", + "value": "Reber", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 452.02, + "y": 662.06 + }, + "width": 22.492004, + "height": 10.095, + "page": 135 + } + ], + "sectionNumber": 1356, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1996 CGA77102/015", + "comments": [], + "startOffset": 125, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1c079308a463a37f43a3a607c1282cc7", + "type": "CBI_author", + "value": "Klein O.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 735.98 + }, + "width": 35.2724, + "height": 10.526819, + "page": 137 + } + ], + "sectionNumber": 1374, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2006 20051078/G1-NFE", + "comments": [], + "startOffset": 160, + "endOffset": 168, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5f257cdc63061a0f599656705f37ad8a", + "type": "CBI_author", + "value": "Schulz", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 683.78 + }, + "width": 28.101196, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1393, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA040172_1000", + "comments": [], + "startOffset": 90, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f4a2d22824bfd4bc592464b327befeee", + "type": "CBI_author", + "value": "Schulz", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 730.22 + }, + "width": 28.101196, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1392, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA368208_1001", + "comments": [], + "startOffset": 57, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ad2b1a82e7498ba9718e2c1975538f54", + "type": "CBI_author", + "value": "Schulz", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 637.22 + }, + "width": 28.102234, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1394, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 CGA050720_1001", + "comments": [], + "startOffset": 90, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e09109ca8b14c0fee93f8de7178ab726", + "type": "CBI_author", + "value": "Schulz, L", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 401.39 + }, + "width": 39.216553, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1400, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2011 11", + "comments": [], + "startOffset": 63, + "endOffset": 72, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cfa4e273f602d9476a76f3d0e38c2387", + "type": "CBI_author", + "value": "Grade, R.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 360.57 + }, + "width": 39.575073, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1401, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1996 96156", + "comments": [], + "startOffset": 70, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7ea7db6ed426f9cdbef90ba1ffaa0e4b", + "type": "CBI_author", + "value": "Grade, R.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 426.7, + "y": 319.89 + }, + "width": 39.575073, + "height": 10.526819, + "page": 138 + } + ], + "sectionNumber": 1402, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1999 CEMR-658", + "comments": [], + "startOffset": 70, + "endOffset": 79, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6c63504acb0ad5631e9379d853654514", + "type": "CBI_author", + "value": "Bramby-Gunary", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 529.19 + }, + "width": 60.08496, + "height": 10.0905, + "page": 139 + } + ], + "sectionNumber": 1415, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 A9396G_1124", + "comments": [], + "startOffset": 222, + "endOffset": 235, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "23bd259d0ef35dc907ae9f203ccc93e3", + "type": "CBI_author", + "value": "Bramby-Gunary", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 379.17 + }, + "width": 60.08496, + "height": 10.0905, + "page": 139 + } + ], + "sectionNumber": 1416, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 A9396G_1124", + "comments": [], + "startOffset": 221, + "endOffset": 234, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4595970650b1d7a4025f3d7cf1fb0c8d", + "type": "PII", + "value": "R. Grade", + "reason": "PII (Personal Identification Information) found", + "matchedRule": 19, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.9.10 Summary of effects on biological methods for sewage treatment", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 482.4933, + "y": 746.42 + }, + "width": 42.720154, + "height": 11.017679, + "page": 141 + } + ], + "sectionNumber": 1424, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Point 8.7 (", + "textAfter": " 1996c, R.Grade", + "comments": [], + "startOffset": 407, + "endOffset": 415, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "06473065ea962a612fa5373562adee3e", + "type": "CBI_author", + "value": "R.Grade", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.9.10 Summary of effects on biological methods for sewage treatment", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 104.77055, + "y": 733.7 + }, + "width": 37.943054, + "height": 11.017679, + "page": 141 + } + ], + "sectionNumber": 1424, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(R. Grade 1996c, ", + "textAfter": " 1991a, R.", + "comments": [], + "startOffset": 423, + "endOffset": 430, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b818e0938ed819178f40fce92fc904e9", + "type": "PII", + "value": "R. Grade", + "reason": "PII (Personal Identification Information) found", + "matchedRule": 19, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.9.10 Summary of effects on biological methods for sewage treatment", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 179.50352, + "y": 733.7 + }, + "width": 42.10193, + "height": 11.017679, + "page": 141 + } + ], + "sectionNumber": 1424, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "1996c, R.Grade 1991a, ", + "textAfter": " 1991b) demonstrated", + "comments": [], + "startOffset": 438, + "endOffset": 446, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca79ad3ff27494a9e48c6dc6250a5920", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Mammals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 170.21, + "y": 229.64996 + }, + "width": 51.80992, + "height": 10.929359, + "page": 143 + } + ], + "sectionNumber": 1499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 165, + "endOffset": 174, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4a1b6a5f306e547392abfe459846996a", + "type": "CBI_author", + "value": "Funkenhaus & Giessing", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Mammals", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 106.34, + "y": 410.63 + }, + "width": 106.80736, + "height": 11.017679, + "page": 145 + } + ], + "sectionNumber": 1499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "al. (2013) - ", + "textAfter": " (2010) -", + "comments": [], + "startOffset": 729, + "endOffset": 750, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ea759027d796c060deddc9dff409f378", + "type": "false_positive", + "value": "Wood mouse", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Mammals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 470.10544, + "y": 270.57 + }, + "width": 29.096802, + "height": 10.929359, + "page": 145 + }, + { + "topLeft": { + "x": 170.21, + "y": 257.85004 + }, + "width": 31.084015, + "height": 10.929359, + "page": 145 + } + ], + "sectionNumber": 1499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1463, + "endOffset": 1473, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bfc1697a967434791b3603fcfeef7d44", + "type": "CBI_author", + "value": "Albuquerque, R.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Mammals", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 435.95 + }, + "width": 74.06268, + "height": 11.017679, + "page": 145 + } + ], + "sectionNumber": 1499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the report of ", + "textAfter": " (2014): -", + "comments": [], + "startOffset": 681, + "endOffset": 696, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b1153dc8002ed4221e88aa49e2efea2d", + "type": "false_positive", + "value": "Grimm et", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Mammals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 106.34, + "y": 423.35 + }, + "width": 43.393616, + "height": 11.017679, + "page": 145 + } + ], + "sectionNumber": 1499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 707, + "endOffset": 715, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f6a4120990e4057bdf959c6dd7279e7d", + "type": "CBI_author", + "value": "Wolf, C.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Mammals", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 106.34, + "y": 398.03 + }, + "width": 39.264633, + "height": 11.017679, + "page": 145 + } + ], + "sectionNumber": 1499, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Giessing (2010) - ", + "textAfter": " (2005). The", + "comments": [], + "startOffset": 760, + "endOffset": 768, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca543e7d109353f046384157920efbf4", + "type": "CBI_author", + "value": "Mellanby, K", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Biomagnification in Terrestrial Food Chains", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 76.224, + "y": 77.46399 + }, + "width": 46.440994, + "height": 10.0905, + "page": 147 + } + ], + "sectionNumber": 1511, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "metabolites formed. 1 ", + "textAfter": ". (1967): Food", + "comments": [], + "startOffset": 482, + "endOffset": 493, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "763af156165e2692433cd0084bda508a", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Bioaccumulation and food chain behaviour for birds and mammals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 309.49637, + "y": 474.71 + }, + "width": 30.973602, + "height": 11.017679, + "page": 147 + } + ], + "sectionNumber": 1510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1895, + "endOffset": 1901, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ec46b26220bfae17df3a55f6f24af340", + "type": "CBI_author", + "value": "Gurney", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Biomagnification in Terrestrial Food Chains", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 76.224, + "y": 67.14398 + }, + "width": 28.036003, + "height": 10.0905, + "page": 147 + } + ], + "sectionNumber": 1511, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "S. 1128–1130 2 ", + "textAfter": " et al.", + "comments": [], + "startOffset": 591, + "endOffset": 597, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5f11b5de00eb0d6418c5a8c5c8c68223", + "type": "CBI_author", + "value": "Wolf", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Bioaccumulation and food chain behaviour for birds and mammals", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 296.59, + "y": 639.14 + }, + "width": 21.699982, + "height": 11.0232, + "page": 147 + } + ], + "sectionNumber": 1510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "field studies by ", + "textAfter": " (2005), Funkenhaus", + "comments": [], + "startOffset": 796, + "endOffset": 800, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f4aed4edefa001c995534b48ed36ed97", + "type": "CBI_address", + "value": "Germany", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "Bioaccumulation and food chain behaviour for birds and mammals", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 430.47952, + "y": 626.54 + }, + "width": 41.89215, + "height": 11.017679, + "page": 147 + } + ], + "sectionNumber": 1510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "(Austria, France and ", + "textAfter": "). However, the", + "comments": [], + "startOffset": 922, + "endOffset": 929, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "76809447d1dbbb966783d1a1984369b3", + "type": "false_positive", + "value": "Grimm et", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Bioaccumulation and food chain behaviour for birds and mammals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 626.54 + }, + "width": 43.61441, + "height": 11.0232, + "page": 147 + } + ], + "sectionNumber": 1510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 842, + "endOffset": 850, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "14dfcc53019096f2ba2b5a3361275c0e", + "type": "CBI_author", + "value": "Funkenhaus & Giessing", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Bioaccumulation and food chain behaviour for birds and mammals", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 358.99, + "y": 639.14 + }, + "width": 111.5766, + "height": 11.0232, + "page": 147 + } + ], + "sectionNumber": 1510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "by Wolf (2005), ", + "textAfter": " (2010) and", + "comments": [], + "startOffset": 809, + "endOffset": 830, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ad9aa1d0fc19db337ca8687edfc0cd8a", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Bioaccumulation and food chain behaviour for birds and mammals", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 377.97327, + "y": 626.54 + }, + "width": 30.830078, + "height": 11.017679, + "page": 147 + } + ], + "sectionNumber": 1510, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 911, + "endOffset": 917, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "57606e1cdd3d64f6bf588835dec49c70", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Biomagnification in Terrestrial Food Chains", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 444.22147, + "y": 159.77997 + }, + "width": 36.438416, + "height": 11.017679, + "page": 147 + } + ], + "sectionNumber": 1511, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 327, + "endOffset": 334, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "f147f0867fd48c5ace7f53cd337ca9a5", + "type": "CBI_author", + "value": "Klein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.9.11.3 Summary of the risk assessment for non-target soil meso- and macrofauna", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 187.01854, + "y": 125.82001 + }, + "width": 25.575073, + "height": 11.017679, + "page": 158 + } + ], + "sectionNumber": 1704, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "submitted field study ", + "textAfter": " (2006) shows", + "comments": [], + "startOffset": 1917, + "endOffset": 1922, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "729b6ddb410463e6bfa09fe1c68c2682", + "type": "false_positive", + "value": "Overall, the", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11.3 Summary of the risk assessment for non-target soil meso- and macrofauna", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 365.48022, + "y": 214.38 + }, + "width": 53.49524, + "height": 11.017679, + "page": 158 + } + ], + "sectionNumber": 1704, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1394, + "endOffset": 1406, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4cbfee0fb37ba5b8075d103fd467ee56", + "type": "CBI_author", + "value": "Bramby-Gunary J.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-31: ER50 values available for vegetative vigour", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 420.58, + "y": 531.71 + }, + "width": 67.92398, + "height": 10.0905, + "page": 164 + } + ], + "sectionNumber": 1832, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 2014 Conducted", + "comments": [], + "startOffset": 66, + "endOffset": 82, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "46ec82276bb1510fa26793208c5c79c8", + "type": "published_information", + "value": "Environmental Health", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 165.7352, + "y": 296.01 + }, + "width": 98.3949, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1758, + "endOffset": 1778, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "27e17776591daf2bf479fcdb4d488c11", + "type": "false_positive", + "value": "March", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 378.12656, + "y": 101.34003 + }, + "width": 29.770233, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2777, + "endOffset": 2782, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6e73f9dc4e43dc4fc6ab11eacd81058d", + "type": "false_positive", + "value": "List of", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 75.37104, + "y": 671.42 + }, + "width": 28.76561, + "height": 11.0232, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 65, + "endOffset": 72, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c487a1c1e208fe132da605c8e769453e", + "type": "false_positive", + "value": "PPR", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 240.40976, + "y": 282.57 + }, + "width": 20.607056, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1842, + "endOffset": 1845, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e8278ced04ea056090930f4cb7a39782", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 311.63287, + "y": 192.41998 + }, + "width": 23.746063, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2176, + "endOffset": 2181, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2a9e36c198a8fb79bd3cad15d850ab85", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 460.3007, + "y": 282.57 + }, + "width": 65.12027, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1884, + "endOffset": 1896, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a033ddbe349a7a5cf0f240f6f3afa08e", + "type": "published_information", + "value": "edition", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 263.1229, + "y": 594.02 + }, + "width": 31.591797, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 489, + "endOffset": 496, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "08a3032bbab3ec27be4edd042d30c4ac", + "type": "CBI_address", + "value": "MRL", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 138.97423, + "y": 88.02399 + }, + "width": 24.923676, + "height": 11.017679, + "page": 218 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "2011).  OECD ", + "textAfter": " calculator (2011)", + "comments": [], + "startOffset": 2797, + "endOffset": 2800, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "59f3f20e77b10dfdfcc43531f941b241", + "type": "false_positive", + "value": "Guideline", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 320.81674, + "y": 80.104004 + }, + "width": 44.320923, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6600, + "endOffset": 6609, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "655c617882b97e0e68c5f223d98f9260", + "type": "false_positive", + "value": "July", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 262.63715, + "y": 513.11 + }, + "width": 19.458862, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4286, + "endOffset": 4290, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ba55868b89bdebd7d44f161005efce83", + "type": "false_positive", + "value": "June", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 135.62192, + "y": 236.01001 + }, + "width": 21.24736, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 5754, + "endOffset": 5758, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2647aa158892bd54e88533a0507c64d8", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 148.30688, + "y": 474.47 + }, + "width": 62.986237, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4504, + "endOffset": 4516, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "78dec878b3e6983cf5e761f19398e86c", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 460.62247, + "y": 603.26 + }, + "width": 64.51309, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3783, + "endOffset": 3795, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "fbc03e19fdc75efce26080f08f82689d", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 417.094, + "y": 719.54 + }, + "width": 36.438416, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3132, + "endOffset": 3139, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a7a3b266246c1c8b641dda14f8eaf137", + "type": "false_positive", + "value": "September", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 345.38602, + "y": 280.76996 + }, + "width": 47.964172, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 5560, + "endOffset": 5569, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6043dc8eb4cdfb20a7ed729bf9c1e8f1", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 458.8842, + "y": 448.31 + }, + "width": 66.32364, + "height": 11.017679, + "page": 219 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4690, + "endOffset": 4702, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bb53c6182037666ddcfea33c0af79ba9", + "type": "CBI_author", + "value": "Arnold D", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 153.3483, + "y": 395.39 + }, + "width": 43.139694, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8459, + "endOffset": 8467, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f03d3c6676d9a9d62517355532d2ddcd", + "type": "recommendation_CBI_author", + "value": "JONG, F.M.W.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 125.16319, + "y": 604.22 + }, + "width": 70.772766, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7436, + "endOffset": 7448, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "65fde9ea196a79d48031107c70a1dde6", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 454.33603, + "y": 758.32 + }, + "width": 23.54367, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6764, + "endOffset": 6769, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "be72e57a5400729f8b8cbdab98c1fadd", + "type": "CBI_author", + "value": "Vogt, H.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 237.54318, + "y": 655.46 + }, + "width": 40.445984, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "P.A.; Schmuck, R.; ", + "textAfter": " (2001): Guidance", + "comments": [], + "startOffset": 7151, + "endOffset": 7159, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7ed2a211f3c9988e9ba6881aa983df25", + "type": "CBI_author", + "value": "Candolfi, M.P.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 106.34, + "y": 668.18 + }, + "width": 67.438705, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "1995) Ecotoxicology  ", + "textAfter": "; Barrett, K.L.;", + "comments": [], + "startOffset": 7032, + "endOffset": 7046, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5f3bdc8f968447890c846e8202bbce2c", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 471.45062, + "y": 474.47 + }, + "width": 53.958923, + "height": 11.017679, + "page": 220 + }, + { + "topLeft": { + "x": 106.94, + "y": 461.75 + }, + "width": 14.490875, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8151, + "endOffset": 8163, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8f85b63877258563fbecfb9db8d7f848", + "type": "false_positive", + "value": "January", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 411.46036, + "y": 213.53998 + }, + "width": 35.30124, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 9456, + "endOffset": 9463, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d46112970a4aeff9a146c58caea3d5ce", + "type": "CBI_author", + "value": "Forster, R", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 308.50452, + "y": 668.18 + }, + "width": 46.08838, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "K.L.; Campbell, P.; ", + "textAfter": ".; Grandy, N.;", + "comments": [], + "startOffset": 7077, + "endOffset": 7087, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "fb337c8a8efd0856cb603077bd2a2b7b", + "type": "recommendation_CBI_author", + "value": "BROCK, T.C.M.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 201.91322, + "y": 604.22 + }, + "width": 77.97093, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7450, + "endOffset": 7463, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ff0bdc5c35e7887c82d2dada09e649de", + "type": "CBI_author", + "value": "Grandy, N", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 363.13147, + "y": 668.18 + }, + "width": 48.427826, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "P.; Forster, R.; ", + "textAfter": ".; Huet, M.C.;", + "comments": [], + "startOffset": 7090, + "endOffset": 7099, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c66a422f99e50e94410b2d500835b0c1", + "type": "published_information", + "value": "Workshop", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 106.94, + "y": 630.14 + }, + "width": 46.926407, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7304, + "endOffset": 7312, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d626709b8d4fd30cab261e913112b7b4", + "type": "CBI_author", + "value": "Francis", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 335.12576, + "y": 382.65 + }, + "width": 33.358246, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Press, Taylor & ", + "textAfter": " Group, Boca", + "comments": [], + "startOffset": 8584, + "endOffset": 8591, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f983a0037cb7e02504d288e33aa4ba98", + "type": "CBI_author", + "value": "Campbell, P", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 243.50093, + "y": 668.18 + }, + "width": 56.43187, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "M.P.; Barrett, K.L.; ", + "textAfter": ".; Forster, R.;", + "comments": [], + "startOffset": 7063, + "endOffset": 7074, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6dce76f44dcc09dbce3c9930159f4dce", + "type": "CBI_author", + "value": "Barrett, K.L.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 179.60141, + "y": 668.18 + }, + "width": 58.098877, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": " Candolfi, M.P.; ", + "textAfter": "; Campbell, P.;", + "comments": [], + "startOffset": 7048, + "endOffset": 7061, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "60c92dd34d83c79e1e7b9e599f0265d7", + "type": "CBI_author", + "value": "Huet, M.C.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 420.08682, + "y": 668.18 + }, + "width": 51.364532, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "R.; Grandy, N.; ", + "textAfter": "; Lewis. G.;", + "comments": [], + "startOffset": 7102, + "endOffset": 7112, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ab53ad5ce2e87eedd910c7a151c6e242", + "type": "CBI_author", + "value": "Schmuck, R.", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 172.5507, + "y": 655.46 + }, + "width": 58.92688, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "G.; Oomen, P.A.; ", + "textAfter": "; Vogt, H.", + "comments": [], + "startOffset": 7138, + "endOffset": 7149, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1eacde1e867f0e4941b084ec379e2cdf", + "type": "CBI_author", + "value": "Oomen, P.A", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 106.94, + "y": 655.46 + }, + "width": 56.85135, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "M.C.; Lewis. G.; ", + "textAfter": ".; Schmuck, R.;", + "comments": [], + "startOffset": 7125, + "endOffset": 7135, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "af112cd19c008ecbcaf5259e6572f566", + "type": "false_positive", + "value": "London", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 463.2008, + "y": 382.65 + }, + "width": 35.345398, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8611, + "endOffset": 8617, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "01d2fbc12eb272af8e5fa3f5a963364a", + "type": "published_information", + "value": "Press", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 261.27917, + "y": 382.65 + }, + "width": 24.338562, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8568, + "endOffset": 8573, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "2e7a00630c59757d38ce0861982713a9", + "type": "CBI_author", + "value": "Taylor", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 290.52417, + "y": 382.65 + }, + "width": 30.46576, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "& CRC Press, ", + "textAfter": " & Francis", + "comments": [], + "startOffset": 8575, + "endOffset": 8581, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b8ab9de6193b348c26bd8245ee639f5a", + "type": "false_positive", + "value": "North", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 254.3461, + "y": 745.58 + }, + "width": 26.656952, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6813, + "endOffset": 6818, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4967fe9fb84979f215228e3fffa6b694", + "type": "false_positive", + "value": "New York", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 503.62927, + "y": 382.65 + }, + "width": 21.688965, + "height": 11.017679, + "page": 220 + }, + { + "topLeft": { + "x": 106.94, + "y": 370.05 + }, + "width": 23.665115, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8619, + "endOffset": 8627, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5361895a99931efd8f70ce72a06e331b", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 471.44516, + "y": 551.99 + }, + "width": 54.080353, + "height": 11.017679, + "page": 220 + }, + { + "topLeft": { + "x": 106.94, + "y": 539.27 + }, + "width": 14.490875, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7747, + "endOffset": 7759, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "79d82d63dbed341d2ca74f455788ceb3", + "type": "false_positive", + "value": "Short", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 325.85934, + "y": 278.37 + }, + "width": 24.70288, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 9074, + "endOffset": 9079, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "305cc739d36ae73ef55d87b6670dc64d", + "type": "CBI_author", + "value": "Maltby L", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 106.34, + "y": 395.39 + }, + "width": 42.399994, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8449, + "endOffset": 8457, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0d4b126527d932577402547f3922bfcd", + "type": "published_information", + "value": "Press", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 197.73294, + "y": 382.65 + }, + "width": 24.117752, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8556, + "endOffset": 8561, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1ac812dd70f74c26f5e8427172b2248d", + "type": "published_information", + "value": "Workshop", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 106.34, + "y": 226.28998 + }, + "width": 46.926407, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 9297, + "endOffset": 9305, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e828376af57d9a5f2788b3ce21897475", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 471.7236, + "y": 513.11 + }, + "width": 53.60562, + "height": 11.017679, + "page": 220 + }, + { + "topLeft": { + "x": 106.94, + "y": 500.51 + }, + "width": 14.490875, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7951, + "endOffset": 7963, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0cf270a9b7db71b2de381251ceb8d2e7", + "type": "false_positive", + "value": "March", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 138.72415, + "y": 706.82 + }, + "width": 29.770248, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7004, + "endOffset": 7009, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "44f4570120f134f1327ee50c2995157d", + "type": "CBI_author", + "value": "Arts G", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 201.06317, + "y": 395.39 + }, + "width": 30.896317, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 8469, + "endOffset": 8475, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4bd2564fe66d9397e6349ef031334c7c", + "type": "published_information", + "value": "EFSA Journal", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 471.7236, + "y": 162.06 + }, + "width": 53.60562, + "height": 11.017679, + "page": 220 + }, + { + "topLeft": { + "x": 106.94, + "y": 149.46002 + }, + "width": 14.490875, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 9659, + "endOffset": 9671, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "12afd97af487b6e4328bfa2ca606e7c1", + "type": "published_information", + "value": "ISBN", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 203.03212, + "y": 617.54 + }, + "width": 25.88417, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7411, + "endOffset": 7415, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e0c5eda759fcd42b4ddcd7357f724874", + "type": "CBI_author", + "value": "Lewis. G", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "3.4 Appendices", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 477.27408, + "y": 668.18 + }, + "width": 42.433136, + "height": 11.017679, + "page": 220 + } + ], + "sectionNumber": 2353, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "N.; Huet, M.C.; ", + "textAfter": ".; Oomen, P.A.;", + "comments": [], + "startOffset": 7114, + "endOffset": 7122, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "988c2b802cff786e5a77b9339d894f03", + "type": "false_positive", + "value": "Henry’s law", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.2 Physical and chemical properties", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 430.78, + "y": 362.49 + }, + "width": 55.349945, + "height": 11.017679, + "page": 19 + } + ], + "sectionNumber": 67, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 290, + "endOffset": 301, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a45296dc22d9c827e66344be51da6f9a", + "type": "CBI_author", + "value": "Meyer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 112.859985 + }, + "width": 26.965729, + "height": 10.526819, + "page": 21 + } + ], + "sectionNumber": 78, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2013) ASB2016-778", + "comments": [], + "startOffset": 120, + "endOffset": 125, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "21c873cbfaa14d581ac8c86f46f0a3a0", + "type": "CBI_author", + "value": "Meyer", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 89.94403 + }, + "width": 26.965729, + "height": 10.526819, + "page": 21 + } + ], + "sectionNumber": 78, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Meyer (2013) ASB2016-778 ", + "textAfter": " (2013a) ASB2016-77", + "comments": [], + "startOffset": 145, + "endOffset": 150, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "32b2c6c10e56d28cabd7b4269f542697", + "type": "CBI_author", + "value": "Hazelette", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 118.26001 + }, + "width": 38.638885, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 93, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "O’Loughlin (1981) TOX9800334 ", + "textAfter": " (1989) TOX980031", + "comments": [], + "startOffset": 131, + "endOffset": 140, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b9761a0d81820e00c301165df9ce5f92", + "type": "CBI_author", + "value": "Fankhauser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 88.98401 + }, + "width": 46.885803, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 94, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1999) ASB2015-10977", + "comments": [], + "startOffset": 59, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5e2710bb6f8a8bdf418d33a597507a26", + "type": "false_positive", + "value": "Not stated", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 226.37, + "y": 141.18 + }, + "width": 41.72644, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 93, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 48, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e59a838c25dbea7ac5e0c18b3f804934", + "type": "CBI_author", + "value": "Fankhauser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 66.064026 + }, + "width": 46.885803, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 94, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Fankhauser (1999) ASB2015-10977 ", + "textAfter": " (1999", + "comments": [], + "startOffset": 91, + "endOffset": 101, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bbd897cc5f5526dc806f2ecc04bf08e7", + "type": "CBI_author", + "value": "O’Loughlin", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 141.18 + }, + "width": 48.160706, + "height": 10.526819, + "page": 22 + } + ], + "sectionNumber": 93, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1981) TOX9800334", + "comments": [], + "startOffset": 102, + "endOffset": 112, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "da2866261270a6ec88ec64822ca666b6", + "type": "CBI_author", + "value": "Khalil", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 621.62 + }, + "width": 25.85025, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 101, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995) TOX980033", + "comments": [], + "startOffset": 85, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1800ad44767e30bbed7a2ff1ee689182", + "type": "CBI_author", + "value": "Chang", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 422.5, + "y": 650.9 + }, + "width": 27.085297, + "height": 10.526819, + "page": 23 + } + ], + "sectionNumber": 100, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995) TOX980016", + "comments": [], + "startOffset": 58, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "863063b64c950eb3b1536025b2ebc3cc", + "type": "CBI_author", + "value": "Doubovetzky", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 428.26, + "y": 542.03 + }, + "width": 54.78412, + "height": 10.526819, + "page": 25 + } + ], + "sectionNumber": 130, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1999) ASB2016-76", + "comments": [], + "startOffset": 89, + "endOffset": 100, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "118e3a115365cc5126049c49696348dd", + "type": "CBI_author", + "value": "Anon", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 390.4532, + "y": 84.54401 + }, + "width": 25.354218, + "height": 11.017679, + "page": 31 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the applicants (", + "textAfter": "., 2014 ASB2016-1395).", + "comments": [], + "startOffset": 759, + "endOffset": 763, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3f413457fb580a7338e61a9531e13b01", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 147.77997 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 31 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 199, + "endOffset": 202, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a59bdcf0bbe892847c6e501e71b80154", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 479.17007, + "y": 71.94403 + }, + "width": 46.16458, + "height": 11.017679, + "page": 31 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 872, + "endOffset": 882, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "66d9f76e6d4717024cb264e2df2183b9", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 224.94098, + "y": 71.94403 + }, + "width": 32.717926, + "height": 11.017679, + "page": 31 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 817, + "endOffset": 823, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "33a339955e120a3ca7fa0d1ccd286d7d", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 210.584, + "y": 160.5 + }, + "width": 32.717926, + "height": 11.017679, + "page": 31 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 169, + "endOffset": 175, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c6c114e5f265116dc3a745b760ff0e2f", + "type": "false_positive", + "value": "August", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 412.37253, + "y": 521.15 + }, + "width": 34.649933, + "height": 10.929359, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2766, + "endOffset": 2772, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "24bd5615e2a4fc1e031b6f7d4c59a9b4", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 140.74991, + "y": 556.67 + }, + "width": 46.164658, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2532, + "endOffset": 2542, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9e6bd15a817d84ad1ce6278843b7ed95", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 368.2402, + "y": 683.18 + }, + "width": 46.186768, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1659, + "endOffset": 1669, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "641cae5ee15a6b492d54d06f4b5eea66", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 581.9 + }, + "width": 46.30819, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2310, + "endOffset": 2320, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b7830e046238cc8aaee262e42085d161", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 463.0504, + "y": 746.42 + }, + "width": 46.286102, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1177, + "endOffset": 1187, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3629039de950e16b11051e6c490c1302", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 419.79694, + "y": 645.14 + }, + "width": 46.308197, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1891, + "endOffset": 1901, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5c691c177882a0b32b0a0268223b0bb7", + "type": "CBI_author", + "value": "Hartnett", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 430.69354, + "y": 683.18 + }, + "width": 37.045624, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "The references by ", + "textAfter": " et al.", + "comments": [], + "startOffset": 1673, + "endOffset": 1681, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6186e2bfbe911f3b4cef3811963f68b1", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 413.54364, + "y": 708.5 + }, + "width": 46.286102, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1466, + "endOffset": 1476, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e7afe13b081cf8a5ee7e696b94fa5603", + "type": "false_positive", + "value": "Kale", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 83.761444, + "y": 670.46 + }, + "width": 21.843521, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1699, + "endOffset": 1703, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "9b7ab4e6249bdf143fb5bd42e7433e08", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 427.65753, + "y": 569.27 + }, + "width": 17.615204, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2496, + "endOffset": 2499, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "10fa6d8c39587e8538307f6032ffc9bb", + "type": "hint_only", + "value": "references", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 463.16034, + "y": 619.94 + }, + "width": 46.197784, + "height": 11.017679, + "page": 32 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2091, + "endOffset": 2101, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "15efbf12a2329bb97452a4c5ad46eb41", + "type": "hint_only", + "value": "purity of", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.98039216, + 0.59607846, + 0.96862745 + ], + "positions": [ + { + "topLeft": { + "x": 113.73504, + "y": 681.62 + }, + "width": 39.33088, + "height": 11.017679, + "page": 33 + } + ], + "sectionNumber": 219, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2984, + "endOffset": 2993, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "40b5ba4225a3eec1233185bb34bf4d52", + "type": "CBI_author", + "value": "Matting E", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 531.47 + }, + "width": 41.128906, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 225, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014), ASB2016-", + "comments": [], + "startOffset": 49, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "d9b6d99e34c5f17ebff5878c37ed8ccc", + "type": "CBI_author", + "value": "Glaza SM", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 646.7 + }, + "width": 41.17862, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 222, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980015", + "comments": [], + "startOffset": 112, + "endOffset": 120, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "276f3f9cd78e1377c76cd97595ab039e", + "type": "CBI_author", + "value": "Glaza SM", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 501.71 + }, + "width": 41.17862, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 226, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980015", + "comments": [], + "startOffset": 54, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "670c4adddb4a14e8a777e3c1394432ad", + "type": "false_positive", + "value": "Buehler)", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 95.40841, + "y": 325.16998 + }, + "width": 35.86001, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 231, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 39, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0146e25e50c52893f7b150228ca8d5ed", + "type": "CBI_author", + "value": "Gehrke H", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 280.28998 + }, + "width": 39.97351, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 232, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (2014), ASB2016-", + "comments": [], + "startOffset": 134, + "endOffset": 142, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "18bfe44a46da812c44ab89a003e68b68", + "type": "CBI_author", + "value": "Glaza SM", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 401.03 + }, + "width": 41.17862, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 229, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980016", + "comments": [], + "startOffset": 120, + "endOffset": 128, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "34a2f01d1a0b22c487b07887727a220d", + "type": "CBI_author", + "value": "Marty JH", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 362.73 + }, + "width": 38.97751, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 230, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980016", + "comments": [], + "startOffset": 156, + "endOffset": 164, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "db153a25158a8a3b670aa776c3dc6db4", + "type": "CBI_author", + "value": "Glaza SM", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 442.19 + }, + "width": 41.17862, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 228, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980015", + "comments": [], + "startOffset": 102, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1209454ed2137184c23491fc9cebe898", + "type": "false_positive", + "value": "Maximisation test, Buehler", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 79.93056, + "y": 336.69 + }, + "width": 56.467255, + "height": 10.526819, + "page": 34 + }, + { + "topLeft": { + "x": 76.584, + "y": 325.16998 + }, + "width": 51.327896, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 231, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 20, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e07defd78e07b2f699ca7cd997ba3ae5", + "type": "CBI_author", + "value": "Holbert MS", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 471.95 + }, + "width": 48.499237, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 227, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995), TOX980015", + "comments": [], + "startOffset": 56, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca0636c978ed6b64c50b7b1cb6f7cee0", + "type": "CBI_author", + "value": "Glaza SM", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 321.45 + }, + "width": 41.17862, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 231, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980016", + "comments": [], + "startOffset": 147, + "endOffset": 155, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bab8d9ba63fe522eceb8e23dde2391a1", + "type": "CBI_author", + "value": "Schoch M", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 591.02 + }, + "width": 41.63684, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 223, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1994), TOX980015", + "comments": [], + "startOffset": 49, + "endOffset": 57, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bbdb866936d60e01622f47303a8beabe", + "type": "CBI_author", + "value": "Winkler G", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 399.82, + "y": 561.23 + }, + "width": 43.329193, + "height": 10.526819, + "page": 34 + } + ], + "sectionNumber": 224, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1996), TOX980015", + "comments": [], + "startOffset": 51, + "endOffset": 60, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7566f74742c793975c9a872534c412e4", + "type": "CBI_author", + "value": "Fankhauser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 444.11 + }, + "width": 46.885803, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 247, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 113, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "98bf6d698048ce58c9e5eedfd04be62f", + "type": "CBI_author", + "value": "Fankhauser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 618.5 + }, + "width": 46.885803, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 243, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 113, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "72ea681c90dd21cd2b4c7dde5e488344", + "type": "CBI_author", + "value": "Mastrocco", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 322.05 + }, + "width": 43.14081, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 250, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 152, + "endOffset": 161, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a074d0d918bca9d100479965f1f95ae7", + "type": "CBI_author", + "value": "Hazelette", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 362.73 + }, + "width": 38.638885, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 249, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 76, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "00a51609d51ef3e1caaae832282f4c76", + "type": "CBI_author", + "value": "Chang", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 403.43 + }, + "width": 27.085297, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 248, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 103, + "endOffset": 108, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f0151011e7ade810adfd658a5dcf6003", + "type": "CBI_author", + "value": "Fankhauser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 484.79 + }, + "width": 46.885803, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 246, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 115, + "endOffset": 125, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e5bc6e118c829496c79390927d2200c4", + "type": "CBI_author", + "value": "Chang", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 536.99 + }, + "width": 27.085297, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 245, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 152, + "endOffset": 157, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3d7618082b9083c1b942006e5c489401", + "type": "CBI_author", + "value": "Fankhauser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 465.82, + "y": 577.7 + }, + "width": 46.885803, + "height": 10.526819, + "page": 37 + } + ], + "sectionNumber": 244, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 119, + "endOffset": 129, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e8468d8b6862388522dabddb76be05f8", + "type": "CBI_author", + "value": "Strasser", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 169.26001 + }, + "width": 32.49356, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 259, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 94, + "endOffset": 102, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f6b12fbf31a0af091de3b3957ab3b1af", + "type": "CBI_author", + "value": "Wollny", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 221.48999 + }, + "width": 31.02948, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 258, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 84, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "89b2c4179918a2cb7bb2135534ae3811", + "type": "CBI_author", + "value": "Bohnenberger", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 117.06 + }, + "width": 57.423523, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 260, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 122, + "endOffset": 134, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "430eb7051064e24e9008df6e48bfc2c8", + "type": "false_positive", + "value": "Ames", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 211.94041, + "y": 348.81 + }, + "width": 24.306412, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 256, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 34, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "da2f167621e0b79606638fedc8324ba1", + "type": "CBI_author", + "value": "Beilstein", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 273.69 + }, + "width": 36.457672, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 257, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 84, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bcef8c35a83ec1e0e76f5fe9fade3f62", + "type": "false_positive", + "value": "Ames", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 211.94041, + "y": 424.07 + }, + "width": 24.306412, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 255, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 34, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5c72f891ce7c8e36d920e456b64485a1", + "type": "CBI_author", + "value": "Sokolowski", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 348.81 + }, + "width": 48.13083, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 256, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 184, + "endOffset": 194, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "f1b8414e8b6365879549ae6882d35204", + "type": "CBI_author", + "value": "Hertner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 424.07 + }, + "width": 31.407898, + "height": 10.526819, + "page": 38 + } + ], + "sectionNumber": 255, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 179, + "endOffset": 186, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3560e8252585324f3459c8e5f1ba8647", + "type": "CBI_author", + "value": "Ham", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 599.3 + }, + "width": 20.501678, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 266, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 120, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0648a5427d67b6ad20c499662db53004", + "type": "CBI_author", + "value": "Dony", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 651.5 + }, + "width": 23.240723, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 265, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 141, + "endOffset": 145, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e3bc3553c0cd22aca3b03f03807f9a6b", + "type": "CBI_author", + "value": "Cifone", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 447.82, + "y": 558.59 + }, + "width": 28.091248, + "height": 10.526819, + "page": 39 + } + ], + "sectionNumber": 267, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 111, + "endOffset": 117, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b5d575ed3d7cd6ef125d7832c8d53527", + "type": "CBI_author", + "value": "Gilles", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 458.62, + "y": 187.73999 + }, + "width": 24.794495, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 280, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 174, + "endOffset": 180, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5fb9609be755718444ea92f39427e2b4", + "type": "CBI_author", + "value": "Khalil", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 458.62, + "y": 315.21002 + }, + "width": 25.848907, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 278, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 124, + "endOffset": 130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bf31dd3a94a349bd9622da300469b3a7", + "type": "CBI_author", + "value": "Lochry", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 458.62, + "y": 251.48999 + }, + "width": 29.83429, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 279, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 179, + "endOffset": 185, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "be363ad6d0221c74dc388910022824bc", + "type": "CBI_author", + "value": "O’Loughlin", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 458.62, + "y": 389.85 + }, + "width": 50.81308, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 277, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 176, + "endOffset": 186, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c3eeebd07306be60eeb4921c81118760", + "type": "false_positive", + "value": "Not reported", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 378.82, + "y": 112.619995 + }, + "width": 51.766205, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 281, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 138, + "endOffset": 150, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "dcf4efda6f5a5be4a3d2388fae7b111b", + "type": "CBI_author", + "value": "Lightkep", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 458.62, + "y": 135.53998 + }, + "width": 36.895935, + "height": 10.526819, + "page": 40 + } + ], + "sectionNumber": 281, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 198", + "comments": [], + "startOffset": 151, + "endOffset": 159, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "95c30a33e69d09a4a851197d362e6e75", + "type": "CBI_author", + "value": "Lochry", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.7 Summary of neurotoxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 215.9084, + "y": 177.89996 + }, + "width": 32.78418, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "salivation or lacrimation; ", + "textAfter": ", 1985).", + "comments": [], + "startOffset": 579, + "endOffset": 585, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b11fd84533ba70f1dfa65b1abe8ede08", + "type": "CBI_author", + "value": "Manton", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 645.14 + }, + "width": 35.312317, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "historical control data: ", + "textAfter": " (2017, ASB2017-13210)", + "comments": [], + "startOffset": 1627, + "endOffset": 1633, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0ebcf26d6be3da955d7ff712e6e42c36", + "type": "CBI_author", + "value": "Manton", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 126.574554, + "y": 480.71 + }, + "width": 35.3013, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "1%). In addition, ", + "textAfter": " (2017, ASB2017-13211)", + "comments": [], + "startOffset": 2753, + "endOffset": 2759, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c94d1b030ab4c51984b77534cc479c0d", + "type": "CBI_author", + "value": "Lightkep", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 128.49551, + "y": 632.54 + }, + "width": 40.688812, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the study by ", + "textAfter": " (1980, run", + "comments": [], + "startOffset": 1736, + "endOffset": 1744, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca12308c306c3b992f3d245f92ff0875", + "type": "CBI_author", + "value": "Lightkep", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.7 Summary of neurotoxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 108.81121, + "y": 190.5 + }, + "width": 40.629112, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 284, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "in rabbits (", + "textAfter": ", 1980) and", + "comments": [], + "startOffset": 453, + "endOffset": 461, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "133c59c275d6252e4b246706d68c0a21", + "type": "CBI_address", + "value": "Argus Laboratories", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 407.42026, + "y": 645.14 + }, + "width": 87.410095, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "data from the ", + "textAfter": " where the", + "comments": [], + "startOffset": 1698, + "endOffset": 1716, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "42f205b988398fdb30297308df2d8f4b", + "type": "CBI_author", + "value": "Gilles", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 186.89279, + "y": 442.79 + }, + "width": 27.341446, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "in 1995 by ", + "textAfter": " and Giknis.", + "comments": [], + "startOffset": 3059, + "endOffset": 3065, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3d0de1987940398c9cb8c4ec78fe1e72", + "type": "CBI_author", + "value": "Giknis", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 236.40721, + "y": 442.79 + }, + "width": 30.355362, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "by Gilles and ", + "textAfter": ". In this", + "comments": [], + "startOffset": 3070, + "endOffset": 3076, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "15fab336c7dd0c910ef8f94a3130c623", + "type": "CBI_address", + "value": "Ciba-Geigy laboratory", + "reason": "Address found for non vertebrate study", + "matchedRule": 3, + "legalBasis": null, + "redacted": false, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 87.603355, + "y": 468.11 + }, + "width": 100.68195, + "height": 11.017679, + "page": 41 + } + ], + "sectionNumber": 283, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "rabbits from the ", + "textAfter": " (Summit, New", + "comments": [], + "startOffset": 2840, + "endOffset": 2861, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8c2cab2b99e74e718ff90e81edc4edbc", + "type": "CBI_author", + "value": "Akkan", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 322.5014, + "y": 354.21 + }, + "width": 30.134552, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "immunotoxic potential (", + "textAfter": ", 2014, ASB2016-770).", + "comments": [], + "startOffset": 3481, + "endOffset": 3486, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ca22a79c12d2a5439396568a85eb8c41", + "type": "CBI_author", + "value": "Charlton", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.81885, + "y": 759.04 + }, + "width": 39.507477, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "a review (", + "textAfter": " 2014, ASB2016-762)", + "comments": [], + "startOffset": 538, + "endOffset": 546, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "49661bc32e7152077e755ef8f6d46723", + "type": "CBI_author", + "value": "Aït-Aïssa", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 380.66803, + "y": 695.78 + }, + "width": 43.27597, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "0.51 µM) (", + "textAfter": " et al.", + "comments": [], + "startOffset": 1023, + "endOffset": 1032, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "630f18588c9b6c1b3cc19ad3cada90d8", + "type": "CBI_author", + "value": "Tisdel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 309.18826, + "y": 556.67 + }, + "width": 28.5448, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "with rats (", + "textAfter": " et al.", + "comments": [], + "startOffset": 2124, + "endOffset": 2130, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c512523c9a12819735b93f1837e14408", + "type": "CBI_author", + "value": "Laville", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 469.4983, + "y": 721.1 + }, + "width": 32.165924, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "JEG-3 cells (", + "textAfter": " et al.", + "comments": [], + "startOffset": 841, + "endOffset": 848, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5c83ffbfd4d715a3f83cf234206ce82b", + "type": "CBI_author", + "value": "Mathias", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 352.44586, + "y": 632.54 + }, + "width": 36.350098, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "to metolachlor (", + "textAfter": " et al.", + "comments": [], + "startOffset": 1509, + "endOffset": 1516, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ae348606800b56ce86c9e96f83f59e86", + "type": "CBI_author", + "value": "Dalton", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 353.77783, + "y": 657.86 + }, + "width": 30.98462, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "hormone receptor, while ", + "textAfter": " et al.", + "comments": [], + "startOffset": 1317, + "endOffset": 1323, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "10abbc180d88d68fb5eed07d264992dc", + "type": "CBI_author", + "value": "Tisdel", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 152.11006, + "y": 531.35 + }, + "width": 28.5448, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "seminal vesicle (", + "textAfter": " et al.", + "comments": [], + "startOffset": 2293, + "endOffset": 2299, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "24e558587846b636a0c2a5edb3a44d66", + "type": "CBI_author", + "value": "Grennlee", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 352.0208, + "y": 493.43 + }, + "width": 41.273926, + "height": 11.017679, + "page": 42 + } + ], + "sectionNumber": 285, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "was unaltered (", + "textAfter": " et al.", + "comments": [], + "startOffset": 2627, + "endOffset": 2635, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8fcbccb3b9d6c2b9bbe7ff253fe61dd8", + "type": "false_positive", + "value": "Ames test", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.6.9 Summary of toxicological data on impurities and metabolites", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 129.97485, + "y": 632.54 + }, + "width": 45.800323, + "height": 11.017679, + "page": 43 + } + ], + "sectionNumber": 320, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2126, + "endOffset": 2135, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "51c286b7be47e9b3317808acb7686129", + "type": "CBI_author", + "value": "Capps", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.9 Summary of toxicological data on impurities and metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 155.72015, + "y": 133.38 + }, + "width": 28.555847, + "height": 11.017679, + "page": 45 + } + ], + "sectionNumber": 320, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "metabolism study (", + "textAfter": " and Brown,", + "comments": [], + "startOffset": 5871, + "endOffset": 5876, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a2003a29cc1566dd89a2d8420df644d4", + "type": "CBI_author", + "value": "Mücke", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.9 Summary of toxicological data on impurities and metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 336.0748, + "y": 120.77997 + }, + "width": 31.569733, + "height": 11.017679, + "page": 45 + } + ], + "sectionNumber": 320, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "a study by ", + "textAfter": " (1981, TOX9800288).", + "comments": [], + "startOffset": 6006, + "endOffset": 6011, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "afd3986036df4c10b0c03d24d0daeea1", + "type": "CBI_author", + "value": "Brown", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "2.6.9 Summary of toxicological data on impurities and metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 205.13521, + "y": 133.38 + }, + "width": 30.98465, + "height": 11.017679, + "page": 45 + } + ], + "sectionNumber": 320, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "study (Capps and ", + "textAfter": ", 1994). Metabolites", + "comments": [], + "startOffset": 5881, + "endOffset": 5886, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "91d6011d97d1e55f3534848b14f0194f", + "type": "false_positive", + "value": "Green", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 71.553764, + "y": 118.7887 + }, + "width": 21.910355, + "height": 9.610338, + "page": 89 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 248, + "endOffset": 253, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "42f0a6ca42ebb4a90d12185d4b42b249", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 448.19 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 618, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 93, + "endOffset": 101, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "699766356db3bb6e444d62a43f9bfd4a", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 471.71 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 617, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 106, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c587c34c607710fbe69d53e00a94dcde", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 494.75 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 617, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 93, + "endOffset": 101, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6a22e6e722242d2f45b843c946295f67", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 472.3, + "y": 425.27 + }, + "width": 43.718445, + "height": 10.526819, + "page": 91 + } + ], + "sectionNumber": 618, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 106, + "endOffset": 114, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "46b1b6d659179b1956e1c4fd56cf9af2", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "CGA77102", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 506.54327, + "y": 216.57 + }, + "width": 18.388062, + "height": 10.0905, + "page": 92 + }, + { + "topLeft": { + "x": 106.94, + "y": 206.10004 + }, + "width": 25.003006, + "height": 10.0905, + "page": 92 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "study Simmonds & ", + "textAfter": ", 2013, KCA", + "comments": [], + "startOffset": 2309, + "endOffset": 2317, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "43b18a380e31f5420c2c961f927b1459", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "CGA77102", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 453.80325, + "y": 216.57 + }, + "width": 39.61902, + "height": 10.0905, + "page": 92 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "soil degradation study ", + "textAfter": " & Simmonds,", + "comments": [], + "startOffset": 2298, + "endOffset": 2306, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "98aef84861c4626faadb16e3542fd408", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 239.25204, + "y": 237.21002 + }, + "width": 60.544006, + "height": 10.0905, + "page": 92 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2144, + "endOffset": 2159, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6f1180eead3f60281e7ca4026c3c6425", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "CGA77102", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 121.661766, + "y": 80.224 + }, + "width": 54.234917, + "height": 11.017679, + "page": 92 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "degradation study (", + "textAfter": ", 1997) in", + "comments": [], + "startOffset": 3022, + "endOffset": 3032, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6ab897c394e1298815e7ec286eeee128", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 237.81 + }, + "width": 43.75293, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 662, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 95, + "endOffset": 103, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "4e014ebdf4fc6c2f8bd3ec62d814c9b9", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 307.28998 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 661, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 82, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "ad173dac54c416d3c2e840fa0f9fd335", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 96.70056, + "y": 295.89 + }, + "width": 33.678757, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 661, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "clay loam (", + "textAfter": ")", + "comments": [], + "startOffset": 17, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c46431077221269e81607875fe16017a", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 541.79 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 652, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 97, + "endOffset": 105, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "dec1f4fa4c258f2eb1e04314cf4aaea8", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 588.38 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 651, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 98, + "endOffset": 106, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "96e046fd5d9c8e0fd9f4910e249af931", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 284.37 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 661, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 95, + "endOffset": 103, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b896e341b35bf99a5bbb86617bd7cb73", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 611.3 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 651, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 85, + "endOffset": 93, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6e91590a94a4970e3a2d6fcc0daebe91", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 260.85004 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 662, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 82, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c3c09f8ca631b20ed52ba8f57f2646c9", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 564.83 + }, + "width": 43.718445, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 652, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 84, + "endOffset": 92, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2868118f09522b55930101e4fcdc6d53", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 96.70056, + "y": 249.33002 + }, + "width": 33.678757, + "height": 10.526819, + "page": 93 + } + ], + "sectionNumber": 662, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "clay loam (", + "textAfter": ")", + "comments": [], + "startOffset": 17, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c5c3a04d70d3e7e9cf61d23c24fa3a63", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 282.69 + }, + "width": 43.718445, + "height": 10.526819, + "page": 94 + } + ], + "sectionNumber": 683, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 80, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "1287f16d4da0034269e318cd1f255b1f", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 173.46002 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 710, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 79, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8e946b829a2c51093fce086116968c61", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 419.99 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 700, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 82, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bf513a622a76249dfe800910c099eb6d", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 396.95 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 700, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 95, + "endOffset": 103, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "638e09de82b66f692f6faafc89401a17", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 466.43 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 699, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " and Simmonds,", + "comments": [], + "startOffset": 82, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "875cb7bc35dfdd01fea4cd54ce788f70", + "type": "recommendation_CBI_author", + "value": "Gardner", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5529412, + 0.9411765, + 0.42352942 + ], + "positions": [ + { + "topLeft": { + "x": 74.29056, + "y": 150.41998 + }, + "width": 33.678764, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 710, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "clay loam (", + "textAfter": ")", + "comments": [], + "startOffset": 17, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": true, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "bc226946d7e5a35b1e8d13057772b583", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 443.51 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 699, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 95, + "endOffset": 103, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8ba2e0bdd573ac9fc4ed7deb3ba17d9d", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 471.7, + "y": 150.41998 + }, + "width": 43.718445, + "height": 10.526819, + "page": 95 + } + ], + "sectionNumber": 710, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds and ", + "textAfter": ", 201", + "comments": [], + "startOffset": 92, + "endOffset": 100, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5a5eea1aa37d895cd826a0fa7b4fb4a9", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 221.85603, + "y": 598.7 + }, + "width": 60.76201, + "height": 10.0905, + "page": 95 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3721, + "endOffset": 3736, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6c831ab7470e0fd21d414070a15727b2", + "type": "CBI_author", + "value": "Roohi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-8: Summary of DT50 modelling endpoints for the metabolite CGA37735", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 277.76996 + }, + "width": 25.352264, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 757, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 87, + "endOffset": 92, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "5f86795240e4e735b75d6f0ce128fc17", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 221.85603, + "y": 760.84 + }, + "width": 60.54402, + "height": 10.0905, + "page": 97 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 3995, + "endOffset": 4010, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ee17999dd8c868e8fd245da1673eb5df", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 221.85603, + "y": 174.29999 + }, + "width": 60.54402, + "height": 10.0905, + "page": 97 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4384, + "endOffset": 4399, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ee4e9a056e2a148ecf6a2d77cce52c26", + "type": "CBI_author", + "value": "Roohi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-8: Summary of DT50 modelling endpoints for the metabolite CGA37735", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 312.81 + }, + "width": 25.352264, + "height": 10.526819, + "page": 97 + } + ], + "sectionNumber": 756, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 81, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "b4eeb406f44e65bb55891c1fd7f65e22", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 221.85603, + "y": 466.19 + }, + "width": 60.54402, + "height": 10.0905, + "page": 97 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4186, + "endOffset": 4201, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "d13b276b573e8333e1cea76978373e48", + "type": "CBI_author", + "value": "Roohi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 436.31 + }, + "width": 25.352264, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 771, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 90, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "124d7594d1bfb2d553e6eede60679b35", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 97.86401 + }, + "width": 43.718445, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 780, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "& Simmonds, 201", + "comments": [], + "startOffset": 84, + "endOffset": 92, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "c172e4cd84cfc404b9c4b3d8a921b691", + "type": "CBI_author", + "value": "Roohi", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 366.33 + }, + "width": 25.352264, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 773, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 201", + "comments": [], + "startOffset": 91, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a89a96c45c6b82987e6ff72cfdaadaf3", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 221.85603, + "y": 285.81 + }, + "width": 60.54402, + "height": 10.0905, + "page": 98 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4737, + "endOffset": 4752, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0a23427c78a30e34155cabaa226a2ffb", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 132.89996 + }, + "width": 43.718445, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 779, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": "& Simmonds, 201", + "comments": [], + "startOffset": 77, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0316b8bf7f06aef3254079b4828e47a3", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 121.380005 + }, + "width": 43.718445, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 779, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds& ", + "textAfter": ", 201", + "comments": [], + "startOffset": 87, + "endOffset": 95, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "209306fe44d4ee96788dda18638e09c1", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 86.343994 + }, + "width": 43.718445, + "height": 10.526819, + "page": 98 + } + ], + "sectionNumber": 780, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "Simmonds& ", + "textAfter": ", 201", + "comments": [], + "startOffset": 94, + "endOffset": 102, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "0fdb511a6556ce5f5eedaae0b8e6de81", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 222.029, + "y": 615.62 + }, + "width": 60.54402, + "height": 10.0905, + "page": 98 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4543, + "endOffset": 4558, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "17b4e74b71722952b4d0418ff44d2e94", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 222.029, + "y": 339.69 + }, + "width": 60.54402, + "height": 10.0905, + "page": 99 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 5155, + "endOffset": 5170, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5996277930fb49e01bb0bfbab93f27ef", + "type": "CBI_author", + "value": "Merritt", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "CGA77102", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 74.65344, + "y": 188.34003 + }, + "width": 32.13282, + "height": 11.017679, + "page": 99 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "first study (", + "textAfter": ", 1995) was", + "comments": [], + "startOffset": 5856, + "endOffset": 5863, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "7405ec4c70ec08be23374e6c9f7b0919", + "type": "false_positive", + "value": "Low", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 461.44662, + "y": 112.5 + }, + "width": 21.236328, + "height": 11.017679, + "page": 99 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 6508, + "endOffset": 6511, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "31c861790f7974326956823ebba4ea3a", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "CGA77102", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 205.32285, + "y": 163.02002 + }, + "width": 48.140823, + "height": 11.017679, + "page": 99 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "new study (", + "textAfter": ", 2012) was", + "comments": [], + "startOffset": 6064, + "endOffset": 6072, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "01cfb0276829163d90925ee4c62bab34", + "type": "CBI_author", + "value": "Simmonds", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 470.26, + "y": 586.22 + }, + "width": 43.718445, + "height": 10.526819, + "page": 99 + } + ], + "sectionNumber": 788, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 201", + "comments": [], + "startOffset": 82, + "endOffset": 90, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "371521c6390348f3011925c65c02a545", + "type": "false_positive", + "value": "Walker equation", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 221.85603, + "y": 505.67 + }, + "width": 60.54402, + "height": 10.0905, + "page": 99 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4985, + "endOffset": 5000, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4cb918c7150a60b39d8e81e098240e46", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 83.104004 + }, + "width": 28.07129, + "height": 10.526819, + "page": 100 + } + ], + "sectionNumber": 811, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 37, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c7c0c99861cfca5cfc6897f74bbfca1c", + "type": "false_positive", + "value": "Field", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "CGA77102", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 436.67 + }, + "width": 24.272324, + "height": 11.0232, + "page": 100 + } + ], + "sectionNumber": 841, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7545, + "endOffset": 7550, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "ad3f87c346b54bec66cb155a797e81cf", + "type": "false_positive", + "value": "Clay loam", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 73.584, + "y": 618.5 + }, + "width": 42.314087, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 819, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "052a4c51e984172204b5d2afe1263cc6", + "type": "false_positive", + "value": "France", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 163.49, + "y": 606.98 + }, + "width": 28.07129, + "height": 10.526819, + "page": 101 + } + ], + "sectionNumber": 819, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 28, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "3fee1275f3e47f10c1fa52fb8d989914", + "type": "CBI_author", + "value": "Spare, W.C.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 446.86, + "y": 153.06 + }, + "width": 49.87372, + "height": 10.526819, + "page": 102 + } + ], + "sectionNumber": 844, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1995", + "comments": [], + "startOffset": 52, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "faf11dbbf299a41d4df26630b60b6446", + "type": "CBI_author", + "value": "Spare, W.C.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-19: Freundlich adsorption coefficients and exponents of CGA51202", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 443.02, + "y": 690.38 + }, + "width": 49.87372, + "height": 10.526819, + "page": 104 + } + ], + "sectionNumber": 883, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1988", + "comments": [], + "startOffset": 40, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "cc6050b6c60cd0146658702df8804427", + "type": "CBI_author", + "value": "Spare", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-27: Distribution of the radioactivity in leachate of aged soil column leaching\nstudies with S-metolachlor (% applied radioactivity)", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 474.94, + "y": 201.77997 + }, + "width": 23.758606, + "height": 10.526819, + "page": 106 + } + ], + "sectionNumber": 964, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 38, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "232a5451188737b777f324df5b1c6c46", + "type": "CBI_author", + "value": "Spare", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.8-26: Study conditions of aged column leaching studies with S-metolachlor", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 468.46, + "y": 460.67 + }, + "width": 23.758606, + "height": 10.526819, + "page": 106 + } + ], + "sectionNumber": 955, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": ", 199", + "comments": [], + "startOffset": 61, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "2ec61cbbc3fc116805f741a45e605e5f", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.6.3 PECsurface water and PECsediment", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 250.73982, + "y": 368.37 + }, + "width": 17.615189, + "height": 11.017679, + "page": 126 + } + ], + "sectionNumber": 1260, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 966, + "endOffset": 969, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "efaf645c2e834f8a2b90f13e4080184a", + "type": "CBI_author", + "value": "Kitschmann", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.8.6.3 PECsurface water and PECsediment", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 328.19812, + "y": 337.05 + }, + "width": 54.12445, + "height": 11.017679, + "page": 126 + } + ], + "sectionNumber": 1260, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "study (21.9 %; ", + "textAfter": ", 1997). However,", + "comments": [], + "startOffset": 1153, + "endOffset": 1163, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "8d7e7a447db3004963e2b1b2c624487b", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.8.6.3 PECsurface water and PECsediment", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 139.64594, + "y": 311.73004 + }, + "width": 17.493774, + "height": 11.017679, + "page": 126 + } + ], + "sectionNumber": 1260, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1313, + "endOffset": 1316, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "10ef4e1bfc21898a913ffa1e9d73ddf7", + "type": "CBI_author", + "value": "Glaza, S.M.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 514.43 + }, + "width": 48.698395, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1280, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1994 NE", + "comments": [], + "startOffset": 54, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "17450afb3bd7c725fc44b76528205103", + "type": "CBI_author", + "value": "O’Loughlin", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 432.95 + }, + "width": 48.160706, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1282, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1981 450-0272", + "comments": [], + "startOffset": 126, + "endOffset": 136, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "6d9e921b46f4057f0423d7dd152dc89f", + "type": "CBI_author", + "value": "Schoch, M.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 388.54, + "y": 560.99 + }, + "width": 46.63675, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1279, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " 1994 941056", + "comments": [], + "startOffset": 58, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "68514cc1fe93625fd3ad20201148c0de", + "type": "false_positive", + "value": "Long-term", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 229.37, + "y": 432.95 + }, + "width": 43.77603, + "height": 10.526819, + "page": 129 + } + ], + "sectionNumber": 1282, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 28, + "endOffset": 37, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "4a3e345ddebf64c8c2acdfb02b48c72f", + "type": "false_positive", + "value": "Fish", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 709.34 + }, + "width": 18.210884, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1297, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 4, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "bec57eb114f55ed84fbf1fd8084d3d53", + "type": "CBI_author", + "value": "Sachsse & Ullmann", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 457.78, + "y": 679.82 + }, + "width": 80.34134, + "height": 10.526819, + "page": 131 + } + ], + "sectionNumber": 1297, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " (1974) CGA24705/019", + "comments": [], + "startOffset": 57, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "9219e9107e128760df0594388633e55c", + "type": "false_positive", + "value": "green algae", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Toxicity of the metabolites", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 189.92207, + "y": 538.19 + }, + "width": 52.0269, + "height": 11.017679, + "page": 133 + } + ], + "sectionNumber": 1339, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 709, + "endOffset": 720, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "33b5b5befc286cfd3bb2cb6f22dacbcf", + "type": "CBI_author", + "value": "Gonzalez-Valero", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Toxicity of the metabolites", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 369.19, + "y": 525.47 + }, + "width": 76.36505, + "height": 11.017679, + "page": 133 + } + ], + "sectionNumber": 1339, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "mesocosm study by ", + "textAfter": " (1998, Doc.", + "comments": [], + "startOffset": 844, + "endOffset": 859, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "92cc150fc5ffb18232fac6d105de4ae3", + "type": "false_positive", + "value": "Gold", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 116.40192, + "y": 475.79 + }, + "width": 23.06897, + "height": 11.017679, + "page": 140 + } + ], + "sectionNumber": 1422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 580, + "endOffset": 584, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "57d07ec505c9965bba93161e7c692d2a", + "type": "CBI_author", + "value": "Boutin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 360.06418, + "y": 349.29 + }, + "width": 30.995636, + "height": 11.017679, + "page": 140 + } + ], + "sectionNumber": 1422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the results of ", + "textAfter": " et al.", + "comments": [], + "startOffset": 1653, + "endOffset": 1659, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "65a7c1eb85f05c88dcd3e048afb02aeb", + "type": "CBI_author", + "value": "Boutin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 482.95627, + "y": 526.43 + }, + "width": 30.995636, + "height": 11.017679, + "page": 140 + } + ], + "sectionNumber": 1422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "submitted the study ", + "textAfter": " et al.", + "comments": [], + "startOffset": 265, + "endOffset": 271, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "db72b864f6007e32ef1b279338a3f9b2", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 338.86328, + "y": 513.71 + }, + "width": 17.504791, + "height": 11.017679, + "page": 140 + } + ], + "sectionNumber": 1422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 335, + "endOffset": 338, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "02a66d164a1cae262b98b0c28fe75915", + "type": "false_positive", + "value": "Klimisch 2", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 159.81601, + "y": 463.19 + }, + "width": 50.514435, + "height": 11.017679, + "page": 140 + } + ], + "sectionNumber": 1422, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 688, + "endOffset": 698, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "e2bec3dcbd20d9ef52a89600d0051974", + "type": "CBI_author", + "value": "Boutin", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 415.18, + "y": 735.98 + }, + "width": 28.180908, + "height": 10.526819, + "page": 140 + } + ], + "sectionNumber": 1420, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " et al.", + "comments": [], + "startOffset": 315, + "endOffset": 321, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a1bebe54556978e94ce19e15da60f1c8", + "type": "false_positive", + "value": "Gold (A9396B)", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 188.9223, + "y": 735.98 + }, + "width": 20.979736, + "height": 10.526819, + "page": 140 + }, + { + "topLeft": { + "x": 167.09, + "y": 724.46 + }, + "width": 41.590485, + "height": 10.526819, + "page": 140 + } + ], + "sectionNumber": 1420, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 261, + "endOffset": 274, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "1f3e34ec384a471dcc4c99098501b8e5", + "type": "false_positive", + "value": "October", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11.1 Summary of the risk assessment for aquatic organisms", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 488.69754, + "y": 655.46 + }, + "width": 36.46048, + "height": 11.017679, + "page": 153 + } + ], + "sectionNumber": 1631, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 4738, + "endOffset": 4745, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8d8723635af41db114cf5eda22270611", + "type": "false_positive", + "value": "Green", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.9.11.1 Summary of the risk assessment for aquatic organisms", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 71.4435, + "y": 200.32025 + }, + "width": 18.026947, + "height": 8.946881, + "page": 154 + } + ], + "sectionNumber": 1631, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 7102, + "endOffset": 7107, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "8e007263e24869f27a3177c8abc02d86", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:image", + "color": [ + 0.7411765, + 0.8392157, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 442.45, + "y": 307.47 + }, + "width": 56.4, + "height": 43.2, + "page": 154 + } + ], + "sectionNumber": 1631, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "236fbdc9c4be13bb4ef77eec80b66025", + "type": "false_positive", + "value": "Klimisch 2", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 291.4128, + "y": 144.18 + }, + "width": 50.28253, + "height": 11.017679, + "page": 163 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 373, + "endOffset": 383, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6657ab6190b18f8da748228689e77ba8", + "type": "false_positive", + "value": "Gold", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 259.94882, + "y": 156.77997 + }, + "width": 22.958527, + "height": 11.017679, + "page": 163 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 265, + "endOffset": 269, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "c7966c48ff039533a6de0f7cefc2ed89", + "type": "CBI_author", + "value": "Boutin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 216.87074, + "y": 182.10004 + }, + "width": 31.106094, + "height": 11.017679, + "page": 163 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "submitted the study ", + "textAfter": " et al.", + "comments": [], + "startOffset": 51, + "endOffset": 57, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "937b4515cee028219e2d38bd9234c74d", + "type": "published_information", + "value": "Vol", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 0.52156866, + 0.92156863, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 169.38 + }, + "width": 17.615196, + "height": 11.017679, + "page": 163 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 121, + "endOffset": 124, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "a0806cf86b8b27c6bbf09394b5c277c7", + "type": "CBI_author", + "value": "Boutin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 470.08423, + "y": 733.7 + }, + "width": 30.995636, + "height": 11.017679, + "page": 164 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "the results of ", + "textAfter": " et al.", + "comments": [], + "startOffset": 1338, + "endOffset": 1344, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "46780e317ce8ca478369526445813d95", + "type": "CBI_author", + "value": "Bramby-Gunary", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 354.34232, + "y": 230.01001 + }, + "width": 73.10663, + "height": 11.017679, + "page": 164 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "than’ endpoints in ", + "textAfter": " (2014). In", + "comments": [], + "startOffset": 1781, + "endOffset": 1794, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "3f1ed4c482e58cd75da5a966378d8ab8", + "type": "CBI_author", + "value": "Boutin", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table 2.9-31: ER50 values available for vegetative vigour", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 434.62, + "y": 337.53 + }, + "width": 25.525024, + "height": 10.0905, + "page": 164 + } + ], + "sectionNumber": 1847, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": " et al.", + "comments": [], + "startOffset": 35, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "522a3a89895d5b56e0aae7f734258756", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 446.83405, + "y": 215.34003 + }, + "width": 14.987671, + "height": 11.017679, + "page": 165 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 2611, + "endOffset": 2614, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "6fbe32b14f1d2366b08e239529b4da2d", + "type": "CBI_author", + "value": "Boutin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 83.04384, + "y": 202.62 + }, + "width": 30.984634, + "height": 11.017679, + "page": 165 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "species tested in ", + "textAfter": " et al.", + "comments": [], + "startOffset": 2633, + "endOffset": 2639, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "a93b2d208d8ccf46dab26c374199745f", + "type": "CBI_author", + "value": "Boutin", + "reason": "Published Information found", + "matchedRule": 18, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": false, + "section": "Vegetative vigour", + "color": [ + 0.76862746, + 0.59607846, + 0.98039216 + ], + "positions": [ + { + "topLeft": { + "x": 232.85666, + "y": 164.70001 + }, + "width": 31.10608, + "height": 11.017679, + "page": 165 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "with A9396G. From ", + "textAfter": " et al.", + "comments": [], + "startOffset": 2965, + "endOffset": 2971, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e49d6b9456ff9e1317afd852857459b7", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Image:image", + "color": [ + 0.7411765, + 0.8392157, + 1.0 + ], + "positions": [ + { + "topLeft": { + "x": 70.9, + "y": 318.12 + }, + "width": 453.6, + "height": 452.9, + "page": 165 + } + ], + "sectionNumber": 1889, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b3095ad780f70a413826ff7e60b6da83", + "type": "false_positive", + "value": "Ames test", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 401.49258, + "y": 131.82 + }, + "width": 44.961273, + "height": 11.017679, + "page": 178 + } + ], + "sectionNumber": 2048, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 223, + "endOffset": 232, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "5d96765a77ed7585346667379973d0d4", + "type": "false_positive", + "value": "Ames", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 461.20795, + "y": 81.304016 + }, + "width": 26.513428, + "height": 11.017679, + "page": 178 + } + ], + "sectionNumber": 2048, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 591, + "endOffset": 595, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "0d0670cb2b3dd2646fa48c5111f23e1f", + "type": "false_positive", + "value": "Ames test", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 335.20847, + "y": 759.04 + }, + "width": 44.74048, + "height": 11.017679, + "page": 179 + } + ], + "sectionNumber": 2048, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 763, + "endOffset": 772, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "db6cd62d126e4bef45fc43218af44187", + "type": "false_positive", + "value": "Ames test", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 499.02307, + "y": 607.22 + }, + "width": 26.513428, + "height": 11.017679, + "page": 179 + }, + { + "topLeft": { + "x": 70.944, + "y": 594.62 + }, + "width": 16.301453, + "height": 11.017679, + "page": 179 + } + ], + "sectionNumber": 2048, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 1941, + "endOffset": 1950, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "b6f0499603bb7333ef1d2dd055547a9a", + "type": "CBI_author", + "value": "Hayes, T.B.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 654.46124, + "y": 435.5 + }, + "width": 54.75055, + "height": 11.017679, + "page": 200 + } + ], + "sectionNumber": 2234, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "amphibian studies (", + "textAfter": " et al.", + "comments": [], + "startOffset": 547, + "endOffset": 558, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "405d4de4c7ac7c9712d8d8eb76f4bae4", + "type": "CBI_author", + "value": "Spolyarich, N.", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table in: 3 Proposed decision with respect to the application", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 478.01465, + "y": 422.87 + }, + "width": 65.091064, + "height": 11.017679, + "page": 200 + } + ], + "sectionNumber": 2234, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 577, + "endOffset": 591, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "hint": false + }, + { + "id": "e3eb2c8adb0f64a108fd75041fd15703", + "type": "false_positive", + "value": "All", + "reason": null, + "matchedRule": 0, + "legalBasis": null, + "redacted": false, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 1.0, + 0.80784315, + 0.80784315 + ], + "positions": [ + { + "topLeft": { + "x": 288.65, + "y": 188.94 + }, + "width": 15.0980835, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2289, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": null, + "textAfter": null, + "comments": [], + "startOffset": 156, + "endOffset": 159, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": true + }, + { + "id": "16f304a4abfb716f40c7bce173b2410d", + "type": "CBI_author", + "value": "Lochry", + "reason": "Author found", + "matchedRule": 1, + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "redacted": true, + "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 0.5764706, + 0.59607846, + 0.627451 + ], + "positions": [ + { + "topLeft": { + "x": 108.700325, + "y": 151.02002 + }, + "width": 32.9056, + "height": 11.017679, + "page": 208 + } + ], + "sectionNumber": 2289, + "manual": false, + "status": null, + "manualRedactionType": null, + "manualRedactionUserId": null, + "textBefore": "in rats by ", + "textAfter": " (1985).", + "comments": [], + "startOffset": 141, + "endOffset": 147, + "imageHasTransparency": false, + "excluded": false, + "recategorizationType": null, + "legalBasisChangeValue": null, + "recommendation": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "hint": false + } + ], + "legalBasis": [ + { + "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", + "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" + }, + { + "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", + "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" + }, + { + "name": "2. manufacturing or production process", + "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "3. links between a producer and applicant", + "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "4. commercial information", + "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "5. quantitative composition", + "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "6. specification of impurity", + "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" + }, + { + "name": "7. results of production batches", + "description": "results of production batches of the active substance including impurities", + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" + }, + { + "name": "8. composition of a plant protection product", + "description": "information on the complete composition of a plant protection product", + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" + } + ], + "dictionaryVersion": 31, + "dossierDictionaryVersion": 1, + "rulesVersion": 1, + "legalBasisVersion": 1 +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json new file mode 100644 index 000000000..ff7318d62 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json @@ -0,0 +1 @@ +[{"category":"LICENSE","recordCount":28},{"category":"DOWNLOAD","recordCount":2},{"category":"AUDIT_LOG","recordCount":2},{"category":"DOSSIER","recordCount":64},{"category":"DOCUMENT","recordCount":40},{"category":"AUDIT","recordCount":2},{"category":"DOSSIER_TEMPLATE","recordCount":1}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json new file mode 100644 index 000000000..95a77f215 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json @@ -0,0 +1 @@ +[{"recordId":null,"recordDate":"2021-11-15T13:35:00.869Z","objectId":"f8960240-9973-42e9-9b0f-ed096ff5a018/48c10c3e-9831-4165-a80e-6e96ba2c3e98/Dom2.full.zip","category":"DOWNLOAD","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"File was downloaded.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:52.429Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:50.084Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:47.323Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:40.606Z","objectId":"f8960240-9973-42e9-9b0f-ed096ff5a018/48c10c3e-9831-4165-a80e-6e96ba2c3e98/Dom2.full.zip","category":"DOWNLOAD","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Download was prepared","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:35.755Z","objectId":"1a9168fdad57f5134d0f53053106d599","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:35.013Z","objectId":"1a9168fdad57f5134d0f53053106d599","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:34.381Z","objectId":"1a9168fdad57f5134d0f53053106d599","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:34:32.248Z","objectId":"a7f0e789b7d3075fd181c0fe45c01158","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:31.594Z","objectId":"a7f0e789b7d3075fd181c0fe45c01158","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:30.906Z","objectId":"a7f0e789b7d3075fd181c0fe45c01158","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:34:29.659Z","objectId":"6026e7cba4a3e3c45cd2f61835d0aab6","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:28.995Z","objectId":"6026e7cba4a3e3c45cd2f61835d0aab6","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:28.204Z","objectId":"6026e7cba4a3e3c45cd2f61835d0aab6","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:34:26.131Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:25.346Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:21.566Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:16.785Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Redaction was manually removed","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:53.714Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Skipped redaction was forced to be redacted","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:41.891Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Legal basis reason was changed","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:30.943Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Manual redaction was added.","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:11.627Z","objectId":"098b5b8902948267592b834da36d5c2a","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:10.735Z","objectId":"098b5b8902948267592b834da36d5c2a","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:09.79Z","objectId":"098b5b8902948267592b834da36d5c2a","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:33:08.502Z","objectId":"d3ecc6843b712a59e6f5d81dff9d3808","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:07.631Z","objectId":"d3ecc6843b712a59e6f5d81dff9d3808","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:06.68Z","objectId":"d3ecc6843b712a59e6f5d81dff9d3808","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:33:04.205Z","objectId":"2eb362b5499f95079ade4b71897913fa","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:03.08Z","objectId":"2eb362b5499f95079ade4b71897913fa","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:01.969Z","objectId":"b3d1a1c211efb8014d573df98235a7ee","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:00.719Z","objectId":"67acdc7b5b94c489ee286b36a33f997d","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:59.055Z","objectId":"67acdc7b5b94c489ee286b36a33f997d","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:58.082Z","objectId":"67acdc7b5b94c489ee286b36a33f997d","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:32:56.753Z","objectId":"b3d1a1c211efb8014d573df98235a7ee","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:55.54Z","objectId":"b3d1a1c211efb8014d573df98235a7ee","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:32:51.647Z","objectId":"cb16007523bd8c2a1ad77600ba592505","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:50.846Z","objectId":"cb16007523bd8c2a1ad77600ba592505","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:40.704Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:32:30.716Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:32:11.844Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:32:07.706Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:58.485Z","objectId":"5ac5c1e82f94fab776fbb6a67dc0efce","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c"}},{"recordId":null,"recordDate":"2021-11-15T13:31:57.413Z","objectId":"5ac5c1e82f94fab776fbb6a67dc0efce","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:31:52.157Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:39.848Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:31.35Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:25.664Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:17.56Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:17.516Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Changed dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:08.806Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:59.705Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:57.528Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:38.839Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:32.896Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:28.702Z","objectId":"9b7bd575-4566-4408-984f-b26da1d2616e","category":"DOSSIER_TEMPLATE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier attributes added/updated","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:58.042Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.885Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.884Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.881Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.879Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.838Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.793Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.792Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.715Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.714Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.71Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:53.391Z","objectId":null,"category":"AUDIT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Audit Log has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:53.383Z","objectId":null,"category":"AUDIT_LOG","userId":null,"message":"Audit Log Accessed","details":{"pageSize":50,"from":null,"to":null,"page":0,"category":null,"userId":null,"objectId":null}},{"recordId":null,"recordDate":"2021-11-15T13:29:50.34Z","objectId":null,"category":"AUDIT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Audit Log has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:50.325Z","objectId":null,"category":"AUDIT_LOG","userId":null,"message":"Audit Log Accessed","details":{"pageSize":50,"from":null,"to":null,"page":0,"category":null,"userId":null,"objectId":null}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.727Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.642Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.549Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.548Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.546Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.545Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:36.57Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"af2dc100722060d9744f99648db24c81"}},{"recordId":null,"recordDate":"2021-11-15T13:29:32.498Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"48178ab64e8fb35943c4f41ed0676b44"}},{"recordId":null,"recordDate":"2021-11-15T13:29:27.68Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:26.106Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:24.06Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:22.914Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"9b688175babfc73f67511cff52a4647e"}},{"recordId":null,"recordDate":"2021-11-15T13:29:17.527Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"9bf53c727f6324f80ea2525a51ba8105"}},{"recordId":null,"recordDate":"2021-11-15T13:29:17.344Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:16.199Z","objectId":"2eb362b5499f95079ade4b71897913fa","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:14.786Z","objectId":"cb16007523bd8c2a1ad77600ba592505","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:12.545Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"fd951b57da9745c7a0e437775e43c1f7"}},{"recordId":null,"recordDate":"2021-11-15T13:29:11.454Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:04.484Z","objectId":"1dcb49c006aa0652c2447671f0e5c903","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:01.847Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"987b67e62979568205a30d4256ac2a4d"}},{"recordId":null,"recordDate":"2021-11-15T13:29:00.753Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse file was triggered","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c"}},{"recordId":null,"recordDate":"2021-11-15T13:29:00.159Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"705e93ca3173f44bd28e68a4b5852bb8"}},{"recordId":null,"recordDate":"2021-11-15T13:28:57.921Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"e08b4f6546a0b2807f6793715bc767ec"}},{"recordId":null,"recordDate":"2021-11-15T13:28:56.187Z","objectId":"b96a63098e0e63d8ef452a6ee3bea3d1","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:28:54.848Z","objectId":"220ab22e443c8e32d3778b0937b03170","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:28:54.335Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"630157aa65fe8171c022fc1cbe508b6b"}},{"recordId":null,"recordDate":"2021-11-15T13:28:53.574Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"dc036e3079144554ebb0f90904d7f459"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.909Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.679Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"28ba6d7ae90b0f58859659d5fd1f519f"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.545Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"83e1e8af2b108f52b9c3d675737323a9"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.544Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"6a32e3a872f7515ed00f8a2ad61e2a44"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.186Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"4f3b728a2600c85e50b2350f3e087418"}},{"recordId":null,"recordDate":"2021-11-15T13:28:48.318Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"b9c0a97029bc3907c2e23cba0455b5f3"}},{"recordId":null,"recordDate":"2021-11-15T13:28:32.102Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:31.892Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier has been created.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:30.241Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"File attributes csv processed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:29.872Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"d3ecc6843b712a59e6f5d81dff9d3808"}},{"recordId":null,"recordDate":"2021-11-15T13:28:26.714Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"a7f0e789b7d3075fd181c0fe45c01158"}},{"recordId":null,"recordDate":"2021-11-15T13:28:26.546Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"cd2f7a6770116aa36867fd68245ebfd6"}},{"recordId":null,"recordDate":"2021-11-15T13:28:26.049Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"098b5b8902948267592b834da36d5c2a"}},{"recordId":null,"recordDate":"2021-11-15T13:28:24.921Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"a7985c094cac62118c9b350461902f95"}},{"recordId":null,"recordDate":"2021-11-15T13:28:23.148Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"a1ac57eab398f23ad8f7ce702ce3935b"}},{"recordId":null,"recordDate":"2021-11-15T13:28:20.751Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"67acdc7b5b94c489ee286b36a33f997d"}},{"recordId":null,"recordDate":"2021-11-15T13:28:20.746Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"1a9168fdad57f5134d0f53053106d599"}},{"recordId":null,"recordDate":"2021-11-15T13:28:20.549Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"b3d1a1c211efb8014d573df98235a7ee"}},{"recordId":null,"recordDate":"2021-11-15T13:28:18.38Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"cb16007523bd8c2a1ad77600ba592505"}},{"recordId":null,"recordDate":"2021-11-15T13:28:18.377Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"6026e7cba4a3e3c45cd2f61835d0aab6"}},{"recordId":null,"recordDate":"2021-11-15T13:28:18.165Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"2eb362b5499f95079ade4b71897913fa"}},{"recordId":null,"recordDate":"2021-11-15T13:28:04.283Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"220ab22e443c8e32d3778b0937b03170"}},{"recordId":null,"recordDate":"2021-11-15T13:27:58.864Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"1dcb49c006aa0652c2447671f0e5c903"}},{"recordId":null,"recordDate":"2021-11-15T13:27:58.39Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"5ac5c1e82f94fab776fbb6a67dc0efce"}},{"recordId":null,"recordDate":"2021-11-15T13:27:48.476Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:27:48.022Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier has been created.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:27:44.327Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"b96a63098e0e63d8ef452a6ee3bea3d1"}},{"recordId":null,"recordDate":"2021-11-15T13:27:43.159Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"cca77a1cb4355da3fb9bc7b46cffc228"}},{"recordId":null,"recordDate":"2021-11-15T13:27:40.965Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"d0a46e8329f016f0ac0844f1097f15a5"}},{"recordId":null,"recordDate":"2021-11-15T13:27:20.171Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:27:19.89Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier has been created.","details":{}}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json new file mode 100644 index 000000000..c11c24732 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json @@ -0,0 +1 @@ +{"fileAttributes":"{\"filenameMappingColumnHeaderName\":null,\"delimiter\":\",\",\"fileAttributeConfigs\":[]}","legalBasis":"[{\"name\":\"1.\\tnames and addresses of persons\",\"description\":\"names and addresses of persons involved in testing on vertebrate animals\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2g)]\"},{\"name\":\"2.\\tmethods of analysis for impurities\",\"description\":\"methods of analysis for impurities in the active substance as manufactured except for methods for impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2d)]\"},{\"name\":\"3.\\tmethod of manufacture\",\"description\":\"the method of manufacture\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2a)]\"},{\"name\":\"4.\\tcomposition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2f)]\"},{\"name\":\"5.\\tresults of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2c)]\"},{\"name\":\"6.\\tspecification of impurity of the active substance\",\"description\":\"the specification of impurity of the active substance except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2a)]\"},{\"name\":\"7. links between a producer and applicant\",\"description\":\"links between a producer or importer and the applicant or the authorisation holder\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2e)]\"}]","colors":"{\"defaultColor\":\"#acfc00\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#ff00bb\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#acfc00\",\"previewColor\":\"#cccccc\"}"} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json new file mode 100644 index 000000000..8a61a2c26 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json @@ -0,0 +1 @@ +[{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"PDF_WATERMARK","value":"{\"text\":\"This document is not the property of EFSA and is provided for giving full effect to the right of public\\naccess to documents under EU law. The document may be subject to rights such as intellectual property and\\ncopyrights of third parties. Furthermore, this document may fall under a regulatory data protection regime.\\nConsequently, any publication, distribution, reproduction and/or publishing and any commercial exploitation\\nand use of this document or its contents without the permission of the owner of this document may therefore\\nbe prohibited and violate the rights of its owner.\",\"hexColor\":\"#242121\",\"opacity\":25,\"fontSize\":15,\"fontType\":\"helvetica\",\"orientation\":\"DIAGONAL\"}"},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"colors","value":"{\"defaultColor\":\"#abc0c4\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#c498fa\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#9398a0\",\"previewColor\":\"#9398a0\"}"},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"fileAttributes","value":"{\"filenameMappingColumnHeaderName\":\"Path\",\"delimiter\":\",\",\"fileAttributeConfigs\":[{\"id\":\"28d6368c-422c-43da-a063-8003f61f3d0a\",\"csvColumnHeader\":\"Document Title\",\"label\":\"Document Title\",\"primaryAttribute\":true,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentTitle}}\"},{\"id\":\"9640f623-6c4b-42b1-b484-ba8344dc7b75\",\"csvColumnHeader\":\"Document Number\",\"label\":\"Document Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentNumber}}\"},{\"id\":\"6ffb2326-04fe-4fc6-9554-693e9506d513\",\"csvColumnHeader\":\"Major Version Number\",\"label\":\"Major Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MajorVersionNumber}}\"},{\"id\":\"0d0d5abd-4cbc-45a4-8301-9e3de83faa82\",\"csvColumnHeader\":\"Minor Version Number\",\"label\":\"Minor Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MinorVersionNumber}}\"},{\"id\":\"87ee65a1-91ff-4cd3-84cc-3d5beacbb070\",\"csvColumnHeader\":\"Vertebrate Study\",\"label\":\"Vertebrate Study\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":true,\"displayedInFileList\":true,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.VertebrateStudy}}\"}]}"},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"legalBasis","value":"[{\"name\":\"1.1 personal data (incl. geolocation); Article 39(e)(1)\",\"description\":\"any other personal data except for\\n a. the name and address of the applicant;\\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.\",\"reason\":\"Article 39(e)(1) of Regulation (EC) No 178/2002\"},{\"name\":\"1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)\",\"description\":\"personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information\",\"reason\":\"Article 39(e)(2) of Regulation (EC) No 178/2002\"},{\"name\":\"2. manufacturing or production process\",\"description\":\"the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"3. links between a producer and applicant\",\"description\":\"commercial links between a producer or importer and the applicant or the authorisation holder, where applicable;\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"4. commercial information\",\"description\":\"commercial information revealing sourcing, market shares or business strategy of the applicant\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"5. quantitative composition\",\"description\":\"quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"6. specification of impurity\",\"description\":\"the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities\",\"reason\":\"Article 63(2)(b) of Regulation (EC) No 1107/2009\"},{\"name\":\"7. results of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"Article 63(2)(c) of Regulation (EC) No 1107/2009\"},{\"name\":\"8. composition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"Article 63(2)(d) of Regulation (EC) No 1107/2009\"}]"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"PDF_WATERMARK","value":"{\"text\":\"This document is not the property of EFSA and is provided for giving full effect to the right of public\\naccess to documents under EU law. The document may be subject to rights such as intellectual property and\\ncopyrights of third parties. Furthermore, this document may fall under a regulatory data protection regime.\\nConsequently, any publication, distribution, reproduction and/or publishing and any commercial exploitation\\nand use of this document or its contents without the permission of the owner of this document may therefore\\nbe prohibited and violate the rights of its owner.\",\"hexColor\":\"#242121\",\"opacity\":25,\"fontSize\":15,\"fontType\":\"helvetica\",\"orientation\":\"DIAGONAL\"}"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"colors","value":"{\"defaultColor\":\"#abc0c4\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#c498fa\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#9398a0\",\"previewColor\":\"#9398a0\"}"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"fileAttributes","value":"{\"filenameMappingColumnHeaderName\":\"Path\",\"delimiter\":\",\",\"fileAttributeConfigs\":[{\"id\":\"08d6368c-422c-43da-a063-8003f61f3d0a\",\"csvColumnHeader\":\"Document Title\",\"label\":\"Document Title\",\"primaryAttribute\":true,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentTitle}}\"},{\"id\":\"7640f623-6c4b-42b1-b484-ba8344dc7b75\",\"csvColumnHeader\":\"Document Number\",\"label\":\"Document Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentNumber}}\"},{\"id\":\"4ffb2326-04fe-4fc6-9554-693e9506d513\",\"csvColumnHeader\":\"Major Version Number\",\"label\":\"Major Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MajorVersionNumber}}\"},{\"id\":\"ed0d5abd-4cbc-45a4-8301-9e3de83faa82\",\"csvColumnHeader\":\"Minor Version Number\",\"label\":\"Minor Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MinorVersionNumber}}\"},{\"id\":\"87ee65a1-91ff-4cd3-84cc-3d5beacbb070\",\"csvColumnHeader\":\"Vertebrate Study\",\"label\":\"Vertebrate Study\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":true,\"displayedInFileList\":true,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.VertebrateStudy}}\"}]}"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"legalBasis","value":"[{\"name\":\"1.1 personal data (incl. geolocation); Article 39(e)(3)\",\"description\":\"(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)\",\"reason\":\"Article 39(e)(3) of Regulation (EC) No 178/2002\"},{\"name\":\"1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)\",\"description\":\"personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information\",\"reason\":\"Article 39(e)(2) of Regulation (EC) No 178/2002\"},{\"name\":\"2. manufacturing or production process\",\"description\":\"the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"3. links between a producer and applicant\",\"description\":\"commercial links between a producer or importer and the applicant or the authorisation holder, where applicable\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"4. commercial information\",\"description\":\"commercial information revealing sourcing, market shares or business strategy of the applicant\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"5. quantitative composition\",\"description\":\"quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"6. specification of impurity\",\"description\":\"the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities\",\"reason\":\"Article 63(2)(b) of Regulation (EC) No 1107/2009\"},{\"name\":\"7. results of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"Article 63(2)(c) of Regulation (EC) No 1107/2009\"},{\"name\":\"8. composition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"Article 63(2)(d) of Regulation (EC) No 1107/2009\"}]"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"PDF_WATERMARK","value":"{\"text\":\"This document is not the property of EFSA and is provided for giving full effect to the right of public\\naccess to documents under EU law. The document may be subject to rights such as intellectual property and\\ncopyrights of third parties. Furthermore, this document may fall under a regulatory data protection regime.\\nConsequently, any publication, distribution, reproduction and/or publishing and any commercial exploitation\\nand use of this document or its contents without the permission of the owner of this document may therefore\\nbe prohibited and violate the rights of its owner.\",\"hexColor\":\"#242121\",\"opacity\":25,\"fontSize\":15,\"fontType\":\"helvetica\",\"orientation\":\"DIAGONAL\"}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"colors","value":"{\"defaultColor\":\"#abc0c4\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#c498fa\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#9398a0\",\"previewColor\":\"#9398a0\"}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"dossierAttributes","value":"{\"dossierAttributeConfigs\":[{\"id\":\"2884a75c-9be1-4557-824f-c85e3beca515\",\"label\":\"DossierAttributeForDom\",\"editable\":true,\"type\":\"TEXT\",\"placeholder\":\"{{dossier.attribute.Dossierattributefordom}}\"}]}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"fileAttributes","value":"{\"filenameMappingColumnHeaderName\":\"Path\",\"delimiter\":\",\",\"fileAttributeConfigs\":[{\"id\":\"447f9081-b8b8-4743-93a3-63264cfe0fba\",\"csvColumnHeader\":\"Document Number\",\"label\":\"Document Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentNumber}}\"},{\"id\":\"7ae5a81a-2129-4a93-b04d-de5c85234977\",\"csvColumnHeader\":\"Document Title\",\"label\":\"Document Title\",\"primaryAttribute\":true,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentTitle}}\"},{\"id\":\"23236309-2403-4d87-bbc6-41e549fae233\",\"csvColumnHeader\":\"Major Version Number\",\"label\":\"Major Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"NUMBER\",\"placeholder\":\"{{file.attribute.MajorVersionNumber}}\"},{\"id\":\"9ac1b2c8-e888-44ea-8439-84c002d30d32\",\"csvColumnHeader\":\"Minor Version Number\",\"label\":\"Minor Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"NUMBER\",\"placeholder\":\"{{file.attribute.MinorVersionNumber}}\"},{\"id\":\"87ee65a1-91ff-4cd3-84cc-3d5beacbb070\",\"csvColumnHeader\":\"Vertebrate Study\",\"label\":\"Vertebrate Study\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":true,\"displayedInFileList\":true,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.VertebrateStudy}}\"}]}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"legalBasis","value":"[{\"name\":\"1. names and addresses of persons\",\"description\":\"names and addresses of persons involved in testing on vertebrate animals\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2g)\"},{\"name\":\"2. methods of analysis for impurities\",\"description\":\"methods of analysis for impurities in the active substance as manufactured except for methods for impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2d)\"},{\"name\":\"3. method of manufacture\",\"description\":\"the method of manufacture\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2a)\"},{\"name\":\"4. composition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2f)\"},{\"name\":\"5. results of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2c)\"},{\"name\":\"6. specification of impurity of the active substance\",\"description\":\"the specification of impurity of the active substance except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2b)\"},{\"name\":\"7. links between a producer and applicant\",\"description\":\"links between a producer or importer and the applicant or the authorisation holder\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2e)\"}]"}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json new file mode 100644 index 000000000..1c2517af1 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json @@ -0,0 +1,548 @@ +[ + { + "type": "false_positive", + "hexColor": "#ffffff", + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "rank": 1, + "description": null, + "addToDictionaryAction": false, + "label": "False Positive", + "dossierId": "global", + "hint": true, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "formula", + "hexColor": "#036ffc", + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "rank": 1002, + "description": "Empty dictionary used to configure formula colors.", + "addToDictionaryAction": false, + "label": "Formula", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "image", + "hexColor": "#bdd6ff", + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "rank": 999, + "description": "Empty dictionary used to configure image colors.", + "addToDictionaryAction": false, + "label": "Image", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "logo", + "hexColor": "#bdd6ff", + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "rank": 1001, + "description": "Empty dictionary used to configure logo colors.", + "addToDictionaryAction": false, + "label": "Logo", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "ocr", + "hexColor": "#bdd6ff", + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "rank": 1000, + "description": "Empty dictionary used to configure ocr colors.", + "addToDictionaryAction": false, + "label": "Ocr", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "signature", + "hexColor": "#bdd6ff", + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "rank": 1003, + "description": "Empty dictionary used to configure signature colors.", + "addToDictionaryAction": false, + "label": "Signature", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "dossier_redaction", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 1500, + "description": "Entries in this dictionary will only be redacted in this dossier", + "addToDictionaryAction": false, + "label": "Dossier Redaction", + "dossierId": "48c10c3e-9831-4165-a80e-6e96ba2c3e98", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "dossier_redaction", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 1500, + "description": "Entries in this dictionary will only be redacted in this dossier", + "addToDictionaryAction": false, + "label": "Dossier Redaction", + "dossierId": "b2c9c4e5-5382-4862-9402-5b619c41a68c", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "CBI_address", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 140, + "description": "All site names and addresses, and location (e.g. Syngenta, Monthey, GPS Co-ordinates, Mr Smith of … providing the…). Except addresses in published literature and the applicant address.", + "addToDictionaryAction": true, + "label": "CBI Address", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "CBI_author", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 130, + "description": "All authors named in the study documentation. Except names in published literature.", + "addToDictionaryAction": true, + "label": "CBI Author", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "PII", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 150, + "description": "Not authors but listed in the document: Names, signatures, telephone, email etc.; e.g. Reg Manager, QA Manager", + "addToDictionaryAction": true, + "label": "PII", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "false_positive", + "hexColor": "#ffcece", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 160, + "description": "System managed: Filled automatically by user feedback on false positives", + "addToDictionaryAction": false, + "label": "False Positive", + "dossierId": "global", + "hint": true, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "formula", + "hexColor": "#036ffc", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 1002, + "description": "Empty dictionary used to configure formula colors.", + "addToDictionaryAction": false, + "label": "Formula", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "hint_only", + "hexColor": "#fa98f7", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 50, + "description": "Entries of this dictionary will be highlighted only", + "addToDictionaryAction": false, + "label": "Hint Only", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "image", + "hexColor": "#bdd6ff", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 999, + "description": "Empty dictionary used to configure image colors.", + "addToDictionaryAction": false, + "label": "Image", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "logo", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 1001, + "description": "Empty dictionary used to configure logo colors.", + "addToDictionaryAction": false, + "label": "Logo", + "dossierId": "global", + "hint": false, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "must_redact", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 100, + "description": "Entries of this dictionary get redacted wherever found.", + "addToDictionaryAction": false, + "label": "Must Redact", + "dossierId": "global", + "hint": false, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "ocr", + "hexColor": "#bdd6ff", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 1000, + "description": "Empty dictionary used to configure ocr colors.", + "addToDictionaryAction": false, + "label": "Ocr", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "published_information", + "hexColor": "#85ebff", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 70, + "description": "Manual managed list of public journals and papers that need no redaction", + "addToDictionaryAction": true, + "label": "Published Information", + "dossierId": "global", + "hint": true, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "recommendation_CBI_address", + "hexColor": "#8df06c", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 30, + "description": "System managed: Automatically detected recommendations for CBI Address", + "addToDictionaryAction": false, + "label": "Recommendation CBI Address", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": true + }, + { + "type": "recommendation_CBI_author", + "hexColor": "#8df06c", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 40, + "description": "System managed: Automatically detected recommendations for CBI Author", + "addToDictionaryAction": false, + "label": "Recommendation CBI Author", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": true + }, + { + "type": "signature", + "hexColor": "#9398a0", + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "rank": 1003, + "description": "Empty dictionary used to configure signature colors.", + "addToDictionaryAction": false, + "label": "Signature", + "dossierId": "global", + "hint": false, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "dossier_redaction", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 1500, + "description": "Entries in this dictionary will only be redacted in this dossier", + "addToDictionaryAction": false, + "label": "Dossier Redaction", + "dossierId": "d46267c1-bb19-44ca-8c0c-60fb5d5309c5", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "CBI_address", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 140, + "description": "Laboratory Address: Redaction in combination with vertebrates", + "addToDictionaryAction": true, + "label": "CBI Address", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "CBI_author", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 130, + "description": "Study Author: Redaction in combination with vertebrates", + "addToDictionaryAction": true, + "label": "CBI Author", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "CBI_sponsor", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 120, + "description": "Batch Sponsor: Redaction in combination with 'batches produced at'", + "addToDictionaryAction": true, + "label": "CBI Sponsor", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "PII", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 150, + "description": "Personal Identification Information: Redact name, email, phone, fax, ... of employees", + "addToDictionaryAction": true, + "label": "PII", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "false_positive", + "hexColor": "#ffcece", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 160, + "description": "System managed: Filled automatically by user feedback on false positives", + "addToDictionaryAction": false, + "label": "False Positive", + "dossierId": "global", + "hint": true, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "formula", + "hexColor": "#036ffc", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 1002, + "description": "Empty dictionary used to configure formula colors.", + "addToDictionaryAction": false, + "label": "Formula", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "hint_only", + "hexColor": "#fa98f7", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 50, + "description": "Entries of this dictionary will be highlighted only", + "addToDictionaryAction": false, + "label": "Hint Only", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "image", + "hexColor": "#bdd6ff", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 999, + "description": "Empty dictionary used to configure image colors.", + "addToDictionaryAction": false, + "label": "Image", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "logo", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 1001, + "description": "Empty dictionary used to configure logo colors.", + "addToDictionaryAction": false, + "label": "Logo", + "dossierId": "global", + "hint": false, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "must_redact", + "hexColor": "#fa98f7", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 100, + "description": "Forces redaction of CBI Author/Address even if there is no vertebrate", + "addToDictionaryAction": false, + "label": "Must Redact", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "no_redaction_indicator", + "hexColor": "#be85ff", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 80, + "description": "Prevents redaction of CBI Author/Address although there is a vertebrate, e.g. vertebrate and in vitro is found", + "addToDictionaryAction": false, + "label": "No Redaction Indicator", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "ocr", + "hexColor": "#bdd6ff", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 1000, + "description": "Empty dictionary used to configure ocr colors.", + "addToDictionaryAction": false, + "label": "Ocr", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "published_information", + "hexColor": "#85ebff", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 70, + "description": "Manual managed list of public journals and papers that need no redaction", + "addToDictionaryAction": true, + "label": "Published Information", + "dossierId": "global", + "hint": true, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "recommendation_CBI_address", + "hexColor": "#8df06c", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 30, + "description": "System managed: Automatically detected recommendations for CBI Address", + "addToDictionaryAction": false, + "label": "Recommendation CBI Address", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": true + }, + { + "type": "recommendation_CBI_author", + "hexColor": "#8df06c", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 40, + "description": "System managed: Automatically detected recommendations for CBI Author", + "addToDictionaryAction": false, + "label": "Recommendation CBI Author", + "dossierId": "global", + "hint": false, + "caseInsensitive": false, + "recommendation": true + }, + { + "type": "redaction_indicator", + "hexColor": "#ff85f7", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 90, + "description": "Forces redaction of CBI Author/Address even if there is a 'No Redaction Indicator', e.g. vertebrate, in vitro, and in vivo is found", + "addToDictionaryAction": false, + "label": "Redaction Indicator", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "signature", + "hexColor": "#9398a0", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 1003, + "description": "Empty dictionary used to configure signature colors.", + "addToDictionaryAction": false, + "label": "Signature", + "dossierId": "global", + "hint": false, + "caseInsensitive": true, + "recommendation": false + }, + { + "type": "test_method", + "hexColor": "#91fae8", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 60, + "description": "Manual managed list of Test Methods to disambiguate some CBI Authors like Fisher vs Fisher's Test", + "addToDictionaryAction": false, + "label": "Test Method", + "dossierId": "global", + "hint": true, + "caseInsensitive": false, + "recommendation": false + }, + { + "type": "vertebrate", + "hexColor": "#ff85f7", + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "rank": 110, + "description": "List of vertebrates that cause redaction of CBI Author/Address", + "addToDictionaryAction": false, + "label": "Vertebrate", + "dossierId": "global", + "hint": true, + "caseInsensitive": true, + "recommendation": false + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json new file mode 100644 index 000000000..f23fbccf6 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json @@ -0,0 +1 @@ +[{"dossierAttributeId":"2884a75c-9be1-4557-824f-c85e3beca515","value":"Hello World","dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5"}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json new file mode 100644 index 000000000..10ae7807a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json @@ -0,0 +1,50 @@ +[ + { + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "name": "Manual Redaction", + "description": "Only manual redactions.", + "dateAdded": "2021-11-15T13:27:30Z", + "dateModified": "2021-11-16T08:15:57Z", + "createdBy": "ad4c802c-907b-41f2-8afa-9fa37e29c004", + "modifiedBy": "3f928d0d-79af-44b7-9398-294369fe65ac", + "validFrom": null, + "validTo": null, + "downloadFileTypes": [ + "PREVIEW", + "REDACTED" + ], + "deleted": true + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "name": "EFSA sanitisation GFL v1", + "description": "Redact all authors, laboratory addresses and other geolocation.", + "dateAdded": "2021-11-15T13:26:59Z", + "dateModified": "2021-07-19T08:09:27Z", + "createdBy": "e3aed6ea-a9e5-4f3f-bde7-6f0fe0c4362c", + "modifiedBy": "e3aed6ea-a9e5-4f3f-bde7-6f0fe0c4362c", + "validFrom": null, + "validTo": null, + "downloadFileTypes": [ + "PREVIEW", + "REDACTED" + ], + "deleted": false + }, + { + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "name": "EFSA sanitisation pre GFL v1", + "description": "Redact authors and laboratory addresses in combination with a vertebrate.", + "dateAdded": "2021-11-15T13:24:40Z", + "dateModified": "2021-11-15T13:27:17Z", + "createdBy": "System", + "modifiedBy": null, + "validFrom": null, + "validTo": null, + "downloadFileTypes": [ + "PREVIEW", + "REDACTED" + ], + "deleted": false + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json new file mode 100644 index 000000000..604b1451e --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json @@ -0,0 +1 @@ +[{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierName":"Dom2","date":"2021-11-15T13:27:48Z","description":"","status":"ACTIVE","ownerId":"f8960240-9973-42e9-9b0f-ed096ff5a018","memberIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"approverIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"downloadFileTypes":["PREVIEW","REDACTED"],"reportTypes":[],"dueDate":null,"reportTemplateIds":["e37613cb-e093-49af-ae69-5678148c29b8"],"watermarkEnabled":true,"watermarkPreviewEnabled":false,"softDeletedTime":null,"hardDeletedTime":null},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierName":"Dom1","date":"2021-11-15T13:27:19Z","description":"","status":"ACTIVE","ownerId":"f8960240-9973-42e9-9b0f-ed096ff5a018","memberIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"approverIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"downloadFileTypes":["PREVIEW","REDACTED"],"reportTypes":[],"dueDate":null,"reportTemplateIds":["75674b0f-7c70-4903-b30a-2a4aa330b6b1","87553a68-49e7-4bb6-9af7-263dcb81e964","e2eff609-1dbb-4f10-a1a2-de71f03e5875","e37613cb-e093-49af-ae69-5678148c29b8"],"watermarkEnabled":true,"watermarkPreviewEnabled":false,"softDeletedTime":null,"hardDeletedTime":null},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierName":"Dom3","date":"2021-11-15T13:28:31Z","description":"","status":"ACTIVE","ownerId":"f8960240-9973-42e9-9b0f-ed096ff5a018","memberIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"approverIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"downloadFileTypes":["PREVIEW","REDACTED"],"reportTypes":[],"dueDate":null,"reportTemplateIds":["bb18db9e-2730-403c-90c0-d306aac06284"],"watermarkEnabled":true,"watermarkPreviewEnabled":false,"softDeletedTime":null,"hardDeletedTime":null}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json new file mode 100644 index 000000000..e5be4aeeb --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json @@ -0,0 +1,243 @@ +[ + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "!BACON", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "#210 South Railway P.O. Box 144 Minto, MB ROK 1MO", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "#93-9017", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "'s-Hertogenbosch, The Netherlands", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "(AMBIS, Inc.", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "(Bray), Wicklow, Ireland", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "(Mobec, Inc.", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "-Nobel-Str. 50, D-40789 Monheim am Rhein", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "/ Agrisearch Italia SRL", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "04827 Gerichshain, Germany", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "06º 04' 32'", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "1 Rue Petits Champs Varennes Sur Loire 49730", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "10/036-001E", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "10/036-002P", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105-141", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105-142", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105-144", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-105", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-106A", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-108", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-10i3", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-119", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-123A", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-1C8", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "105A-l06A", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "107 Morgan Lane Plainsboro, NJ 08536", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "107 Morgan Lane Plainsboro, NJ 08536-3339", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "107 Morgan Lane Plainsboro, New Jersey", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "107 Morgan Lane, Plainsboro, NJ 08536", + "version": 2, + "deleted": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "dossierId": "global", + "type": "CBI_address", + "value": "1095 Morris Avenue P.O. Box 3182 Union, NJ 07083-1982", + "version": 2, + "deleted": false + } +] + diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json new file mode 100644 index 000000000..f1b741923 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json @@ -0,0 +1 @@ +[{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"098b5b8902948267592b834da36d5c2a","filename":"VV-640504.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":39,"added":"2021-11-15T13:28:26Z","lastUpdated":"2021-11-15T13:33:11Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:11Z","lastUploaded":"2021-11-15T13:28:26Z","analysisDuration":322,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Dicamba/2,4-D SL (A10187A) – Acute toxicity to the honeybee Apis mellivera L. under laboratory conditions","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-640504","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"1a9168fdad57f5134d0f53053106d599","filename":"VV-740921.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":5,"added":"2021-11-15T13:28:20Z","lastUpdated":"2021-11-15T13:34:35Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":5,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":false,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:35Z","lastUploaded":"2021-11-15T13:28:20Z","analysisDuration":163,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Mesotrione/S-Metolachlor SE (A12909Q) +\nMesotrione/Nicosulfuron OD (A14351BX) - Acute Toxicity to the\nHoneybee Apis mellifera L. under Laboratory Conditions","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-740921","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"2eb362b5499f95079ade4b71897913fa","filename":"VV-314726.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":5,"added":"2021-11-15T13:28:18Z","lastUpdated":"2021-11-15T13:33:04Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":false,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:04Z","lastUploaded":"2021-11-15T13:28:18Z","analysisDuration":55,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"PP067","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-314726","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"6026e7cba4a3e3c45cd2f61835d0aab6","filename":"VV-734959.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":5,"added":"2021-11-15T13:28:18Z","lastUpdated":"2021-11-15T13:34:29Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":5,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:29Z","lastUploaded":"2021-11-15T13:28:18Z","analysisDuration":163,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Cyprodinil/Dithianon SC (A20886E) - Effects on the Reproduction of the Predatory Mite Hypoaspis aculeifer","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-734959","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"67acdc7b5b94c489ee286b36a33f997d","filename":"VV-306106.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":9,"added":"2021-11-15T13:28:20Z","lastUpdated":"2021-11-15T13:33:00Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":false,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:00Z","lastUploaded":"2021-11-15T13:28:20Z","analysisDuration":65,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Acute oral LD50 in the Japanese quail of C 1414 + CGA 55186 (400+027) EC 427","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-306106","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"a7985c094cac62118c9b350461902f95","filename":"VV-734958.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":31,"added":"2021-11-15T13:28:24Z","lastUpdated":"2021-11-15T13:34:26Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":"2021-11-15T13:34:16Z","hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:26Z","lastUploaded":"2021-11-15T13:28:24Z","analysisDuration":360,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Cyprodinil/Dithianon SC (A20886E) - Effects on the Reproduction of the Predatory Mite Hypoaspis aculeifer","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-734958","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":true,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"a7f0e789b7d3075fd181c0fe45c01158","filename":"VV-740920.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":44,"added":"2021-11-15T13:28:26Z","lastUpdated":"2021-11-15T13:34:32Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:32Z","lastUploaded":"2021-11-15T13:28:26Z","analysisDuration":332,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Mesotrione/S-Metolachlor SE (A12909Q) +\nMesotrione/Nicosulfuron OD (A14351BX) - Acute Toxicity to the\nHoneybee Apis mellifera L. under Laboratory Conditions","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-740920","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"b3d1a1c211efb8014d573df98235a7ee","filename":"VV-306110.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":8,"added":"2021-11-15T13:28:20Z","lastUpdated":"2021-11-15T13:33:01Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:01Z","lastUploaded":"2021-11-15T13:28:20Z","analysisDuration":63,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Acute oral LD50 in the Japanese quail of C 1414 + CGA 55186 (100+015) ULV 115 (A-6386 A)","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-306110","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"cb16007523bd8c2a1ad77600ba592505","filename":"VV-300093.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":8,"added":"2021-11-15T13:28:18Z","lastUpdated":"2021-11-15T13:32:51Z","deleted":null,"lastProcessed":"2021-11-15T13:32:28Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:32:51Z","lastUploaded":"2021-11-15T13:28:18Z","analysisDuration":176,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"\"8-day-feeding toxicity\" in the Japanese quail of C 2242 + CMPP WP 60 (A-5372 A)","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-300093","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"d3ecc6843b712a59e6f5d81dff9d3808","filename":"VV-358220.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":53,"added":"2021-11-15T13:28:29Z","lastUpdated":"2021-11-15T13:33:08Z","deleted":null,"lastProcessed":"2021-11-15T13:32:28Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:08Z","lastUploaded":"2021-11-15T13:28:29Z","analysisDuration":256,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Catfish bioaccumulation study following exposure to 14C-metolachlor in a soil / water / fish ecosystem","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-358220","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"1dcb49c006aa0652c2447671f0e5c903","filename":"S-Metolachlor_RAR_09_Volume_3CA_B-7_2018-09-06.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":187,"added":"2021-11-15T13:27:58Z","lastUpdated":"2021-11-15T13:30:19Z","deleted":null,"lastProcessed":"2021-11-15T13:30:19Z","numberOfAnalyses":3,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:58Z","analysisDuration":8919,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"220ab22e443c8e32d3778b0937b03170","filename":"S-Metolachlor_RAR_01_Volume_1_2018-09-06.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":221,"added":"2021-11-15T13:28:04Z","lastUpdated":"2021-11-15T13:30:14Z","deleted":null,"lastProcessed":"2021-11-15T13:30:14Z","numberOfAnalyses":4,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:04Z","analysisDuration":3457,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"5ac5c1e82f94fab776fbb6a67dc0efce","filename":"S-Metolachlor_RAR_21_Volume_3CP_A9396G_B-9_2018-09-06.pdf","status":"UNDER_APPROVAL","lastSuccessfulStatus":"UNDER_APPROVAL","numberOfPages":190,"added":"2021-11-15T13:27:58Z","lastUpdated":"2021-11-15T13:31:58Z","deleted":null,"lastProcessed":"2021-11-15T13:30:31Z","numberOfAnalyses":4,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:58Z","analysisDuration":17555,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"a1ac57eab398f23ad8f7ce702ce3935b","filename":"S-Metolachlor_RAR_12_Volume_3CA_B-9_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":499,"added":"2021-11-15T13:28:23Z","lastUpdated":"2021-11-15T13:31:36Z","deleted":null,"lastProcessed":"2021-11-15T13:31:36Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":32,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:23Z","analysisDuration":82288,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"b96a63098e0e63d8ef452a6ee3bea3d1","filename":"S-Metolachlor_RAR_07_Volume_3CA_B-5_2018-09-06.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":94,"added":"2021-11-15T13:27:44Z","lastUpdated":"2021-11-15T13:30:27Z","deleted":null,"lastProcessed":"2021-11-15T13:30:27Z","numberOfAnalyses":3,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:44Z","analysisDuration":8647,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"cca77a1cb4355da3fb9bc7b46cffc228","filename":"S-Metolachlor_RAR_02_Volume_2_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":277,"added":"2021-11-15T13:27:43Z","lastUpdated":"2021-11-15T13:33:29Z","deleted":null,"lastProcessed":"2021-11-15T13:33:29Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:43Z","analysisDuration":182211,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"cd2f7a6770116aa36867fd68245ebfd6","filename":"S-Metolachlor_RAR_08_Volume_3CA_B-6_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":532,"added":"2021-11-15T13:28:26Z","lastUpdated":"2021-11-15T13:32:05Z","deleted":null,"lastProcessed":"2021-11-15T13:32:05Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:26Z","analysisDuration":94404,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"d0a46e8329f016f0ac0844f1097f15a5","filename":"S-Metolachlor_RAR_18_Volume_3CP_A9396G_B-6_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":30,"added":"2021-11-15T13:27:40Z","lastUpdated":"2021-11-15T13:30:55Z","deleted":null,"lastProcessed":"2021-11-15T13:30:55Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:40Z","analysisDuration":1637,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"28ba6d7ae90b0f58859659d5fd1f519f","filename":"55 Fludioxonil_RAR_10_Volume_3CA_B-6_Annex2_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":44,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:27Z","deleted":null,"lastProcessed":"2021-11-15T13:31:27Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":1572,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"48178ab64e8fb35943c4f41ed0676b44","filename":"57 Fludioxonil_RAR_14_Volume_3CA_B-9_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":414,"added":"2021-11-15T13:29:32Z","lastUpdated":"2021-11-15T13:32:26Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:32Z","analysisDuration":60828,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"4f3b728a2600c85e50b2350f3e087418","filename":"61 Fludioxonil_RAR_24_Volume_3CP_A8240D_B-2_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":16,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:27Z","deleted":null,"lastProcessed":"2021-11-15T13:31:27Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":942,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"630157aa65fe8171c022fc1cbe508b6b","filename":"63 Fludioxonil_RAR_28_Volume_3CP_A8240D_B-6_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":59,"added":"2021-11-15T13:28:54Z","lastUpdated":"2021-11-15T13:31:29Z","deleted":null,"lastProcessed":"2021-11-15T13:31:29Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:54Z","analysisDuration":1512,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"6a32e3a872f7515ed00f8a2ad61e2a44","filename":"58 Fludioxonil_RAR_16_Volume_3CP_A8207M_B-2_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":18,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:30Z","deleted":null,"lastProcessed":"2021-11-15T13:31:30Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":1160,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"705e93ca3173f44bd28e68a4b5852bb8","filename":"64 Fludioxonil_RAR_30_Volume_3CP_A8240D_B-9_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":122,"added":"2021-11-15T13:29:00Z","lastUpdated":"2021-11-15T13:31:34Z","deleted":null,"lastProcessed":"2021-11-15T13:31:34Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:00Z","analysisDuration":3766,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"83e1e8af2b108f52b9c3d675737323a9","filename":"54 Fludioxonil_RAR_09_Volume_3CA_B-6_Annex1_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":29,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:35Z","deleted":null,"lastProcessed":"2021-11-15T13:31:35Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":618,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"987b67e62979568205a30d4256ac2a4d","filename":"51 Fludioxonil_RAR_02_Volume_2_2018-02-21.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":220,"added":"2021-11-15T13:29:01Z","lastUpdated":"2021-11-19T09:32:32Z","deleted":null,"lastProcessed":"2021-11-15T13:33:34Z","numberOfAnalyses":3,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":"2021-11-19T09:32:46Z","hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:01Z","analysisDuration":119242,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":true,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"9b688175babfc73f67511cff52a4647e","filename":"56 Fludioxonil_RAR_12_Volume_3CA_B-7_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":244,"added":"2021-11-15T13:29:22Z","lastUpdated":"2021-11-15T13:31:53Z","deleted":null,"lastProcessed":"2021-11-15T13:31:53Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:22Z","analysisDuration":16704,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"9bf53c727f6324f80ea2525a51ba8105","filename":"52 Fludioxonil_RAR_07_Volume_3CA_B-5_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":180,"added":"2021-11-15T13:29:17Z","lastUpdated":"2021-11-15T13:32:19Z","deleted":null,"lastProcessed":"2021-11-15T13:32:19Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:17Z","analysisDuration":25869,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"af2dc100722060d9744f99648db24c81","filename":"53 Fludioxonil_RAR_08_Volume_3CA_B-6_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":403,"added":"2021-11-15T13:29:36Z","lastUpdated":"2021-11-15T13:32:41Z","deleted":null,"lastProcessed":"2021-11-15T13:32:41Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:36Z","analysisDuration":35160,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"b9c0a97029bc3907c2e23cba0455b5f3","filename":"62 Fludioxonil_RAR_26_Volume_3CP_A8240D_B-4_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":10,"added":"2021-11-15T13:28:48Z","lastUpdated":"2021-11-15T13:32:19Z","deleted":null,"lastProcessed":"2021-11-15T13:32:19Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:48Z","analysisDuration":295,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"dc036e3079144554ebb0f90904d7f459","filename":"59 Fludioxonil_RAR_20_Volume_3CP_A8207M_B-6_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":39,"added":"2021-11-15T13:28:53Z","lastUpdated":"2021-11-15T13:32:20Z","deleted":null,"lastProcessed":"2021-11-15T13:32:20Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:53Z","analysisDuration":946,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"e08b4f6546a0b2807f6793715bc767ec","filename":"60 Fludioxonil_RAR_22_Volume_3CP_A8207M_B-9_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":89,"added":"2021-11-15T13:28:57Z","lastUpdated":"2021-11-15T13:32:23Z","deleted":null,"lastProcessed":"2021-11-15T13:32:23Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:57Z","analysisDuration":2635,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"fd951b57da9745c7a0e437775e43c1f7","filename":"50 Fludioxonil_RAR_01_Volume_1_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":165,"added":"2021-11-15T13:29:12Z","lastUpdated":"2021-11-15T13:32:28Z","deleted":null,"lastProcessed":"2021-11-15T13:32:28Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:12Z","analysisDuration":4765,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json new file mode 100644 index 000000000..a72440c7e --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json @@ -0,0 +1,12 @@ +[ + { + "id": "7ea3281320851f12dda397ef35315029", + "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", + "status": "APPROVED", + "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "requestDate": "2021-11-15T13:33:53Z", + "processedDate": null, + "softDeletedTime": null, + "fileId": "a7985c094cac62118c9b350461902f95" + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json new file mode 100644 index 000000000..a6084e2a3 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json @@ -0,0 +1,13 @@ +[ + { + "id": "0284267db2bee9fe21fd8aab681664c5", + "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", + "status": "APPROVED", + "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "section": "", + "requestDate": "2021-11-15T13:33:41Z", + "processedDate": null, + "softDeletedTime": null, + "fileId": "a7985c094cac62118c9b350461902f95" + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json new file mode 100644 index 000000000..bfdc5ad2b --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json @@ -0,0 +1,29 @@ +[ + { + "id": "82f1e0aee6c825a0a8519b0f1d812df7", + "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", + "type": "manual", + "value": "Cyprodinil/Dithianon", + "reason": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "section": null, + "positions": [ + { + "topLeft": { + "x": 259.19, + "y": 648.586 + }, + "width": 110.832, + "height": 16.584, + "page": 1 + } + ], + "status": "APPROVED", + "addToDictionary": false, + "addToDossierDictionary": false, + "requestDate": "2021-11-15T13:33:30Z", + "processedDate": "2021-11-15T13:33:30Z", + "softDeletedTime": null, + "fileId": "a7985c094cac62118c9b350461902f95" + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json new file mode 100644 index 000000000..c72c48380 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json @@ -0,0 +1,20 @@ +[ + { + "id": "474c3e04-3ab5-4f05-a80d-168f5c348bf6", + "date": "2021-11-19T09:32:46Z", + "text": "Hi this a comment", + "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", + "softDeletedTime": null, + "fileId": "987b67e62979568205a30d4256ac2a4d", + "annotationId": "dc0a1380cbd6fcff2ceb4a1ccec4a252" + }, + { + "id": "7ff2936f-68ff-4164-a788-ace1f953bb9c", + "date": "2021-11-15T13:33:30Z", + "text": "frgrtgrtgtrgtr", + "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", + "softDeletedTime": null, + "fileId": "a7985c094cac62118c9b350461902f95", + "annotationId": "82f1e0aee6c825a0a8519b0f1d812df7" + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json new file mode 100644 index 000000000..706e289cb --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json @@ -0,0 +1,12 @@ +[ + { + "id": "79076b24b707268b3c27874a71494082", + "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", + "status": "APPROVED", + "removeFromDictionary": false, + "requestDate": "2021-11-15T13:34:16Z", + "processedDate": "2021-11-15T13:34:16Z", + "softDeletedTime": null, + "fileId": "a7985c094cac62118c9b350461902f95" + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json new file mode 100644 index 000000000..58f7b6ddb --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json @@ -0,0 +1,98 @@ +[ + { + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "templateId": "3faddf0b-5d59-4b2f-b568-458ede09eb9b", + "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Justification Appendix A1.docx", + "fileName": "Justification Appendix A1.docx", + "uploadDate": "2021-11-15T13:27:30Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "templateId": "6964c53b-005f-4731-82a0-84b30210ab33", + "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Excel Report.xlsx", + "fileName": "Excel Report.xlsx", + "uploadDate": "2021-11-15T13:27:30Z", + "multiFileReport": true + }, + { + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "templateId": "7cc992f1-3e46-48fb-8a75-b5b2f33ebe88", + "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Justification Appendix A2.docx", + "fileName": "Justification Appendix A2.docx", + "uploadDate": "2021-11-15T13:27:30Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", + "templateId": "f74130a9-c875-4926-95c1-405d2e272ada", + "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Excel Report.xlsx", + "fileName": "Excel Report.xlsx", + "uploadDate": "2021-11-15T13:27:30Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "templateId": "75674b0f-7c70-4903-b30a-2a4aa330b6b1", + "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Excel Report.xlsx", + "fileName": "Excel Report.xlsx", + "uploadDate": "2021-11-15T13:26:59Z", + "multiFileReport": true + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "templateId": "87553a68-49e7-4bb6-9af7-263dcb81e964", + "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Justification Appendix A1.docx", + "fileName": "Justification Appendix A1.docx", + "uploadDate": "2021-11-15T13:27:00Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "templateId": "e2eff609-1dbb-4f10-a1a2-de71f03e5875", + "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Excel Report.xlsx", + "fileName": "Excel Report.xlsx", + "uploadDate": "2021-11-15T13:26:59Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", + "templateId": "e37613cb-e093-49af-ae69-5678148c29b8", + "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Justification Appendix A2.docx", + "fileName": "Justification Appendix A2.docx", + "uploadDate": "2021-11-15T13:27:00Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "templateId": "14a73f71-65bc-4fb9-8319-c11ba9d97e47", + "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Justification Appendix A1.docx", + "fileName": "Justification Appendix A1.docx", + "uploadDate": "2021-11-15T13:27:17Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "templateId": "345d8544-cd4e-4321-bd3a-8217d9d2f1b3", + "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Excel Report.xlsx", + "fileName": "Excel Report.xlsx", + "uploadDate": "2021-11-15T13:27:17Z", + "multiFileReport": false + }, + { + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "templateId": "5c78a098-6020-4cf9-b610-5b2422f98d29", + "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Excel Report.xlsx", + "fileName": "Excel Report.xlsx", + "uploadDate": "2021-11-15T13:27:17Z", + "multiFileReport": true + }, + { + "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", + "templateId": "bb18db9e-2730-403c-90c0-d306aac06284", + "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Justification Appendix A2.docx", + "fileName": "Justification Appendix A2.docx", + "uploadDate": "2021-11-15T13:27:18Z", + "multiFileReport": false + } +] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json new file mode 100644 index 000000000..634a48c46 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json @@ -0,0 +1 @@ +[{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","dossierId":"global","versionType":0,"version":1},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","dossierId":"global","versionType":1,"version":6},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","dossierId":"global","versionType":2,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","versionType":1,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","versionType":1,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"global","versionType":0,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"global","versionType":1,"version":33},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"global","versionType":2,"version":1},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","versionType":1,"version":1},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"global","versionType":0,"version":2},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"global","versionType":1,"version":58},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"global","versionType":2,"version":1}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json new file mode 100644 index 000000000..2f2f3434e --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json @@ -0,0 +1 @@ +[{"fileId":"a7985c094cac62118c9b350461902f95","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","page":1},{"fileId":"a7985c094cac62118c9b350461902f95","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","page":5},{"fileId":"a7985c094cac62118c9b350461902f95","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","page":6}] \ No newline at end of file