From 280ac027c16e7d94204c6347ae5ac2ab7428b81b Mon Sep 17 00:00:00 2001 From: maverickstuder Date: Tue, 26 Mar 2024 12:09:51 +0100 Subject: [PATCH] RED-8702: Explore document databases to store entityLog * now using shared mongo --- .../build.gradle.kts | 10 +- .../redaction/v1/server/Application.java | 5 +- .../EntityLogDocumentNotFoundException.java | 10 - .../mongo/EntityLogDocumentRepository.java | 15 - .../EntityLogEntryDocumentRepository.java | 23 - .../server/mongo/EntityLogMongoService.java | 255 - .../storage/RedactionStorageService.java | 2 +- .../src/main/resources/application.yml | 8 +- .../AbstractRedactionIntegrationTest.java | 4 +- .../v1/server/MyMongoLiquibaseTest.java | 52 - .../redaction/v1/server/MyMongoTest.java | 101 - .../redaction/v1/server/MyOtherMongoTest.java | 398 - ...4b5d4e11211fc0d7732fd45b78.ENTITY_LOG.json | 65652 -------- ...4dca0aa1aa0ebbfc5cc1462df0.ENTITY_LOG.json | 30537 ---- .../mongo/bigentityfileid.ENTITY_LOG.json | 120327 -------------- .../changelog/mongo.changelog-tenant.xml | 7 - ...ial-database.changelog-with-validation.xml | 224 - .../tenant/1-initial-database.changelog.xml | 17 - .../tenant/2-create-indices-for-entries.xml | 37 - ...ove-entry-number-of-comments.changelog.xml | 26 - .../mongo/upd_bigentityfileid.ENTITY_LOG.json | 120408 --------------- 21 files changed, 15 insertions(+), 338103 deletions(-) delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentNotFoundException.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentRepository.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogEntryDocumentRepository.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogMongoService.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoLiquibaseTest.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoTest.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyOtherMongoTest.java delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/6f2a9d4b5d4e11211fc0d7732fd45b78.ENTITY_LOG.json delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/b2cbdd4dca0aa1aa0ebbfc5cc1462df0.ENTITY_LOG.json delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/bigentityfileid.ENTITY_LOG.json delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/mongo.changelog-tenant.xml delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog-with-validation.xml delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog.xml delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/2-create-indices-for-entries.xml delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/example-remove-entry-number-of-comments.changelog.xml delete mode 100644 redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/upd_bigentityfileid.ENTITY_LOG.json diff --git a/redaction-service-v1/redaction-service-server-v1/build.gradle.kts b/redaction-service-v1/redaction-service-server-v1/build.gradle.kts index b5839535..eb58e80c 100644 --- a/redaction-service-v1/redaction-service-server-v1/build.gradle.kts +++ b/redaction-service-v1/redaction-service-server-v1/build.gradle.kts @@ -16,7 +16,7 @@ val layoutParserVersion = "0.96.0" val jacksonVersion = "2.15.2" val droolsVersion = "9.44.0.Final" val pdfBoxVersion = "3.0.0" -val persistenceServiceVersion = "maverick-mongo" +val persistenceServiceVersion = "1.0-SNAPSHOT" val springBootStarterVersion = "3.1.5" val springCloudVersion = "4.0.4" val testContainersVersion = "1.19.7" @@ -33,7 +33,7 @@ dependencies { implementation(project(":redaction-service-api-v1")) { exclude(group = "com.iqser.red.service", module = "persistence-service-internal-api-v1") } implementation("com.iqser.red.service:persistence-service-internal-api-v1:${persistenceServiceVersion}") { exclude(group = "org.springframework.boot") } - implementation("com.iqser.red.service:persistence-service-processor-v1:${persistenceServiceVersion}") + implementation("com.iqser.red.service:persistence-service-shared-mongo-v1:${persistenceServiceVersion}") implementation("com.knecon.fforesight:layoutparser-service-internal-api:${layoutParserVersion}") implementation("com.iqser.red.commons:spring-commons:6.2.0") @@ -42,7 +42,6 @@ dependencies { implementation("com.iqser.red.commons:dictionary-merge-commons:1.5.0") implementation("com.iqser.red.commons:storage-commons:2.45.0") implementation("com.knecon.fforesight:tenant-commons:maverick-mongo") - implementation("com.knecon.fforesight:mongo-database-commons:maverick-mongo6") implementation("com.knecon.fforesight:tracing-commons:0.5.0") implementation("com.fasterxml.jackson.module:jackson-module-afterburner:${jacksonVersion}") @@ -60,17 +59,12 @@ dependencies { implementation("org.springframework.boot:spring-boot-starter-amqp:${springBootStarterVersion}") implementation("org.springframework.boot:spring-boot-starter-cache:${springBootStarterVersion}") implementation("org.springframework.boot:spring-boot-starter-data-redis:${springBootStarterVersion}") - implementation("org.springframework.boot:spring-boot-starter-data-mongodb:${springBootStarterVersion}") implementation("net.logstash.logback:logstash-logback-encoder:7.4") implementation("ch.qos.logback:logback-classic") implementation("org.reflections:reflections:0.10.2") - //todo 8702: remove this - implementation("org.liquibase:liquibase-core:4.20.0") - implementation("org.liquibase.ext:liquibase-mongodb:4.20.0") - testImplementation(project(":rules-management")) testImplementation("org.apache.pdfbox:pdfbox:${pdfBoxVersion}") testImplementation("org.apache.pdfbox:pdfbox-tools:${pdfBoxVersion}") diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/Application.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/Application.java index 1892f9fa..e5b10742 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/Application.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/Application.java @@ -17,6 +17,7 @@ import org.springframework.context.annotation.Import; import org.springframework.data.mongodb.repository.config.EnableMongoRepositories; import com.iqser.red.service.dictionarymerge.commons.DictionaryMergeService; +import com.iqser.red.service.persistence.service.v1.api.shared.mongo.SharedMongoAutoConfiguration; import com.iqser.red.service.redaction.v1.server.client.RulesClient; import com.iqser.red.storage.commons.StorageAutoConfiguration; import com.knecon.fforesight.mongo.database.commons.MongoDatabaseCommonsAutoConfiguration; @@ -28,11 +29,11 @@ import io.micrometer.observation.ObservationRegistry; import io.micrometer.observation.aop.ObservedAspect; @EnableCaching -@ImportAutoConfiguration({MultiTenancyAutoConfiguration.class}) +@ImportAutoConfiguration({MultiTenancyAutoConfiguration.class, SharedMongoAutoConfiguration.class}) @Import({MetricsConfiguration.class, StorageAutoConfiguration.class, MongoDatabaseCommonsAutoConfiguration.class}) @EnableFeignClients(basePackageClasses = RulesClient.class) @EnableConfigurationProperties(RedactionServiceSettings.class) -@EnableMongoRepositories +@EnableMongoRepositories(basePackages = "com.iqser.red.service.persistence") @SpringBootApplication(exclude = {SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class, DataSourceAutoConfiguration.class, LiquibaseAutoConfiguration.class, MongoAutoConfiguration.class, MongoDataAutoConfiguration.class}) public class Application { diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentNotFoundException.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentNotFoundException.java deleted file mode 100644 index 50ac364e..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentNotFoundException.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.iqser.red.service.redaction.v1.server.mongo; - -public class EntityLogDocumentNotFoundException extends RuntimeException { - - public EntityLogDocumentNotFoundException(String errorMessage) { - - super(errorMessage); - } - -} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentRepository.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentRepository.java deleted file mode 100644 index 85947bd9..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogDocumentRepository.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.iqser.red.service.redaction.v1.server.mongo; - -import java.util.Optional; - -import org.springframework.data.mongodb.repository.MongoRepository; -import org.springframework.data.mongodb.repository.Query; -import org.springframework.data.repository.query.Param; - -import com.iqser.red.service.persistence.management.v1.processor.document.EntityLogDocument; - -public interface EntityLogDocumentRepository extends MongoRepository { - - @Query(value = "{ '_id' : ?0 }", fields = "{ 'analysisNumber' : 1 }") - Optional findAnalysisNumberById(@Param("_id") String id); -} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogEntryDocumentRepository.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogEntryDocumentRepository.java deleted file mode 100644 index 1ea908bf..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogEntryDocumentRepository.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.iqser.red.service.redaction.v1.server.mongo; - -import java.util.List; - -import org.springframework.data.mongodb.repository.MongoRepository; -import org.springframework.data.mongodb.repository.Query; - -import com.iqser.red.service.persistence.management.v1.processor.document.EntityLogEntryDocument; - -public interface EntityLogEntryDocumentRepository extends MongoRepository { - - @Query("{ 'entityLogId' : ?0, 'manualChanges' : { $exists: true, $not: { $size: 0 } } }") - List findByEntityLogIdAndManualChangesNotEmpty(String entityLogId); - - @Query("{ 'entityLogId' : ?0, 'changes.analysisNumber' : ?1 }") - List findByEntityLogIdAndChangesAnalysisNumber(String entityLogId, int analysisNumber); - - @Query("{ 'entityLogId' : ?0}") - List findByEntityLogId(String entityLogId); - - @Query(value = "{ 'entityLogId' : ?0}", delete = true) - void deleteByEntityLogId(String entityLogId); -} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogMongoService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogMongoService.java deleted file mode 100644 index 0e925153..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/mongo/EntityLogMongoService.java +++ /dev/null @@ -1,255 +0,0 @@ -package com.iqser.red.service.redaction.v1.server.mongo; - -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Optional; -import java.util.stream.Collectors; - -import org.springframework.stereotype.Service; - -import com.iqser.red.service.persistence.management.v1.processor.document.EntityLogDocument; -import com.iqser.red.service.persistence.management.v1.processor.document.EntityLogEntryDocument; -import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.EntityLog; -import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.EntityLogEntry; - -import jakarta.transaction.Transactional; - -@Service -public class EntityLogMongoService { - - private final EntityLogDocumentRepository entityLogDocumentRepository; - private final EntityLogEntryDocumentRepository entityLogEntryDocumentRepository; - - - public EntityLogMongoService(EntityLogDocumentRepository entityLogDocumentRepository, EntityLogEntryDocumentRepository entityLogEntryDocumentRepository) { - - this.entityLogDocumentRepository = entityLogDocumentRepository; - this.entityLogEntryDocumentRepository = entityLogEntryDocumentRepository; - } - - - @Transactional - public void insertEntityLog(String dossierId, String fileId, EntityLog entityLog) { - - EntityLogDocument entityLogDocument = entityLogDocumentRepository.insert(new EntityLogDocument(dossierId, fileId, entityLog)); - - entityLogEntryDocumentRepository.insert(entityLog.getEntityLogEntry() - .stream() - .map(entityLogEntry -> new EntityLogEntryDocument(entityLogDocument.getId(), entityLogEntry)).distinct() - .toList()); - } - - - // this does everything : insert when not found and update if found - // todo: remove and replace when services use insert,update,delete correctly - @Transactional - public void saveEntityLog(String dossierId, String fileId, EntityLog entityLog) { - - Optional optionalEntityLogDocument = entityLogDocumentRepository.findById(EntityLogDocument.getDocumentId(dossierId, fileId)); - System.out.println("8702 DEBUG - save entity log"); - if (optionalEntityLogDocument.isEmpty()) { - System.out.println("8702 DEBUG - executing insert"); - // throw new EntityLogDocumentNotFoundException(String.format("Entity log for dossier %s and file %s not found.", dossierId, fileId)); - insertEntityLog(dossierId, fileId, entityLog); - return; - } - - System.out.println("8702 DEBUG - executing update"); - EntityLogDocument oldEntityLogDocument = optionalEntityLogDocument.get(); - List oldEntityLogEntryDocuments = oldEntityLogDocument.getEntityLogEntryDocument(); - System.out.println("8702 DEBUG - oldEntityLogEntryDocuments " + oldEntityLogEntryDocuments.size()); - - EntityLogDocument newEntityLogDocument = new EntityLogDocument(dossierId, fileId, entityLog); - List newEntityLogEntryDocuments = newEntityLogDocument.getEntityLogEntryDocument(); - System.out.println("8702 DEBUG - newEntityLogEntryDocuments " + newEntityLogEntryDocuments.size()); - - List toUpdate = new ArrayList<>(newEntityLogEntryDocuments); - toUpdate.retainAll(oldEntityLogEntryDocuments); - - List toRemove = new ArrayList<>(oldEntityLogEntryDocuments); - toRemove.removeAll(toUpdate); - - List toInsert = new ArrayList<>(newEntityLogEntryDocuments); - toInsert.removeAll(toUpdate); - - toInsert.forEach(System.out::println); - - System.out.println("8702 DEBUG - saving toUpdate " + toUpdate.size()); - entityLogEntryDocumentRepository.saveAll(toUpdate); - System.out.println("8702 DEBUG - deleting toRemove " + toRemove.size()); - entityLogEntryDocumentRepository.deleteAll(toRemove); - System.out.println("8702 DEBUG - inserting toInsert " + toInsert.size()); - System.out.println("8702 DEBUG - inserting toInsert " + toInsert.stream().distinct().toList()); - entityLogEntryDocumentRepository.insert(toInsert.stream().distinct().toList()); - - System.out.println("8702 DEBUG - saving newEntityLogDocument " + newEntityLogDocument.getEntityLogEntryDocument().size()); - entityLogDocumentRepository.save(newEntityLogDocument); - } - - - @Transactional - public void deleteEntityLog(String dossierId, String fileId) { - - String entityLogId = EntityLogDocument.getDocumentId(dossierId, fileId); - - entityLogDocumentRepository.deleteById(entityLogId); - entityLogEntryDocumentRepository.deleteByEntityLogId(entityLogId); - } - - @Transactional - public void insertEntityLogEntries(String dossierId, String fileId, List entityLogEntries) { - - String entityLogId = EntityLogDocument.getDocumentId(dossierId, fileId); - - EntityLogDocument entityLogDocument = getEntityLogDocument(entityLogId); - - List entityLogEntryDocuments = entityLogEntries.stream() - .map(entityLogEntry -> new EntityLogEntryDocument(entityLogId, entityLogEntry)) - .toList(); - - entityLogDocument.getEntityLogEntryDocument().addAll(entityLogEntryDocuments); - - entityLogEntryDocumentRepository.insert(entityLogEntryDocuments); - entityLogDocumentRepository.save(entityLogDocument); - } - - - public void updateEntityLogEntries(String dossierId, String fileId, List entityLogEntries) { - - String entityLogId = EntityLogDocument.getDocumentId(dossierId, fileId); - - entityLogEntryDocumentRepository.saveAll(entityLogEntries.stream() - .map(entityLogEntry -> new EntityLogEntryDocument(entityLogId, entityLogEntry)) - .toList()); - } - - - @Transactional - public void deleteEntityLogEntries(String dossierId, String fileId, List entityLogEntries) { - - String entityLogId = EntityLogDocument.getDocumentId(dossierId, fileId); - - EntityLogDocument entityLogDocument = getEntityLogDocument(entityLogId); - - List entityLogEntryDocuments = entityLogEntries.stream() - .map(entityLogEntry -> new EntityLogEntryDocument(entityLogId, entityLogEntry)) - .toList(); - - entityLogDocument.getEntityLogEntryDocument().removeAll(entityLogEntryDocuments); - - entityLogEntryDocumentRepository.deleteAll(entityLogEntryDocuments); - entityLogDocumentRepository.save(entityLogDocument); - } - - - private EntityLogDocument getEntityLogDocument(String entityLogId) { - - Optional optionalEntityLogDocument = entityLogDocumentRepository.findById(entityLogId); - - if (optionalEntityLogDocument.isEmpty()) { - throw new EntityLogDocumentNotFoundException(String.format("Entity log not found for %s", entityLogId)); - } - - return optionalEntityLogDocument.get(); - } - - - public Optional findEntityLogByDossierIdAndFileId(String dossierId, String fileId) { - - return entityLogDocumentRepository.findById(EntityLogDocument.getDocumentId(dossierId, fileId)) - .map(EntityLogMongoService::fromDocument); - } - - - public boolean entityLogDocumentExists(String dossierId, String fileId) { - - return entityLogDocumentRepository.existsById(EntityLogDocument.getDocumentId(dossierId, fileId)); - } - - - public Optional findLatestAnalysisNumber(String dossierId, String fileId) { - - return entityLogDocumentRepository.findAnalysisNumberById(EntityLogDocument.getDocumentId(dossierId, fileId)) - .map(EntityLogDocument::getAnalysisNumber); - } - - - public List findAllEntityLogEntriesWithManualChanges(String dossierId, String fileId) { - - return entityLogEntryDocumentRepository.findByEntityLogIdAndManualChangesNotEmpty(EntityLogDocument.getDocumentId(dossierId, fileId)) - .stream() - .map(EntityLogMongoService::fromDocument) - .toList(); - } - - - public List findAllEntityLogEntriesByAnalysisNumber(String dossierId, String fileId, int analysisNumber) { - - return entityLogEntryDocumentRepository.findByEntityLogIdAndChangesAnalysisNumber(EntityLogDocument.getDocumentId(dossierId, fileId), analysisNumber) - .stream() - .map(EntityLogMongoService::fromDocument) - .toList(); - } - - - public List findAllEntriesByDossierIdAndFileId(String dossierId, String fileId) { - - return entityLogEntryDocumentRepository.findByEntityLogId(EntityLogDocument.getDocumentId(dossierId, fileId)) - .stream() - .map(EntityLogMongoService::fromDocument) - .toList(); - } - - - private static EntityLog fromDocument(EntityLogDocument entityLogDocument) { - - EntityLog entityLog = new EntityLog(); - entityLog.setAnalysisVersion(entityLogDocument.getAnalysisVersion()); - entityLog.setAnalysisNumber(entityLogDocument.getAnalysisNumber()); - entityLog.setEntityLogEntry(entityLogDocument.getEntityLogEntryDocument() - .stream() - .map(EntityLogMongoService::fromDocument) - .collect(Collectors.toList())); - entityLog.setLegalBasis(entityLogDocument.getLegalBasis()); - entityLog.setDictionaryVersion(entityLogDocument.getDictionaryVersion()); - entityLog.setDossierDictionaryVersion(entityLogDocument.getDossierDictionaryVersion()); - entityLog.setRulesVersion(entityLogDocument.getRulesVersion()); - entityLog.setLegalBasisVersion(entityLogDocument.getLegalBasisVersion()); - return entityLog; - } - - - private static EntityLogEntry fromDocument(EntityLogEntryDocument entityLogEntryDocument) { - - EntityLogEntry entityLogEntry = new EntityLogEntry(); - entityLogEntry.setId(entityLogEntryDocument.getEntryId()); - entityLogEntry.setType(entityLogEntryDocument.getType()); - entityLogEntry.setEntryType(entityLogEntryDocument.getEntryType()); - entityLogEntry.setState(entityLogEntryDocument.getState()); - entityLogEntry.setValue(entityLogEntryDocument.getValue()); - entityLogEntry.setReason(entityLogEntryDocument.getReason()); - entityLogEntry.setMatchedRule(entityLogEntryDocument.getMatchedRule()); - entityLogEntry.setLegalBasis(entityLogEntryDocument.getLegalBasis()); - entityLogEntry.setContainingNodeId(entityLogEntryDocument.getContainingNodeId()); - entityLogEntry.setClosestHeadline(entityLogEntryDocument.getClosestHeadline()); - entityLogEntry.setSection(entityLogEntryDocument.getSection()); - entityLogEntry.setPositions(entityLogEntryDocument.getPositions()); - entityLogEntry.setTextBefore(entityLogEntryDocument.getTextBefore()); - entityLogEntry.setTextAfter(entityLogEntryDocument.getTextAfter()); - entityLogEntry.setStartOffset(entityLogEntryDocument.getStartOffset()); - entityLogEntry.setEndOffset(entityLogEntryDocument.getEndOffset()); - entityLogEntry.setImageHasTransparency(entityLogEntryDocument.isImageHasTransparency()); - entityLogEntry.setDictionaryEntry(entityLogEntryDocument.isDictionaryEntry()); - entityLogEntry.setDossierDictionaryEntry(entityLogEntryDocument.isDossierDictionaryEntry()); - entityLogEntry.setExcluded(entityLogEntryDocument.isExcluded()); - entityLogEntry.setChanges(entityLogEntryDocument.getChanges()); - entityLogEntry.setManualChanges(entityLogEntryDocument.getManualChanges()); - entityLogEntry.setEngines(entityLogEntryDocument.getEngines()); - entityLogEntry.setReference(entityLogEntryDocument.getReference()); - entityLogEntry.setImportedRedactionIntersections(entityLogEntryDocument.getImportedRedactionIntersections()); - entityLogEntry.setNumberOfComments(entityLogEntryDocument.getNumberOfComments()); - return entityLogEntry; - } - -} diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java index ba866d2b..224c2bdd 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java @@ -14,10 +14,10 @@ import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.imported.ImportedRedactionsPerPage; import com.iqser.red.service.persistence.service.v1.api.shared.model.dossiertemplate.dossier.file.FileType; import com.iqser.red.service.persistence.service.v1.api.shared.model.redactionlog.RedactionLog; +import com.iqser.red.service.persistence.service.v1.api.shared.mongo.service.EntityLogMongoService; import com.iqser.red.service.redaction.v1.server.client.model.NerEntitiesModel; import com.iqser.red.service.redaction.v1.server.model.document.DocumentData; import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.EntityLog; -import com.iqser.red.service.redaction.v1.server.mongo.EntityLogMongoService; import com.iqser.red.service.redaction.v1.server.utils.exception.NotFoundException; import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; import com.iqser.red.storage.commons.service.StorageService; diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/resources/application.yml b/redaction-service-v1/redaction-service-server-v1/src/main/resources/application.yml index 764cfd59..48b40ca7 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/resources/application.yml +++ b/redaction-service-v1/redaction-service-server-v1/src/main/resources/application.yml @@ -53,7 +53,13 @@ spring: host: ${MONGODB_HOST:localhost} port: 27017 username: ${MONGODB_USER} - password: ${MONGODB_PASSWORD} + password: ${MONGODB_PASSWORD}spring: + autoconfigure: + exclude: org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration, + org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration, + org.springframework.boot.autoconfigure.data.mongo.MongoReactiveDataAutoConfiguration, + org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositoriesAutoConfiguration, + org.springframework.boot.autoconfigure.data.mongo.MongoRepositoriesAutoConfiguration management: endpoint: diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/AbstractRedactionIntegrationTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/AbstractRedactionIntegrationTest.java index e9037f80..0f21bf1d 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/AbstractRedactionIntegrationTest.java +++ b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/AbstractRedactionIntegrationTest.java @@ -39,13 +39,13 @@ import com.iqser.red.service.persistence.service.v1.api.shared.model.annotations import com.iqser.red.service.persistence.service.v1.api.shared.model.dossiertemplate.configuration.Colors; import com.iqser.red.service.persistence.service.v1.api.shared.model.dossiertemplate.dossier.file.FileType; import com.iqser.red.service.persistence.service.v1.api.shared.model.dossiertemplate.type.Type; +import com.iqser.red.service.persistence.service.v1.api.shared.mongo.repository.EntityLogDocumentRepository; +import com.iqser.red.service.persistence.service.v1.api.shared.mongo.repository.EntityLogEntryDocumentRepository; import com.iqser.red.service.redaction.v1.server.annotate.AnnotationService; import com.iqser.red.service.redaction.v1.server.client.DictionaryClient; import com.iqser.red.service.redaction.v1.server.client.LegalBasisClient; import com.iqser.red.service.redaction.v1.server.client.RulesClient; import com.iqser.red.service.redaction.v1.server.controller.RedactionController; -import com.iqser.red.service.redaction.v1.server.mongo.EntityLogDocumentRepository; -import com.iqser.red.service.redaction.v1.server.mongo.EntityLogEntryDocumentRepository; import com.iqser.red.service.redaction.v1.server.service.AnalyzeService; import com.iqser.red.service.redaction.v1.server.service.UnprocessedChangesService; import com.iqser.red.service.redaction.v1.server.storage.RedactionStorageService; diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoLiquibaseTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoLiquibaseTest.java deleted file mode 100644 index 0c224192..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoLiquibaseTest.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.iqser.red.service.redaction.v1.server; - -import java.io.File; - -import org.bson.Document; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.core.io.ResourceLoader; -import org.springframework.test.context.junit.jupiter.SpringExtension; - -import com.mongodb.client.FindIterable; -import com.mongodb.client.MongoCollection; - -import liquibase.Liquibase; -import liquibase.database.DatabaseFactory; -import liquibase.ext.mongodb.database.MongoLiquibaseDatabase; -import liquibase.resource.ClassLoaderResourceAccessor; -import lombok.SneakyThrows; - -public class MyMongoLiquibaseTest { - - private static final String HOSTNAME = "localhost"; - private static final String PORT = "27017"; - private static final String DATABASE = "redaction"; - private static final String USERNAME = "root"; - private static final String PASSWORD = "XaRIBExTr8JrCSfgaHek3dl7wJj7dKZm"; - - private static final String URL = String.format("mongodb://%s:%s/%s", HOSTNAME, PORT, DATABASE); - - @Test - //@Disabled - @SneakyThrows - public void testMongoDB() { - - try (MongoLiquibaseDatabase database = (MongoLiquibaseDatabase) DatabaseFactory.getInstance().openDatabase(URL, USERNAME, PASSWORD, null, null)) { - - //MongoCollection logs = database.getMongoDatabase().getCollection("entity-logs"); - //long count = logs.countDocuments(); - String path = "/mongo/liquibase/changelog/mongo.changelog-tenant.xml"; - try (Liquibase liquibase = new Liquibase(path, new ClassLoaderResourceAccessor(), database)) { - liquibase.update(""); - } - } - } - - -} - - diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoTest.java deleted file mode 100644 index b1db3cde..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyMongoTest.java +++ /dev/null @@ -1,101 +0,0 @@ -package com.iqser.red.service.redaction.v1.server; - -import static com.mongodb.client.model.Filters.eq; - -import org.bson.BsonArray; -import org.bson.BsonDocument; -import org.bson.BsonString; -import org.bson.Document; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; -import org.springframework.data.mongodb.core.MongoTemplate; - -import com.mongodb.client.MongoClient; -import com.mongodb.client.MongoClients; -import com.mongodb.client.MongoCollection; -import com.mongodb.client.MongoDatabase; - -@Disabled -public class MyMongoTest { - - private static final String HOSTNAME = "localhost"; - private static final String PORT = "27017"; - private static final String DATABASE = "redaction"; - private static final String USERNAME = "root"; - private static final String PASSWORD = "AP8ckozpAl55JDAAFR4rxpbPj1WXdBTL"; - - private static final String TEST_FILE_ID = "b2cbdd4dca0aa1aa0ebbfc5cc1462df0"; - public static final String COLLECTION_ENTITY_LOG = "entity-logs"; - - - private static final String CONNECTION_STRING = String.format("mongodb://%s:%s@%s:%s/", USERNAME, PASSWORD, HOSTNAME, PORT); - - - - @Test - public void deleteMongoDBDatabase() { - - try (MongoClient mongoClient = MongoClients.create(String.format("mongodb://%s:%s@%s:%s/", - USERNAME, - PASSWORD, - HOSTNAME, - PORT))) { - mongoClient.getDatabase("new_database").drop(); - } - } - - @Test - public void createDatabaseUser() { - - try (MongoClient mongoClient = MongoClients.create(String.format("mongodb://%s:%s@%s:%s/", - USERNAME, - PASSWORD, - HOSTNAME, - PORT))) { - MongoDatabase database = mongoClient.getDatabase("last_database"); - BsonDocument createUserCommand = new BsonDocument(); - createUserCommand.append("createUser", new BsonString(USERNAME)); - createUserCommand.append("pwd", new BsonString(PASSWORD)); - BsonArray roles = new BsonArray(); - roles.add(new BsonString("readWrite")); - createUserCommand.append("roles", roles); - - database.runCommand(createUserCommand); - - } - } - @Test - public void testMongoDB() { - - try (MongoClient mongoClient = MongoClients.create(CONNECTION_STRING)) { - MongoDatabase database = mongoClient.getDatabase(DATABASE); - MongoCollection collection = database.getCollection(COLLECTION_ENTITY_LOG); - Document doc = collection.find(eq("_id", TEST_FILE_ID)).first(); - if (doc != null) { - System.out.println("Found doc with _id: " + doc.get("_id")); - } else { - System.out.println("No matching documents found."); - } - } - } - - - @Test - public void testMongoDB_Template() { - - try (MongoClient mongoClient = MongoClients.create(CONNECTION_STRING)) { - MongoTemplate mongoTemplate = new MongoTemplate(mongoClient, DATABASE); - - MongoCollection collection = mongoTemplate.getCollection(COLLECTION_ENTITY_LOG); - Document doc = collection.find(eq("_id", TEST_FILE_ID)).first(); - if (doc != null) { - System.out.println("Found doc with _id: " + doc.get("_id")); - } else { - System.out.println("No matching documents found."); - } - } - } - -} - - diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyOtherMongoTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyOtherMongoTest.java deleted file mode 100644 index 2baa9fe0..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/MyOtherMongoTest.java +++ /dev/null @@ -1,398 +0,0 @@ -package com.iqser.red.service.redaction.v1.server; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertFalse; -import static org.junit.jupiter.api.Assertions.assertTrue; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.when; - -import java.util.List; -import java.util.Optional; - -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Disabled; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; -import org.kie.api.runtime.KieContainer; -import org.springframework.amqp.rabbit.core.RabbitTemplate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.autoconfigure.EnableAutoConfiguration; -import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration; -import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; -import org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.boot.test.mock.mockito.MockBean; -import org.springframework.boot.test.util.TestPropertyValues; -import org.springframework.context.ApplicationContextInitializer; -import org.springframework.context.ConfigurableApplicationContext; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.FilterType; -import org.springframework.context.annotation.Import; -import org.springframework.core.io.ClassPathResource; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit.jupiter.SpringExtension; - -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; -import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.EntityLog; -import com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.entitylog.EntityLogEntry; -import com.iqser.red.service.redaction.v1.server.client.DictionaryClient; -import com.iqser.red.service.redaction.v1.server.mongo.EntityLogMongoService; -import com.iqser.red.storage.commons.service.StorageServiceImpl; -import com.knecon.fforesight.mongo.database.commons.config.MongoDbConfiguration; -import com.knecon.fforesight.mongo.database.commons.config.MultiTenantMongoDBFactory; -import com.knecon.fforesight.mongo.database.commons.service.MongoClientCache; -import com.knecon.fforesight.mongo.database.commons.service.MongoConnectionProvider; -import com.knecon.fforesight.mongo.database.commons.service.MongoConnectionProviderImpl; -import com.knecon.fforesight.mongo.database.commons.service.MongoDataSources; -import com.knecon.fforesight.tenantcommons.TenantContext; -import com.knecon.fforesight.tenantcommons.TenantsClient; -import com.knecon.fforesight.tenantcommons.model.MongoDBConnection; - -import lombok.SneakyThrows; -import lombok.extern.slf4j.Slf4j; - -@ExtendWith(SpringExtension.class) -@SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) -@Import(MyOtherMongoTest.MongoTestConfiguration.class) -@ContextConfiguration(initializers = {MyOtherMongoTest.Initializer.class}) -@Disabled -public class MyOtherMongoTest { - - @MockBean - private RabbitTemplate rabbitTemplate; - - @MockBean - private TenantsClient tenantsClient; - - @MockBean - protected KieContainer kieContainer; - - @MockBean - protected DictionaryClient dictionaryClient; - - private static final String HOSTNAME = "localhost"; - private static final String PORT = "27017"; - private static final String DATABASE = "redaction"; - private static final String USERNAME = "root"; - private static final String PASSWORD = "AP8ckozpAl55JDAAFR4rxpbPj1WXdBTL"; - - private static final String TEST_DOSSIER_2_ID = "bigentestdossierid"; - private static final String TEST_FILE_2_ID = "bigentityfileid"; - private static final String TEST_FILE_3_ID = "upd_bigentityfileid"; - private static final String TEST_DOSSIER_ID = "testdossierid"; - private static final String TEST_FILE_ID = "b2cbdd4dca0aa1aa0ebbfc5cc1462df0"; - public static final String COLLECTION_ENTITY_LOG = "entity-logs"; - - private static final String CONNECTION_STRING = String.format("mongodb://%s:%s@%s:%s/", USERNAME, PASSWORD, HOSTNAME, PORT); - - @Autowired - private StorageServiceImpl storageService; - - @Autowired - private EntityLogMongoService entityLogMongoService; - - @MockBean - private MongoConnectionProvider mongoConnectionProvider; - - - @BeforeEach - public void setupTenantAndMockDBConnection() { - - TenantContext.setTenantId("redaction"); - - when(mongoConnectionProvider.getMongoDBConnection(any())).thenReturn(MongoDBConnection.builder() - .host("localhost") - .port("27017") - .database("redaction") - .username(USERNAME) - .password(PASSWORD) - .build()); - } - - - @Test - @SneakyThrows - public void testUpdateBigEntityLogDocumentByAddingOne() { - - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.registerModule(new JavaTimeModule()); - - EntityLogEntry entityLogEntry = objectMapper.readValue(NEW_ENTITY_LOG_ENTRY, EntityLogEntry.class); - - entityLogMongoService.insertEntityLogEntries(TEST_DOSSIER_2_ID, TEST_FILE_2_ID, List.of(entityLogEntry)); - - Optional found = entityLogMongoService.findEntityLogByDossierIdAndFileId(TEST_DOSSIER_2_ID, TEST_FILE_2_ID); - assertTrue(found.isPresent()); - assertEquals(found.get().getEntityLogEntry().size(), 1707); - } - - - @Test - @SneakyThrows - public void testUpdateBigEntityLogDocumentByNewLog() { - - var file = new ClassPathResource(String.format("mongo/%s.ENTITY_LOG.json", TEST_FILE_3_ID)); - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.registerModule(new JavaTimeModule()); - - EntityLog entityLog = objectMapper.readValue(file.getInputStream(), EntityLog.class); - entityLog.setAnalysisNumber(entityLog.getAnalysisNumber() + 1); - - entityLogMongoService.saveEntityLog(TEST_DOSSIER_2_ID, TEST_FILE_2_ID, entityLog); - - Optional found = entityLogMongoService.findEntityLogByDossierIdAndFileId(TEST_DOSSIER_2_ID, TEST_FILE_2_ID); - assertTrue(found.isPresent()); - assertEquals(found.get().getAnalysisNumber(), entityLog.getAnalysisNumber()); - assertEquals(found.get().getEntityLogEntry().size(), 1707); - } - - - @Test - @SneakyThrows - public void testUpdateBigEntityLogDocumentAnalysisNumber() { - - var file = new ClassPathResource(String.format("mongo/%s.ENTITY_LOG.json", TEST_FILE_2_ID)); - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.registerModule(new JavaTimeModule()); - - EntityLog entityLog = objectMapper.readValue(file.getInputStream(), EntityLog.class); - entityLog.setAnalysisNumber(entityLog.getAnalysisNumber() + 1); - - entityLogMongoService.saveEntityLog(TEST_DOSSIER_2_ID, TEST_FILE_2_ID, entityLog); - - Optional found = entityLogMongoService.findEntityLogByDossierIdAndFileId(TEST_DOSSIER_2_ID, TEST_FILE_2_ID); - assertTrue(found.isPresent()); - assertEquals(found.get().getAnalysisNumber(), entityLog.getAnalysisNumber()); - } - - - @Test - @SneakyThrows - public void testFindEntries() { - - var latest = entityLogMongoService.findLatestAnalysisNumber(TEST_DOSSIER_2_ID, TEST_FILE_2_ID) - .orElseThrow(); - var latestChangedEntries = entityLogMongoService.findAllEntityLogEntriesByAnalysisNumber(TEST_DOSSIER_2_ID, TEST_FILE_2_ID, latest); - assertEquals(latestChangedEntries.size(), 490); - - var manuallyChangedEntries = entityLogMongoService.findAllEntityLogEntriesWithManualChanges(TEST_DOSSIER_2_ID, TEST_FILE_2_ID); - assertEquals(manuallyChangedEntries.size(), 1013); - - } - - - @Test - @SneakyThrows - public void testFindLatestAnalysisNumber() { - - assertEquals(entityLogMongoService.findLatestAnalysisNumber(TEST_DOSSIER_2_ID, TEST_FILE_2_ID) - .orElse(-1), 8); - - } - - - @Test - @SneakyThrows - public void testDeleteEntityLog() { - - entityLogMongoService.deleteEntityLog(TEST_DOSSIER_2_ID, TEST_FILE_2_ID); - assertFalse(entityLogMongoService.entityLogDocumentExists(TEST_DOSSIER_2_ID, TEST_FILE_2_ID)); - assertEquals(entityLogMongoService.findAllEntriesByDossierIdAndFileId(TEST_DOSSIER_2_ID, TEST_FILE_2_ID).size(), 0); - - } - - - @Test - @SneakyThrows - public void testInsertBigEntityLogDocument() { - - var file = new ClassPathResource(String.format("mongo/%s.ENTITY_LOG.json", TEST_FILE_2_ID)); - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.registerModule(new JavaTimeModule()); - - EntityLog entityLog = objectMapper.readValue(file.getInputStream(), EntityLog.class); - - entityLogMongoService.insertEntityLog(TEST_DOSSIER_2_ID, TEST_FILE_2_ID, entityLog); - - Optional found = entityLogMongoService.findEntityLogByDossierIdAndFileId(TEST_DOSSIER_2_ID, TEST_FILE_2_ID); - assertTrue(found.isPresent()); - } - - - @Test - @SneakyThrows - public void testInsertEntityLogDocument() { - - var file = new ClassPathResource(String.format("mongo/%s.ENTITY_LOG.json", TEST_FILE_ID)); - ObjectMapper objectMapper = new ObjectMapper(); - objectMapper.registerModule(new JavaTimeModule()); - - EntityLog entityLog = objectMapper.readValue(file.getInputStream(), EntityLog.class); - - entityLogMongoService.insertEntityLog(TEST_DOSSIER_ID, TEST_FILE_ID, entityLog); - - } - - - @Test - @SneakyThrows - public void testFindEntityLogDocumentById() { - - Optional entityLogDocumentById = entityLogMongoService.findEntityLogByDossierIdAndFileId(TEST_DOSSIER_ID, TEST_FILE_ID); - assert (entityLogDocumentById.isPresent()); - } - - - //@Test - //@SneakyThrows - //public void testRedactionStorageService() { -// - // var file = new ClassPathResource(String.format("mongo/%s.ENTITY_LOG.json", TEST_FILE_ID)); - // ObjectMapper objectMapper = new ObjectMapper(); - // objectMapper.registerModule(new JavaTimeModule()); -// - // EntityLog entityLog = objectMapper.readValue(file.getInputStream(), EntityLog.class); - // EntityLogDocument entityLogDocument = new EntityLogDocument(TEST_DOSSIER_ID, TEST_FILE_ID, entityLog); -// - // String jsonData = objectMapper.writeValueAsString(entityLogDocument); - // InputStream jsonDataStream = new ByteArrayInputStream(jsonData.getBytes()); -// - // minioInsert(jsonDataStream, jsonData.length()); - //} -// -// - //private void minioInsert(InputStream inputStream, int length) { -// - // try { - // MinioClient minioClient = MinioClient.builder() - // .endpoint("http://localhost:9000") - // .credentials("L2U4tR5Beaqh6UHPwvtDKTJSxWBXIiya", "Spbv4vleaFnIrSiLLG3AhbdQk6DMraBQ") - // .build(); -// - // String contentType = "application/json"; -// - // minioClient.putObject(PutObjectArgs.builder().bucket(DATABASE).object(TEST_FILE_ID) - // .stream(inputStream, length, -1).contentType(contentType).build()); -// - // System.out.println("JSON file uploaded successfully!"); -// - // } catch (Exception e) { - // e.printStackTrace(); - // } - //} - - - @Configuration - @EnableAutoConfiguration(exclude = {RabbitAutoConfiguration.class, LiquibaseAutoConfiguration.class, DataSourceAutoConfiguration.class}) - @Import({MongoDbConfiguration.class, MultiTenantMongoDBFactory.class, MongoClientCache.class, MongoDataSources.class, MongoConnectionProviderImpl.class}) - @ComponentScan(excludeFilters = {@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE)}) - public static class MongoTestConfiguration { - - } - - @Slf4j - static class Initializer implements ApplicationContextInitializer { - - public void initialize(ConfigurableApplicationContext configurableApplicationContext) { - - TestPropertyValues.of("spring.data.mongodb.auto-index-creation=true", - "MONGODB_HOST=" + HOSTNAME, - "MONGODB_PORT=" + PORT, - "MONGODB_USER=" + USERNAME, - "MONGODB_PASSWORD=" + PASSWORD, - "storage.bucket=name=redaction", - "storage.endpoint=http://localhost:9000", - "storage.key=L2U4tR5Beaqh6UHPwvtDKTJSxWBXIiya", - "storage.secret=Spbv4vleaFnIrSiLLG3AhbdQk6DMraBQ").applyTo(configurableApplicationContext.getEnvironment()); - - } - - } - - private final String NEW_ENTITY_LOG_ENTRY = """ - { - "id": "05240998f2e657d739d59d220094702a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "REMOVED", - "value": "Amato", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 639.3, - 32.59199, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "S. Amarasekare Amarasingham ", - "textAfter": " Amato S.L Amato", - "startOffset": 5137, - "endOffset": 5142, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 3, - "type": "REMOVED", - "dateTime": "2024-03-13T08:47:11.339124572Z" - }, - { - "analysisNumber": 4, - "type": "REMOVED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - }, - { - "analysisNumber": 5, - "type": "REMOVED", - "dateTime": "2024-03-13T08:48:21.670287664Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - }, - { - "analysisNumber": 7, - "type": "REMOVED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - }, - { - "analysisNumber": 8, - "type": "REMOVED", - "dateTime": "2024-03-13T09:05:22.006293189Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - } - """; - -} diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/6f2a9d4b5d4e11211fc0d7732fd45b78.ENTITY_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/6f2a9d4b5d4e11211fc0d7732fd45b78.ENTITY_LOG.json deleted file mode 100644 index 92cc6320..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/6f2a9d4b5d4e11211fc0d7732fd45b78.ENTITY_LOG.json +++ /dev/null @@ -1,65652 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 2, - "entityLogEntry": [ - { - "id": "8f4af72f01a7760290666d9b2237333d", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "12852, Park One Drive, Sugar Land, Texas, USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 518, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-619: KFOC and 1/n (Freundlich exponent) adsorption values of CGA192155 in different soils ", - "section": "[518, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 210.28001, - 197.61412, - 10.98 - ], - "pageNumber": 285 - } - ], - "textBefore": "1402-94. STILLMEADOW Inc., ", - "textAfter": ". (Syngenta file", - "startOffset": 651001, - "endOffset": 651046, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f70d815046895a1212c45ee12ec8afdd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1455 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1455]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 355 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929417, - "endOffset": 929425, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e8d0dffba2e5813d25d2ab9d5513b38", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 41 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 41]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.64, - 629.32, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 460776, - "endOffset": 460784, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f9bcbce397379fc154783d3d94eb98b8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 284, - 1, - 0, - 24 - ], - "closestHeadline": "Table 7.1.2-3: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived by kinetic modelling (from soil photolysis studies) ", - "section": "[284, 1, 0, 24]: Table_cell: Miner, 2009", - "color": null, - "positions": [ - { - "rectangle": [ - 75.96, - 282.04004, - 22.028008, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": ", 2009", - "startOffset": 401903, - "endOffset": 401908, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bc50818291dffd88c6f4c2c95c6247f3", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 214, - 1, - 8 - ], - "closestHeadline": "Materials ", - "section": "[214, 1, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 408.52, - 24.465004, - 10.5 - ], - "pageNumber": 132 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 318236, - "endOffset": 318243, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "980c82e87b6d84bc0e128298a935cef9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 15, - 2, - 2 - ], - "closestHeadline": "Table 7.1.1.1-9: ", - "section": "[15, 2, 2]: Paragraph: (Kirkpatrick, D. et al,", - "color": null, - "positions": [ - { - "rectangle": [ - 418.6203, - 237.88002, - 66.921326, - 11.52 - ], - "pageNumber": 17 - } - ], - "textBefore": "(", - "textAfter": " et al, 1991)", - "startOffset": 42461, - "endOffset": 42476, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1c3a7b1f675d9ac5b2791f10c168e2ef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 3 - ], - "closestHeadline": "Executive Summary ", - "section": "[289, 3]: Paragraph: Kinetic modelling following the", - "color": null, - "positions": [ - { - "rectangle": [ - 335.5801, - 380.56, - 40.981934, - 11.52 - ], - "pageNumber": 172 - } - ], - "textBefore": "study conducted by ", - "textAfter": " (2015) where duplicate", - "startOffset": 408148, - "endOffset": 408157, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c83b4acf3c1a1f57dc16618b1ea7fb46", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 55 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 55]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.4, - 589.24, - 30.527039, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 460919, - "endOffset": 460927, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc33328b21f74dc521c99c4acb547aaa", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 54 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 54]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.04, - 246.40002, - 30.527039, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 513436, - "endOffset": 513444, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6dd77b3ad8a594b2d95e141d9a143779", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Hand L", - "reason": "Published Information found in row", - "matchedRule": "CBI.7.1", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 636, - 7, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.2-25: Summary of Characterisation / Identification of Radioactive Residues: Sterilised 14 Natural Water Phenyl-U-[ C]-Fludioxonil Treated (95 µg/L); Extracted Water Layer ", - "section": "[636, 7, 0, 0, 1]: Paragraph: K-CA 7.2.2.2/02. Thomas K.A.", - "color": null, - "positions": [ - { - "rectangle": [ - 279.73422, - 202.35997, - 30.213959, - 10.98 - ], - "pageNumber": 345 - } - ], - "textBefore": "Thomas K.A. & ", - "textAfter": ".H. (2011): Assessing", - "startOffset": 793712, - "endOffset": 793718, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [ - "9ce53fa784cdebc0ce4af836a9a7003a" - ], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a62efc8ffd4286328f203936334a1b4c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 68 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 68]: Table_cell: Gentile (1993)", - "color": null, - "positions": [ - { - "rectangle": [ - 405.36, - 208.59998, - 26.52005, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1993)", - "startOffset": 499806, - "endOffset": 499813, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bd34e6686a6014daacf7c8a3fe352085", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 3, 0, 0, 1]: Paragraph: K-CA 7.2.1.2/01 Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 210.47687, - 364.0, - 26.920929, - 10.98 - ], - "pageNumber": 307 - } - ], - "textBefore": "K-CA 7.2.1.2/01 ", - "textAfter": " P. (2013), Fludioxonil,", - "startOffset": 701616, - "endOffset": 701622, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "142fb07e9751f166d47a31dfec96fadf", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 314, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-13: SYN545245 in aerobic soil degradation laboratory study considered in this assessment ", - "section": "[314, 1, 1]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 372.12, - 712.48, - 35.48404, - 10.5 - ], - "pageNumber": 183 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 433175, - "endOffset": 433183, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f7db99b8a8651741c11b97825b15347", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1107 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1107]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 7 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909233, - "endOffset": 909241, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d3657667fe0fb1f9937ec82120c223f2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1339 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1339]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 239 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922689, - "endOffset": 922697, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "41ce3b0e764b1cb2c4deb18ba7401958", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 392, - 2, - 52 - ], - "closestHeadline": "Materials ", - "section": "[392, 2, 52]: Table_cell: Sand (2000-60 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.04, - 299.56, - 18.029999, - 10.5 - ], - "pageNumber": 233 - } - ], - "textBefore": "", - "textAfter": " (2000-60 µm)", - "startOffset": 536026, - "endOffset": 536030, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "53142402f4990b492d3bc27b2093611d", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Daphnia magna", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 711, - 1, - 1, - 14, - 1 - ], - "closestHeadline": "Criteria for Classification of a Compound as a PBT ", - "section": "[711, 1, 1, 14, 1]: Paragraph: Daphnia magna; NOEC =", - "color": null, - "positions": [ - { - "rectangle": [ - 338.52, - 338.68, - 58.261963, - 10.5 - ], - "pageNumber": 378 - } - ], - "textBefore": "", - "textAfter": "; NOEC =", - "startOffset": 875345, - "endOffset": 875358, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0ecf647c02bb776eec31b4def818a258", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 599, - 1, - 2 - ], - "closestHeadline": "Table 7.2.2.1-1: Fludioxonil ready biodegradability study ", - "section": "[599, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 498.88, - 35.48404, - 10.5 - ], - "pageNumber": 325 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 750984, - "endOffset": 750992, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c073d9243f82984a8887ece5f563a71e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 4 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 4]: Paragraph: The TLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 163.92, - 565.96, - 51.971954, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "However, within the ", - "textAfter": ", 1994a study", - "startOffset": 281390, - "endOffset": 281401, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b3090db9bc7d39d75a1b7e9cb21758ec", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 53 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 53]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 341.64, - 255.04004, - 30.527039, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 476507, - "endOffset": 476515, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "66a55326d676b98a4be670aec53a3402", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Concord, OH 44077 USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 3, 0, 0, 1]: Paragraph: K-CA 7.2.1.2/01 Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 166.8, - 329.44, - 103.65422, - 10.98 - ], - "pageNumber": 307 - } - ], - "textBefore": "7528 Auburn Road, ", - "textAfter": ". (Syngenta File", - "startOffset": 701862, - "endOffset": 701883, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5c9c8bb8daa63bbdd83c55e45ee5c344", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1290 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1290]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 190 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919847, - "endOffset": 919855, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "064d0bf530fbf1db1279afd2cda8ffa3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1431 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1431]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 331 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928025, - "endOffset": 928033, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7c54b7c41656eff55301a936808dc61d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 534, - 1, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-29: SYN545245 adsorption/desorption study ", - "section": "[534, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 611.44, - 35.48404, - 10.5 - ], - "pageNumber": 293 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 670429, - "endOffset": 670437, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c6c1da28a633dd13670bb3d9bbfae427", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Widmer,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 16 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 16]: Table_cell: Widmer, 2001c", - "color": null, - "positions": [ - { - "rectangle": [ - 86.76, - 178.23999, - 31.754997, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": " 2001c", - "startOffset": 867608, - "endOffset": 867615, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dedff3646fd0196d37ddf48e1e738a98", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Environmental Sciences Department, 7528 Auburn Road", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 2, 0, 1]: Paragraph: K-CA 7.1.1.3/01. Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 217.29933, - 406.12, - 228.23991, - 10.98 - ], - "pageNumber": 121 - } - ], - "textBefore": "Ricerca Biosciences, LLC, ", - "textAfter": ", Concord, OH", - "startOffset": 285745, - "endOffset": 285796, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "475e5d1a1487e470005370107909fc88", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 49 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 49]: Table_cell: Ellgehausen (1992b)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 547.84, - 44.041985, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1992b)", - "startOffset": 411717, - "endOffset": 411728, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e22a2bb6524605811d4c42c4c3e8441", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 40, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[40, 3, 0]: Paragraph: 1so–ilm):ethod of of pH", - "color": null, - "positions": [ - { - "rectangle": [ - 120.22295, - 202.47998, - 23.096031, - 10.518 - ], - "pageNumber": 34 - }, - { - "rectangle": [ - 120.22295, - 202.47998, - 23.096031, - 10.518 - ], - "pageNumber": 34 - } - ], - "textBefore": "laboratory as as ", - "textAfter": " 1991, 1991, Minet", - "startOffset": 80028, - "endOffset": 80041, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21cffc54ee246bce883980133eeaf16a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 8 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 8]: Paragraph: An identical chromatographic method", - "color": null, - "positions": [ - { - "rectangle": [ - 216.12431, - 397.36, - 28.13823, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "used in the ", - "textAfter": " (1991) study. Therefore", - "startOffset": 18364, - "endOffset": 18370, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2145c2d7efd46086ae976d73d1c574d8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burton", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 502, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-48: KFOC and 1/n (Freundlich exponent) adsorption values of CGA339833 in different soils ", - "section": "[502, 1, 0]: Table: #cols: 7, #rows: 8, Soil pH Organic carbon", - "color": null, - "positions": [ - { - "rectangle": [ - 471.12, - 582.88, - 25.016998, - 10.5 - ], - "pageNumber": 277 - } - ], - "textBefore": "", - "textAfter": " (1996d)", - "startOffset": 628184, - "endOffset": 628190, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0628aa123b1cb7682ca12eae5de9543e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford S", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 357, - 2, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[357, 2, 0]: Paragraph: (Ford S, 2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 478.08, - 102.520035, - 29.77826, - 11.52 - ], - "pageNumber": 213 - } - ], - "textBefore": "(", - "textAfter": ", 2016)", - "startOffset": 497660, - "endOffset": 497666, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b98bfa236479ea2df6dad849e2ad7c8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 54 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 54]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.04, - 259.0, - 30.527039, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 499641, - "endOffset": 499649, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "648e1f304cb5ee61834132f9cbd56bd4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1319 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1319]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 219 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921529, - "endOffset": 921537, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22ee1a24ac94a02530bd5fba9fa0fc23", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 191.75676, - 449.8, - 50.75438, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "identified and the ", - "textAfter": " 1994c study was", - "startOffset": 438999, - "endOffset": 439010, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c666c4494171e2fba87889f6d66195ae", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1405 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1405]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 305 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926517, - "endOffset": 926525, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acd480cd4b78aa6ee56fa8ad221be2ee", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "ND 58267, 58267", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 96, - 2, - 0 - ], - "closestHeadline": "Soil information: ", - "section": "[96, 2, 0]: Paragraph: Final (end of study)", - "color": null, - "positions": [ - { - "rectangle": [ - 313.26486, - 717.64, - 39.987976, - 10.5 - ], - "pageNumber": 70 - }, - { - "rectangle": [ - 328.50787, - 717.64, - 22.495972, - 10.5 - ], - "pageNumber": 70 - } - ], - "textBefore": "ND ND ND ", - "textAfter": ", 58267, 58267,", - "startOffset": 157638, - "endOffset": 157653, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c814015b4d74ea7dbd4f000911fce20a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 554, - 1, - 0, - 9 - ], - "closestHeadline": "Table 7.1.4.1.1-1: Fludioxonil column leaching studies ", - "section": "[554, 1, 0, 9]: Table_cell: Ellgehausen, 1993 #", - "color": null, - "positions": [ - { - "rectangle": [ - 86.04, - 101.44, - 43.992012, - 10.5 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": ", 1993 #", - "startOffset": 691161, - "endOffset": 691172, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3c23168886d2ee0f076d775a7ab6cda7", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Environmental Sciences Department, 7528 Auburn Road", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 3, 0, 0, 1]: Paragraph: K-CA 7.2.1.2/01 Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 299.43118, - 340.96, - 204.54599, - 10.98 - ], - "pageNumber": 307 - }, - { - "rectangle": [ - 140.64, - 329.44, - 21.09755, - 10.98 - ], - "pageNumber": 307 - } - ], - "textBefore": "Ricerca Biosciences, LLC ", - "textAfter": ", Concord, OH", - "startOffset": 701809, - "endOffset": 701860, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9c457de0415ffbbe3c665cc7804d4d09", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 59, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[59, 1, 3]: Paragraph: (Minet, U., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 465.18332, - 505.72, - 42.521484, - 11.52 - ], - "pageNumber": 47 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 107207, - "endOffset": 107216, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "18c21f04be08bf24ef663fb15fb0b7c5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1315 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1315]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 215 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921297, - "endOffset": 921305, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c4c0d53ea8d59dbb1d07e65fc4e4677", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1145 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1145]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 45 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911437, - "endOffset": 911445, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3fe47399bc207625ad200b7242ccdc6e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1248 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1248]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 148 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917411, - "endOffset": 917419, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "93e4338f3c707093545a1c04ab6552e2", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres and East Anglia", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 103, - 2 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[103, 2]: Paragraph: CGA173506 slowly degraded in", - "color": null, - "positions": [ - { - "rectangle": [ - 470.6135, - 396.52, - 56.580353, - 11.52 - ], - "pageNumber": 74 - }, - { - "rectangle": [ - 70.92, - 383.92, - 112.575806, - 11.52 - ], - "pageNumber": 74 - } - ], - "textBefore": "of AR for ", - "textAfter": ", respectively. On", - "startOffset": 168464, - "endOffset": 168501, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c5af03de0ccd0392741ea8b50e23d0bc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 448, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[448, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97968, - 171.03996, - 36.674377, - 10.98 - ], - "pageNumber": 252 - } - ], - "textBefore": "Roßdorf, Germany. (", - "textAfter": " File No. CGA173506/0429)", - "startOffset": 572301, - "endOffset": 572309, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b7daccab280f5d9036d5c99106094fb", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 604, - 2, - 6 - ], - "closestHeadline": "Materials ", - "section": "[604, 2, 6]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 260.92004, - 27.48301, - 10.5 - ], - "pageNumber": 328 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 759795, - "endOffset": 759802, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "45840fb5c6eb8af856933406b18c49fb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1226 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1226]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 126 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916135, - "endOffset": 916143, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1fe04ce32ac4cd509df504b16acf4a30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1245 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1245]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 145 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917237, - "endOffset": 917245, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "72597004fc04a4c5bad6cf330549cb79", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1277 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1277]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 177 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919093, - "endOffset": 919101, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4a11d3e6965f3c77b90326f605757746", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1317 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1317]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 217 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921413, - "endOffset": 921421, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b2fec67a5f59c1b7d8dd269f822337dd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 28, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[28, 3, 0]: Paragraph: 1 – – method", - "color": null, - "positions": [ - { - "rectangle": [ - 120.22295, - 127.83997, - 23.096031, - 10.518 - ], - "pageNumber": 27 - }, - { - "rectangle": [ - 120.22295, - 127.83997, - 23.096031, - 10.518 - ], - "pageNumber": 27 - } - ], - "textBefore": "laboratory as as ", - "textAfter": " 1991, 1991, Minet", - "startOffset": 66696, - "endOffset": 66709, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ee9b75ddafb93432f2aeb9f5091f3112", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski, R.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[92, 2, 0, 0, 1]: Paragraph: K-CA 7.1.1.1/01. Piskorski, R.,", - "color": null, - "positions": [ - { - "rectangle": [ - 212.94002, - 441.28, - 51.269974, - 10.98 - ], - "pageNumber": 67 - } - ], - "textBefore": "K-CA 7.1.1.1/01. ", - "textAfter": ", (2015): Fludioxonil", - "startOffset": 150226, - "endOffset": 150239, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d35aeacafcaf5499908ef8a9c2075f6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1133 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1133]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 33 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910741, - "endOffset": 910749, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1ca8caf26ab98c84973f81fec04920ec", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 47 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 47]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 271.59998, - 30.540985, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 513346, - "endOffset": 513354, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d9cc125617bb4b3b45e260b3ae590c7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 1, - 0 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 550.0, - 35.47, - 10.5 - ], - "pageNumber": 85 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 193947, - "endOffset": 193955, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1fe4ce0f6c6c0665ab07dd7e6003d6e6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 341, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[341, 2, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/02. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 702.28, - 37.040665, - 10.98 - ], - "pageNumber": 200 - } - ], - "textBefore": "United Kingdom. (", - "textAfter": " File No. CGA173506_11903)", - "startOffset": 474856, - "endOffset": 474864, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "df5a02e4cef6b2fb427f1057c95029e9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1343 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1343]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 243 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922921, - "endOffset": 922929, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9927731d74507a7bf1600d0321927f01", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/05. Patterson, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 301.83994, - 37.075684, - 10.98 - ], - "pageNumber": 227 - } - ], - "textBefore": "United Kingdom. (", - "textAfter": " Report No. CGA173506_11895)", - "startOffset": 525081, - "endOffset": 525089, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "893790d5335309330ac00ef8e474d931", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Innovative Environmental Services (IES) Ltd, Benkenstrasse 260, 4108 Witterswil", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 2, 0, 1]: Paragraph: K-CA 7.1.1.1/02. Adam, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 323.14548, - 475.6, - 184.17715, - 10.98 - ], - "pageNumber": 85 - }, - { - "rectangle": [ - 140.64, - 464.08, - 144.3803, - 10.98 - ], - "pageNumber": 85 - } - ], - "textBefore": "Report Number 20140089. ", - "textAfter": ", Switzerland.", - "startOffset": 194224, - "endOffset": 194303, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5117e07e348c7445431de1e731ea83bb", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 94, - 3 - ], - "closestHeadline": "Executive Summary ", - "section": "[94, 3]: Paragraph: For the pyrrole label,", - "color": null, - "positions": [ - { - "rectangle": [ - 370.588, - 667.12, - 98.68677, - 11.52 - ], - "pageNumber": 68 - } - ], - "textBefore": "radioactivity (AR) for ", - "textAfter": " and East Anglia", - "startOffset": 152372, - "endOffset": 152393, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c95ad5ffdc2809e858db2336ed8a7fe7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 27 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 27]: Table_cell: Walser, 1999a *", - "color": null, - "positions": [ - { - "rectangle": [ - 75.72, - 580.24, - 25.543007, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 1999a *", - "startOffset": 589208, - "endOffset": 589214, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "16345735f3c90fb153d969a293a1d4d6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1394 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1394]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 294 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925879, - "endOffset": 925887, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f0927e1caf790247e2ee4552adaeab35", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 137, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1771: CGA339833 applied aerobic soil degradation laboratory study ", - "section": "[137, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 468.13797, - 377.68, - 39.792053, - 10.98 - ], - "pageNumber": 98 - }, - { - "rectangle": [ - 140.64, - 366.28, - 74.39021, - 10.98 - ], - "pageNumber": 98 - } - ], - "textBefore": "Crop Protection AG, ", - "textAfter": ". (Syngenta file", - "startOffset": 227970, - "endOffset": 227997, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ff20559d26527cc79b022e9e7b7a0908", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adam, D.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 113, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 2, 0, 1]: Paragraph: K-CA 7.1.1.1/02. Adam, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 212.97401, - 487.12, - 39.12236, - 10.98 - ], - "pageNumber": 85 - } - ], - "textBefore": "K-CA 7.1.1.1/02. ", - "textAfter": ", Wijntjes, C.", - "startOffset": 194115, - "endOffset": 194123, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef2ea088fcd50f145adc50e4c72610ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 113.16, - 550.0, - 35.47, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 403808, - "endOffset": 403816, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "838baa981f7d9de376f89798ec464356", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Widmer,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 12 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 12]: Table_cell: Widmer, 2001b", - "color": null, - "positions": [ - { - "rectangle": [ - 86.52, - 205.47998, - 31.785004, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": " 2001b", - "startOffset": 867503, - "endOffset": 867510, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aba69a5cf0e53217ad8c4963444c086a", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 36, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[36, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Ellgehausen, H.", - "color": null, - "positions": [ - { - "rectangle": [ - 442.7323, - 418.84, - 84.89191, - 10.98 - ], - "pageNumber": 32 - }, - { - "rectangle": [ - 140.64, - 407.32, - 224.50597, - 10.98 - ], - "pageNumber": 32 - } - ], - "textBefore": "Report Number 91EH08. ", - "textAfter": ". (Syngenta file", - "startOffset": 76618, - "endOffset": 76692, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b05788c9c298aa83d970a14482529917", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 303, - 5 - ], - "closestHeadline": "Executive Summary ", - "section": "[303, 5]: Paragraph: DT50 values have been", - "color": null, - "positions": [ - { - "rectangle": [ - 129.59222, - 204.88002, - 55.95125, - 11.52 - ], - "pageNumber": 179 - } - ], - "textBefore": "has already been ", - "textAfter": " the standard temperature", - "startOffset": 425288, - "endOffset": 425300, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e62bf81872ce36bbc5b77fd99cbba407", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 560, - 1, - 4 - ], - "closestHeadline": "Table 7.2.1.1-1: Hydrolytic degradation studies ", - "section": "[560, 1, 4]: Table_cell: Hawkins et al.,1991d", - "color": null, - "positions": [ - { - "rectangle": [ - 87.0, - 456.64, - 31.940987, - 10.5 - ], - "pageNumber": 306 - } - ], - "textBefore": "", - "textAfter": " et al.,1991d", - "startOffset": 697774, - "endOffset": 697781, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9cc8d0691ec8ec6a1465db0ca5bb6bf1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 146.26726, - 437.08, - 50.78441, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "major degradates. The ", - "textAfter": " 1994c study was", - "startOffset": 439090, - "endOffset": 439101, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "303d27ec693fb02a2bc9cd8825351dbc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 12]: Table_cell: Reichert, 1993a", - "color": null, - "positions": [ - { - "rectangle": [ - 83.28, - 616.96, - 30.576012, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1993a", - "startOffset": 457237, - "endOffset": 457245, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b24c6266e89c6fd6732a70af7812b0e4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 596, - 4 - ], - "closestHeadline": "CA 7.2.2 Route and rate of biological degradation in aquatic systems ", - "section": "[596, 4]: Paragraph: The previously submitted water/sediment", - "color": null, - "positions": [ - { - "rectangle": [ - 271.32, - 149.92, - 33.120026, - 11.52 - ], - "pageNumber": 323 - } - ], - "textBefore": "kinetically re-evaluated by ", - "textAfter": " (2015) according to", - "startOffset": 745351, - "endOffset": 745358, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2305ae8c63638fd1640d0dcafb35f7c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 12 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 12]: Paragraph: The robust studies with", - "color": null, - "positions": [ - { - "rectangle": [ - 211.08, - 428.08, - 22.680252, - 11.52 - ], - "pageNumber": 192 - } - ], - "textBefore": "were made by ", - "textAfter": " (2016a, 2016b and", - "startOffset": 455619, - "endOffset": 455623, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3fda0cc99d80421f02e7217bdfa5319c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 15 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 15]: Paragraph: Field and laboratory degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 472.56, - 252.88002, - 22.680237, - 11.52 - ], - "pageNumber": 192 - } - ], - "textBefore": "kinetic evaluations of ", - "textAfter": " (2016a, 2016b and", - "startOffset": 456698, - "endOffset": 456702, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b7133e56e4f2f77d3e03b7b1de1902a0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1179 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1179]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 79 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913409, - "endOffset": 913417, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "666e959a91338c3ae94f1151445955e7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1304 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1304]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 204 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920659, - "endOffset": 920667, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b35d1d531930680c8c33dcb12df8510a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1466 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1466]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 366 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930055, - "endOffset": 930063, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "baa4ed66707ded051e0d1e71599d2ee8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1229 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1229]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 129 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916309, - "endOffset": 916317, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "295feee06b5b8920e4e68931e9bd060d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1, - 5 - ], - "closestHeadline": "Table 7.1.2.2.1-3: Summary of the kinetic evaluation reports for the field soil degradation of fludioxonil ", - "section": "[334, 1, 5]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 468.0, - 426.16, - 35.47702, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 459644, - "endOffset": 459652, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "73f726ac12265fc0eb0749b64326a68b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1188 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1188]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 88 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913931, - "endOffset": 913939, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6e5523ab13facc273c4a09af1cec62e0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1474 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1474]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930519, - "endOffset": 930527, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e39e0467e8aabfa2b9e2939c177adf4b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 67 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 67]: Table_cell: Gentile (1993)", - "color": null, - "positions": [ - { - "rectangle": [ - 345.84, - 204.64001, - 26.52005, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1993)", - "startOffset": 476672, - "endOffset": 476679, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e3cad3351909374aee051268e6fa66f7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 15 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 15]: Paragraph: Field and laboratory degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 468.24, - 290.92007, - 43.456818, - 11.52 - ], - "pageNumber": 192 - } - ], - "textBefore": "EFSA (20147) by ", - "textAfter": " (2016), a summary", - "startOffset": 456383, - "endOffset": 456392, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7f158b9c2f3a4a17da081264434a804", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Microsoft Corporation, Redmond, WA, USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 192, - 5 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[192, 5]: Paragraph: DT50 and DT90 values", - "color": null, - "positions": [ - { - "rectangle": [ - 192.89232, - 392.56, - 199.00194, - 11.52 - ], - "pageNumber": 125 - } - ], - "textBefore": "97 SR-2 (", - "textAfter": ").", - "startOffset": 297560, - "endOffset": 297599, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a9c195843dd063ced04f62957b590d5c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 12 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 12]: Paragraph: In reponse to the", - "color": null, - "positions": [ - { - "rectangle": [ - 155.59871, - 679.72, - 40.989914, - 11.52 - ], - "pageNumber": 9 - } - ], - "textBefore": "Minet (1994c) and ", - "textAfter": " (2015), details of", - "startOffset": 20922, - "endOffset": 20931, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "90ecbf2650e8d68b2e2179ed1ae1e7e2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 308, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-10: Summary of modelling degradation rates of CGA192155 in aerobic soils ", - "section": "[308, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 99.6, - 723.76, - 35.47001, - 10.5 - ], - "pageNumber": 181 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 427592, - "endOffset": 427600, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "628ee5fe1740e9ec1b75cff6eac2f784", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 251, - 1, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 5]: Paragraph: Kirkpatrick, 1994a (CGA173506_0523). In", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 111.16005, - 50.7444, - 11.52 - ], - "pageNumber": 153 - } - ], - "textBefore": "", - "textAfter": ", 1994a (CGA173506_0523).", - "startOffset": 368005, - "endOffset": 368016, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40e57f4987601b8125bca5d37e7140c9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1144 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1144]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 44 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911379, - "endOffset": 911387, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "04c3f21b3a04e0f1e818140b20d5b3b2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1265 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1265]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 165 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918397, - "endOffset": 918405, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ca7638bb5f9cfc8f92f4e601334f9181", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1276 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1276]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 176 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919035, - "endOffset": 919043, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "682279cf6eafe668771d01d607296cb8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1308 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1308]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 208 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920891, - "endOffset": 920899, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b42e9bac88c1c97e26f226fa28e645c2", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Nozzle TEEjet XR 8002 VS", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 453, - 1, - 1, - 27 - ], - "closestHeadline": "Experimental design ", - "section": "[453, 1, 1, 27]: Table_cell: AGR-Double tank trial spayer.", - "color": null, - "positions": [ - { - "rectangle": [ - 383.09906, - 181.47998, - 102.01105, - 10.5 - ], - "pageNumber": 254 - } - ], - "textBefore": "tank trial spayer. ", - "textAfter": ". Spray pressue", - "startOffset": 576041, - "endOffset": 576065, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "555825fbe628496a8ea33c6e61a01d8d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 12]: Table_cell: Ellgehausen, 1992a", - "color": null, - "positions": [ - { - "rectangle": [ - 87.6, - 508.84, - 44.051994, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": ", 1992a", - "startOffset": 21720, - "endOffset": 21731, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d6bac21f4b6d6f354340e98dd93467da", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 487, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-1: CGA265378 adsorption/desorption studies ", - "section": "[487, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 132.0, - 273.64, - 35.46997, - 10.5 - ], - "pageNumber": 270 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 615376, - "endOffset": 615384, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4d5cb60f24f900cc39bf508d8572b348", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[289, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 463.5575, - 493.84, - 28.143219, - 11.52 - ], - "pageNumber": 172 - } - ], - "textBefore": "in eight studies: ", - "textAfter": " (1991), Ellgehausen (1992", - "startOffset": 407450, - "endOffset": 407456, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9657be475ea564773153e8cfb3ccac8f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 314, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-13: SYN545245 in aerobic soil degradation laboratory study considered in this assessment ", - "section": "[314, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 153.12, - 712.48, - 35.46997, - 10.5 - ], - "pageNumber": 183 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 433159, - "endOffset": 433167, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ff03de9ad798b217a681e07f2f361a90", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Bracknell, Berkshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 96, - 1, - 0, - 6 - ], - "closestHeadline": "Soil information: ", - "section": "[96, 1, 0, 6]: Table_cell: Jealott’s Hill Farm, Bracknell,", - "color": null, - "positions": [ - { - "rectangle": [ - 383.88, - 429.88, - 37.215027, - 10.5 - ], - "pageNumber": 69 - }, - { - "rectangle": [ - 340.32, - 419.56, - 34.975952, - 10.5 - ], - "pageNumber": 69 - } - ], - "textBefore": "Jealott’s Hill Farm, ", - "textAfter": ", UK 51°", - "startOffset": 155906, - "endOffset": 155926, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b8d0dac33ff377811958835a11a407fb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1401 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1401]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 301 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926285, - "endOffset": 926293, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a1ff0b3bcca6d67b83c13b3537ba0e20", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1165 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1165]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 65 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912597, - "endOffset": 912605, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3df5c9dd4b58fc2c881a1d63977d5c01", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1407 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1407]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926633, - "endOffset": 926641, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc091bb255bb72a3834b08d20e15791c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1385 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1385]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 285 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925357, - "endOffset": 925365, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07913df6c6c49f6ddab1f7e30b6fbad7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 49 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 49]: Table_cell: Ellgehausen (1992b)", - "color": null, - "positions": [ - { - "rectangle": [ - 87.6, - 568.48, - 44.041985, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1992b)", - "startOffset": 410084, - "endOffset": 410095, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e1e34a214df8f429d07e0b76fdf59b50", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Reischmann, F.", - "color": null, - "positions": [ - { - "rectangle": [ - 336.94165, - 243.64, - 145.43448, - 10.98 - ], - "pageNumber": 62 - }, - { - "rectangle": [ - 140.64, - 232.11998, - 163.90611, - 10.98 - ], - "pageNumber": 62 - } - ], - "textBefore": "Number PR 7/94. ", - "textAfter": ".", - "startOffset": 139917, - "endOffset": 139991, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84f214136fddecc4bcac89a4da76fce3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1383 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1383]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 283 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925241, - "endOffset": 925249, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1dff6630b27079fbeaf6b0e66ba06643", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 1, - 3 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 1, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 453.12, - 661.36, - 35.47702, - 10.5 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 284853, - "endOffset": 284861, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0dd7af3ad6a19f221978346abfe1d139", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 32 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 32]: Table_cell: Reischmann, 1994", - "color": null, - "positions": [ - { - "rectangle": [ - 89.28, - 372.76, - 44.513992, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": ", 1994", - "startOffset": 22167, - "endOffset": 22177, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6a409345ca409c0f6f6510491d99f81b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 95, - 9 - ], - "closestHeadline": "Materials ", - "section": "[95, 9]: Paragraph: Purity: 97.4 % Stability", - "color": null, - "positions": [ - { - "rectangle": [ - 76.2, - 742.24, - 24.465012, - 10.5 - ], - "pageNumber": 69 - } - ], - "textBefore": "", - "textAfter": " 97.4 % Stability", - "startOffset": 154772, - "endOffset": 154779, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "61f60ffcc97a8956c47764d9a2985ac3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1173 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1173]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 73 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913061, - "endOffset": 913069, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e4b01e60f2a105e53b98b4dbf55bc32", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 103, - 5 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[103, 5]: Paragraph: CGA 173506 slowly degraded", - "color": null, - "positions": [ - { - "rectangle": [ - 280.84967, - 246.76003, - 98.62665, - 11.52 - ], - "pageNumber": 74 - } - ], - "textBefore": "% AR in ", - "textAfter": " and East Anglia", - "startOffset": 169138, - "endOffset": 169159, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9f3d7be95bf6978d6972407152cbbae1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 184, - 8 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 8]: Paragraph: Fludioxonil (CGA173506) degraded rapidly", - "color": null, - "positions": [ - { - "rectangle": [ - 420.24, - 176.44002, - 28.210205, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "of two replicates; ", - "textAfter": " 2009). Those metabolites", - "startOffset": 283985, - "endOffset": 283990, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e9ea59eb60a02b0ab98edbaa33f2cb4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 355, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[355, 1]: Table: #cols: 5, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 307.68, - 721.84, - 35.967957, - 10.5 - ], - "pageNumber": 211 - } - ], - "textBefore": "", - "textAfter": " (2004) – Vouvry,", - "startOffset": 493007, - "endOffset": 493014, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bbc0c34e0517d043d83a6653176af314", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1204 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1204]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 104 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914859, - "endOffset": 914867, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8205fce27210c4f7c353d34c15e2314f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1199 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1199]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 99 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914569, - "endOffset": 914577, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a2ed397c835dd0604e0246f8e4f18c1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 646, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.3-2: Summary of the re-evaluated degradation rates for fludioxonil in aerobic water/sediment systems under dark condition for modelling purposes ", - "section": "[646, 3, 0, 0, 1]: Paragraph: K-IIA 7.2.1.3.2. Gonzalez-Valero, J.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 258.63998, - 36.646317, - 10.98 - ], - "pageNumber": 351 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " file No. CGA173506/0235).", - "startOffset": 806250, - "endOffset": 806258, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "168f19d116e064ae53476584570517c0", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "D-37290 Meißner-Vockerode, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 426, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[426, 1]: Paragraph: A terrestrial field dissipation", - "color": null, - "positions": [ - { - "rectangle": [ - 108.01545, - 112.479996, - 177.4419, - 11.52 - ], - "pageNumber": 244 - } - ], - "textBefore": "a site in ", - "textAfter": " on the 8th", - "startOffset": 556909, - "endOffset": 556943, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "eb89ada35dcc647893d35600eb4addeb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1441 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1441]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 341 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928605, - "endOffset": 928613, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2dc6b5a0f9b9214017ecbccf3bb87e53", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ellgehausen, H.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 48, - 2, - 5 - ], - "closestHeadline": "Table 7.1.1.1-31: DegT50 and DegT90 values for CGA173506 ", - "section": "[48, 2, 5]: Paragraph: (Ellgehausen, H., 1992)", - "color": null, - "positions": [ - { - "rectangle": [ - 437.70233, - 248.20003, - 70.01843, - 11.52 - ], - "pageNumber": 39 - } - ], - "textBefore": "(", - "textAfter": ", 1992)", - "startOffset": 89843, - "endOffset": 89858, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c3ed1596b8a8ce58ae67b9a3ba12cd47", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Thomas K.A.", - "reason": "Published Information found in row", - "matchedRule": "CBI.7.1", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 636, - 7, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.2-25: Summary of Characterisation / Identification of Radioactive Residues: Sterilised 14 Natural Water Phenyl-U-[ C]-Fludioxonil Treated (95 µg/L); Extracted Water Layer ", - "section": "[636, 7, 0, 0, 1]: Paragraph: K-CA 7.2.2.2/02. Thomas K.A.", - "color": null, - "positions": [ - { - "rectangle": [ - 212.88, - 202.35997, - 54.073364, - 10.98 - ], - "pageNumber": 345 - } - ], - "textBefore": "K-CA 7.2.2.2/02. ", - "textAfter": " & Hand L.H.", - "startOffset": 793698, - "endOffset": 793709, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [ - "9ce53fa784cdebc0ce4af836a9a7003a" - ], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "999e45533914fdb4928e9de08b375362", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1396 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1396]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 296 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925995, - "endOffset": 926003, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "156154a6f330861c20b03d305de71eee", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bundesanstalt für Land und Forstwirtschaft, Braunschweig, Federal Republic of", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 413, - 1 - ], - "closestHeadline": "Guidelines ", - "section": "[413, 1]: Paragraph: Richtlinie für die amtliche", - "color": null, - "positions": [ - { - "rectangle": [ - 461.28, - 273.16006, - 77.532684, - 11.52 - ], - "pageNumber": 240 - }, - { - "rectangle": [ - 70.92, - 260.56003, - 272.61597, - 11.52 - ], - "pageNumber": 240 - } - ], - "textBefore": "und Metabolismus” Biologische ", - "textAfter": " Germany, 1986.", - "startOffset": 548732, - "endOffset": 548809, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78847fab37c61e4867f69ac288dc6fde", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1399 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1399]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 299 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926169, - "endOffset": 926177, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1be5a505a0c4fe9ff46db1d94b982132", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1192 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1192]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 92 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914163, - "endOffset": 914171, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6c2eb307a64a50a268fd7bec63dfa5b4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[51, 3, 0]: Paragraph: 1 – – method", - "color": null, - "positions": [ - { - "rectangle": [ - 120.22295, - 133.96002, - 23.096031, - 10.518 - ], - "pageNumber": 41 - }, - { - "rectangle": [ - 120.22295, - 133.96002, - 23.096031, - 10.518 - ], - "pageNumber": 41 - } - ], - "textBefore": "laboratory as as ", - "textAfter": " 1991, 1991, Minet", - "startOffset": 94763, - "endOffset": 94776, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c77323fbe8b8f2b5272adbcf2324dfd0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 61 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 61]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 233.79999, - 30.540985, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 499726, - "endOffset": 499734, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9cf9907af3ce06c1ac1b2e8a8cb6dfaf", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 534, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-29: SYN545245 adsorption/desorption study ", - "section": "[534, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 611.44, - 35.47, - 10.5 - ], - "pageNumber": 293 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 670405, - "endOffset": 670413, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c53e1b3aaac638d21efff6b9d73286bc", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Environmental Chemistry & Pharmanalytics, CH-4002, Itingen, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 667, - 5, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 5, 0, 0, 1]: Paragraph: K-IIA 7.2.1.3.2. Adam, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 386.17673, - 551.32, - 113.57214, - 10.98 - ], - "pageNumber": 360 - }, - { - "rectangle": [ - 140.64, - 539.8, - 191.02287, - 10.98 - ], - "pageNumber": 360 - } - ], - "textBefore": "Exposure. RCC Ltd, ", - "textAfter": ".", - "startOffset": 827176, - "endOffset": 827247, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8b1b4def2a95bd7af94aca0b81534c67", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 2, - 12 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 2, 12]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 404.68, - 40.978867, - 11.52 - ], - "pageNumber": 175 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 414194, - "endOffset": 414202, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0045db93444efd2f763476eb71cc2d9b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 3, - 0, - 27 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 3, 0, 27]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 620.44, - 30.540985, - 10.5 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 463058, - "endOffset": 463066, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "eed41bfb8627744c52dc3baf0a17b72f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 0]: Table: #cols: 7, #rows: 9, Study Reference a Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 78.72, - 155.08002, - 44.061996, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1992a", - "startOffset": 404925, - "endOffset": 404936, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f01cec2fc1d5de13e9e2ee1846ea6963", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 62, - 1, - 2 - ], - "closestHeadline": "Materials ", - "section": "[62, 1, 2]: Paragraph: Lot/Batch #: LE-84.2A Specific", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 566.68, - 24.562866, - 10.518 - ], - "pageNumber": 49 - } - ], - "textBefore": "activity: 2.02 MBq/mg ", - "textAfter": " 99.5 % Stability", - "startOffset": 109536, - "endOffset": 109543, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84ec11fdf64b16590f4e1bc61119fc7c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 5]: Paragraph: Nonetheless, long term field", - "color": null, - "positions": [ - { - "rectangle": [ - 205.44, - 296.20004, - 31.819565, - 11.52 - ], - "pageNumber": 260 - } - ], - "textBefore": "also provided (", - "textAfter": ", 1999a; 1999b)", - "startOffset": 587730, - "endOffset": 587736, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a647374f17fb1a31c68eeb2cca1a5823", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 251, - 1, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 10]: Paragraph: ROI 7 was identified", - "color": null, - "positions": [ - { - "rectangle": [ - 364.6247, - 547.96, - 50.724426, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "and CGA192555 in ", - "textAfter": " 1994c.", - "startOffset": 369295, - "endOffset": 369306, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d9e1c72fc565064697c7dfc910cb5172", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1, - 4 - ], - "closestHeadline": "Table 7.1.2.2.1-3: Summary of the kinetic evaluation reports for the field soil degradation of fludioxonil ", - "section": "[334, 1, 4]: Table_cell: Syngenta report", - "color": null, - "positions": [ - { - "rectangle": [ - 385.32, - 426.16, - 35.46292, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " report", - "startOffset": 459628, - "endOffset": 459636, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb1f38c309a05bf5e37b79453da30738", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 16 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 16]: Table_cell: Ford, 2016a", - "color": null, - "positions": [ - { - "rectangle": [ - 389.76, - 445.84, - 19.29898, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": " 2016a", - "startOffset": 398368, - "endOffset": 398373, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f4d2e8aba0e7672a28d2c1903c063fd3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1160 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1160]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 60 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912307, - "endOffset": 912315, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8155119ba95f0ca8300ec96c1542035f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1157 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1157]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 57 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912133, - "endOffset": 912141, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1f352b92ec7122c2be93a01a1009a88d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 9 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 9]: Table_cell: Mair, 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 85.08, - 669.28, - 17.501999, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 1997", - "startOffset": 588668, - "endOffset": 588672, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ecdae2a216f2c1a3d13410ad369de586", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 26 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 26]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 359.8, - 30.540985, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 499283, - "endOffset": 499291, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e2801d88c250a90dd9410734e93e554", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 255, - 1, - 8 - ], - "closestHeadline": "Materials ", - "section": "[255, 1, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 538.96, - 27.592941, - 10.518 - ], - "pageNumber": 156 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 373481, - "endOffset": 373488, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b4572cb70dc3185b560368bc14915110", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 535, - 2, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-30: KFOC and 1/n (Freundlich exponent) adsorption values of SYN545245 in different soils ", - "section": "[535, 2, 0]: Table_cell: Report: K-CA 7.1.3.1.2/01. Caviezel,", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 352.96, - 37.075684, - 10.98 - ], - "pageNumber": 293 - } - ], - "textBefore": "Witterswil, Switzerland. (", - "textAfter": " file No. SYN545245_10015).", - "startOffset": 671282, - "endOffset": 671290, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "15d29ec3c0a0cf557e3b8afdbadac856", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 10 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 10]: Table_cell: Kirkpatrick, 1994d", - "color": null, - "positions": [ - { - "rectangle": [ - 72.96, - 596.32, - 41.539993, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": ", 1994d", - "startOffset": 700715, - "endOffset": 700726, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c5b5d2cf890293b71cb8e8ad127e9791", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 5 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 5]: Paragraph: In addition, a further", - "color": null, - "positions": [ - { - "rectangle": [ - 137.8363, - 440.08, - 50.74443, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "the findings of ", - "textAfter": " (1994c) that the", - "startOffset": 282203, - "endOffset": 282214, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b55aacc6eba8727a9731ac830366dead", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 1]: Table: #cols: 7, #rows: 12, Les Evouettes Silt loam", - "color": null, - "positions": [ - { - "rectangle": [ - 77.88, - 686.2, - 21.557, - 10.5 - ], - "pageNumber": 171 - } - ], - "textBefore": "", - "textAfter": ", 1994c", - "startOffset": 405250, - "endOffset": 405255, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07d01f66c6939643c79ddcc26269db64", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero, J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 646, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.3-2: Summary of the re-evaluated degradation rates for fludioxonil in aerobic water/sediment systems under dark condition for modelling purposes ", - "section": "[646, 3, 0, 0, 1]: Paragraph: K-IIA 7.2.1.3.2. Gonzalez-Valero, J.", - "color": null, - "positions": [ - { - "rectangle": [ - 206.00201, - 296.19998, - 79.65234, - 10.98 - ], - "pageNumber": 351 - } - ], - "textBefore": "K-IIA 7.2.1.3.2. ", - "textAfter": " (1992). Metabolism of", - "startOffset": 806054, - "endOffset": 806073, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "13956d255f3b8cfde749de8a27cf5b19", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 284, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.2-3: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived by kinetic modelling (from soil photolysis studies) ", - "section": "[284, 1, 0, 12]: Table_cell: Kirkpatrick, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 75.96, - 311.68, - 41.539993, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": ", 1994b", - "startOffset": 401804, - "endOffset": 401815, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2a5eb25b58d4daa25406e182c0b286d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey S", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 341, - 1, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[341, 1, 5]: Paragraph: (Emburey S, 2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 458.4, - 287.32004, - 49.098236, - 11.52 - ], - "pageNumber": 199 - } - ], - "textBefore": "(", - "textAfter": ", 2004)", - "startOffset": 474627, - "endOffset": 474636, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9e892c296c8fe294d7b84be1721d6c26", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1153 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1153]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 53 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911901, - "endOffset": 911909, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "727dc9e18ad8753ac2c593c26865d8f4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 308, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-10: Summary of modelling degradation rates of CGA192155 in aerobic soils ", - "section": "[308, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/03. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.52602, - 552.28, - 44.113358, - 10.98 - ], - "pageNumber": 181 - } - ], - "textBefore": "K-CA 7.1.2.1.2/03. ", - "textAfter": " (2015c): CGA192155 –", - "startOffset": 428219, - "endOffset": 428230, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b410a3142e03d8f8ba9f7880f1960059", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Environmental Science & Technology", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 573, - 7 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[573, 7]: Paragraph: Quantum yield represents the", - "color": null, - "positions": [ - { - "rectangle": [ - 134.51608, - 529.24, - 167.0765, - 11.52 - ], - "pageNumber": 312 - } - ], - "textBefore": "of Sunlight Actinometers. ", - "textAfter": " 16:815”. The quantum", - "startOffset": 715883, - "endOffset": 715917, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba252de581a2227a204c9c6fb53df591", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1135 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1135]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 35 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910857, - "endOffset": 910865, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "718dfd707d6c7fd8c5f4ad808307d215", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 554, - 1, - 0, - 2 - ], - "closestHeadline": "Table 7.1.4.1.1-1: Fludioxonil column leaching studies ", - "section": "[554, 1, 0, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 399.96, - 168.40002, - 35.48404, - 10.5 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 690940, - "endOffset": 690948, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fe0e3945c3911694bc91a5e9f896354", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair ,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 460, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[460, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Mair", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 191.67998, - 24.970016, - 10.98 - ], - "pageNumber": 256 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " P. (1995). Determination", - "startOffset": 579751, - "endOffset": 579757, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "daf30d3bef0bd31eefe3e0b99d93ffa1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Nickler", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 4 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 4]: Table_cell: Nickler, 1992", - "color": null, - "positions": [ - { - "rectangle": [ - 90.0, - 257.92004, - 26.883003, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": ", 1992", - "startOffset": 867291, - "endOffset": 867298, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1327937d5f3bc99c65205547ef19f2c8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schilter B", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 400.32205, - 105.999985, - 40.26288, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "I, Piersma A, ", - "textAfter": ", Schlatter J,", - "startOffset": 752174, - "endOffset": 752184, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c11880770e6c6291ae6626046512c31e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 307, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-9: CGA192155 in aerobic soil degradation laboratory study considered in this assessment ", - "section": "[307, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 153.12, - 210.40002, - 35.46997, - 10.5 - ], - "pageNumber": 180 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 427432, - "endOffset": 427440, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f4bf115b98a2cde1f0f67498335400f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 667, - 5, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 5, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506/5918).", - "color": null, - "positions": [ - { - "rectangle": [ - 146.49568, - 525.28, - 36.64633, - 10.98 - ], - "pageNumber": 360 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506/5918).", - "startOffset": 827250, - "endOffset": 827258, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f9c85a46fa3621631ba4bb249f5462c2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1350 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1350]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 250 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923327, - "endOffset": 923335, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06fd95ff5662a72883bfd6f5fc2785d6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mangelsdorf I", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 291.47147, - 105.999985, - 56.894287, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "A, Kleiner J, ", - "textAfter": ", Piersma A,", - "startOffset": 752148, - "endOffset": 752161, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7095393105deba8a277eca756a4e061e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1210 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1210]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 110 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915207, - "endOffset": 915215, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "69d1e6c650f7de0a4b1c47178e11182c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 645, - 1, - 0 - ], - "closestHeadline": "Table 7.2.2.3-1: Laboratory study on the degradation of fludioxonil in aquatic systems under dark conditions ", - "section": "[645, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 92.88, - 662.56, - 35.47001, - 10.5 - ], - "pageNumber": 351 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 804714, - "endOffset": 804722, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0eced4c7112f2b0f58db937f0a6d9b99", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1449 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1449]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 349 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929069, - "endOffset": 929077, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f11a3f04e34b02325cf2def51805930e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 1, - 7 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 1, 7]: Paragraph: Furthermore, Hayes (2016) provided", - "color": null, - "positions": [ - { - "rectangle": [ - 131.4, - 605.2, - 28.1792, - 11.52 - ], - "pageNumber": 168 - } - ], - "textBefore": "Furthermore, ", - "textAfter": " (2016) provided a", - "startOffset": 397480, - "endOffset": 397485, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "68286b806bda801f1c436d3d372a58ef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 284, - 1, - 0, - 30 - ], - "closestHeadline": "Table 7.1.2-3: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived by kinetic modelling (from soil photolysis studies) ", - "section": "[284, 1, 0, 30]: Table_cell: Adam, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 75.96, - 267.16003, - 22.022995, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": ", 2015", - "startOffset": 401945, - "endOffset": 401949, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4e885d7998a10d3308f30606d4135cbf", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 8 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 8]: Paragraph: An identical chromatographic method", - "color": null, - "positions": [ - { - "rectangle": [ - 458.17456, - 410.08, - 53.772278, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "extracts in the ", - "textAfter": " (1992a) study as", - "startOffset": 18318, - "endOffset": 18329, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "98f7be3334414c58abcc8fb249276d41", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 281, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 10]: Paragraph: Applying this rationale to", - "color": null, - "positions": [ - { - "rectangle": [ - 471.0, - 605.2, - 52.001953, - 11.52 - ], - "pageNumber": 167 - } - ], - "textBefore": "the study of ", - "textAfter": ", 1994a) metabolite", - "startOffset": 394199, - "endOffset": 394210, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0e1c1674c8b7886ae87b626764d6b298", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1274 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1274]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918919, - "endOffset": 918927, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c795182445371647246a4dcc823ee008", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 167, - 1, - 2 - ], - "closestHeadline": "Table 7.1.1.1-89: SYN545245 applied aerobic soil degradation laboratory study ", - "section": "[167, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 103.359985, - 35.48404, - 10.5 - ], - "pageNumber": 112 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 261161, - "endOffset": 261169, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "df11d5e6411dc95c84bc964e34e3f4d2", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Speyer, 67346 Speyer, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 171, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[171, 3, 0]: Paragraph: a Parameters provided by", - "color": null, - "positions": [ - { - "rectangle": [ - 242.59782, - 566.08, - 130.26106, - 10.98 - ], - "pageNumber": 115 - } - ], - "textBefore": "determined by LUFA ", - "textAfter": " (GLP). c Parameters", - "startOffset": 266387, - "endOffset": 266416, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d4e546b34df92feb39011ad0d33aaafb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 251, - 1, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 10]: Paragraph: ROI 7 was identified", - "color": null, - "positions": [ - { - "rectangle": [ - 400.48868, - 585.88, - 50.754395, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "radiolabelled component) in ", - "textAfter": " 1994a. However, Kirkpatrick", - "startOffset": 369015, - "endOffset": 369026, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dce8f6462bd024bea9c8fed1025ba006", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Maffezzoni", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 8 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 8]: Table_cell: Maffezzoni and Tournayre, 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 83.4, - 647.08, - 41.499, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": " and Tournayre, 1991", - "startOffset": 457109, - "endOffset": 457119, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "30add429ad6bba221e7078ef41fc738c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 3 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 410.28, - 586.12, - 35.48404, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 21508, - "endOffset": 21516, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22a7c5d81432ce7462d2fff95ab44616", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 694, - 4 - ], - "closestHeadline": "Executive Summary ", - "section": "[694, 4]: Paragraph: Input data were pre-processed", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 183.28004, - 75.10983, - 11.52 - ], - "pageNumber": 371 - } - ], - "textBefore": "sediment of the ", - "textAfter": " study were calculated", - "startOffset": 858196, - "endOffset": 858211, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "434369a53c84ae465b3424f9e152b274", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1420 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1420]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 320 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927387, - "endOffset": 927395, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b0e0f00a1e23d0405a78947d8d5c246", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1233 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1233]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 133 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916541, - "endOffset": 916549, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b285e2c074fb73c370976cb5a7a62845", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1215 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1215]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 115 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915497, - "endOffset": 915505, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "405adcf090240751d993bc4291419b90", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Concord, OH 4407, USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 2, 0, 1]: Paragraph: K-CA 7.1.1.3/01. Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 450.5822, - 406.12, - 53.87448, - 10.98 - ], - "pageNumber": 121 - }, - { - "rectangle": [ - 140.64, - 394.72, - 44.86798, - 10.98 - ], - "pageNumber": 121 - } - ], - "textBefore": "7528 Auburn Road, ", - "textAfter": ". (Syngenta File", - "startOffset": 285798, - "endOffset": 285819, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9b6139249902df539ebcdef2ed2f0d10", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1195 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1195]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 95 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914337, - "endOffset": 914345, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b8c7f2644491b5d6333313010c92f942", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 3, - 0, - 13 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 3, 0, 13]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 670.84, - 30.540985, - 10.5 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 462924, - "endOffset": 462932, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c19623d951276ca28e97126848fd8d57", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1369 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1369]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 269 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924429, - "endOffset": 924437, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a5b72ddd2fa7acba79bb622d5832629", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 73, - 1, - 1 - ], - "closestHeadline": "Materials ", - "section": "[73, 1, 1]: Paragraph: Description: Not reported Lot/Batch", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 544.6, - 24.562866, - 10.518 - ], - "pageNumber": 56 - } - ], - "textBefore": "MBq/mg (224 µCi/mg) ", - "textAfter": " 99.8 % Stability", - "startOffset": 124066, - "endOffset": 124073, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7917da9b2f4f6dd1cd2e1f8e8a1b28fb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schmidt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 561, - 4 - ], - "closestHeadline": "CA 7.2.1.2 Direct photochemical degradation ", - "section": "[561, 4]: Paragraph: The study of Schmidt", - "color": null, - "positions": [ - { - "rectangle": [ - 129.36, - 742.36, - 37.287582, - 11.52 - ], - "pageNumber": 307 - } - ], - "textBefore": "The study of ", - "textAfter": " (2001) investigated the", - "startOffset": 699876, - "endOffset": 699883, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e059bd4c1d92c8137df9fa4531e95b11", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1351 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1351]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 251 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923385, - "endOffset": 923393, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2101f3847bed0b22a8846f06a70eaf71", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 645, - 1, - 4 - ], - "closestHeadline": "Table 7.2.2.3-1: Laboratory study on the degradation of fludioxonil in aquatic systems under dark conditions ", - "section": "[645, 1, 4]: Table_cell: Gonzalez-Valero, 1992", - "color": null, - "positions": [ - { - "rectangle": [ - 83.28, - 647.92, - 61.378998, - 10.5 - ], - "pageNumber": 351 - } - ], - "textBefore": "", - "textAfter": ", 1992", - "startOffset": 804781, - "endOffset": 804796, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c644f84c0de048a9e3860c900dd54380", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 487, - 1, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-1: CGA265378 adsorption/desorption studies ", - "section": "[487, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 421.08, - 273.64, - 35.47702, - 10.5 - ], - "pageNumber": 270 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 615400, - "endOffset": 615408, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e059678c2476f765b04dc257431afcc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sandmeier,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 24 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 24]: Table_cell: Sandmeier, 1994", - "color": null, - "positions": [ - { - "rectangle": [ - 84.24, - 123.880005, - 40.760994, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": " 1994", - "startOffset": 867812, - "endOffset": 867822, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b47d32156d4d7286961a92b96c322681", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1142 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1142]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 42 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911263, - "endOffset": 911271, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "01752a50cd3a2eda4297da2c40d046d1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 20 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 20]: Table_cell: Mair (1995)", - "color": null, - "positions": [ - { - "rectangle": [ - 478.8, - 684.16, - 17.547028, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1995)", - "startOffset": 480850, - "endOffset": 480854, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "13559db5790c4bb66ea824f2129a677c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1196 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1196]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 96 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914395, - "endOffset": 914403, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "abecc28c4e78f352604b37cf19830629", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 25, - 1, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[25, 1, 6]: Paragraph: (Abildt, U., 1991)", - "color": null, - "positions": [ - { - "rectangle": [ - 463.38132, - 80.20003, - 44.334076, - 11.52 - ], - "pageNumber": 25 - } - ], - "textBefore": "(", - "textAfter": ", 1991)", - "startOffset": 61974, - "endOffset": 61984, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "295a52287189456ce1c6ab00b57cd731", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1464 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1464]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 364 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929939, - "endOffset": 929947, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "69ef4f4ab2b3b426429593bef4e23ed7", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Environmental Science & Technology", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 590, - 2, - 2 - ], - "closestHeadline": "Table 7.2.1.2-17: DT50 and DT90 Values of CGA173506 obtained by linear regression using the SFO Model ", - "section": "[590, 2, 2]: Paragraph: The quantum yield represents", - "color": null, - "positions": [ - { - "rectangle": [ - 318.70465, - 262.24002, - 168.96948, - 11.52 - ], - "pageNumber": 322 - } - ], - "textBefore": "of Sunlight Actinometers. ", - "textAfter": " 16:815”, the quantum", - "startOffset": 742302, - "endOffset": 742336, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a52c099d92fe6982b40491c4c96a905e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 645, - 1, - 3 - ], - "closestHeadline": "Table 7.2.2.3-1: Laboratory study on the degradation of fludioxonil in aquatic systems under dark conditions ", - "section": "[645, 1, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 431.52, - 662.56, - 35.48404, - 10.5 - ], - "pageNumber": 351 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 804755, - "endOffset": 804763, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bf782063feccf16e8a7b2dc518f102b3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ford, S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 366, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[366, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/04. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.53401, - 739.84, - 31.916, - 10.98 - ], - "pageNumber": 221 - } - ], - "textBefore": "K-CA 7.1.2.2.1/04. ", - "textAfter": " (2016b): Fludioxonil –", - "startOffset": 511521, - "endOffset": 511529, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e0d4fcf83c2c4b7c22012adad053c87", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 58 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 58]: Table_cell: Pietsch, 2016", - "color": null, - "positions": [ - { - "rectangle": [ - 387.36, - 192.28003, - 26.018982, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": ", 2016", - "startOffset": 399366, - "endOffset": 399373, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7a17f9d8bf74bc669a3eb1e695d0e8af", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 522, - 2, - 0, - 8 - ], - "closestHeadline": "Materials ", - "section": "[522, 2, 0, 8]: Table_cell: New York, USA", - "color": null, - "positions": [ - { - "rectangle": [ - 378.6, - 494.2, - 37.89499, - 10.518 - ], - "pageNumber": 287 - } - ], - "textBefore": "", - "textAfter": ", USA", - "startOffset": 654669, - "endOffset": 654677, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f15f7fc840c88599e03533534d27523", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1124 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1124]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 24 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910219, - "endOffset": 910227, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ca6f47f151c1961cd45c406544ce98f4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 281, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 5]: Paragraph: Kirkpatrick, 1994b (CGA173506_0519). In", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 173.44002, - 50.73439, - 11.52 - ], - "pageNumber": 166 - } - ], - "textBefore": "", - "textAfter": ", 1994b (CGA173506_0519).", - "startOffset": 393036, - "endOffset": 393047, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b8594100adc9a3cf1be51541e8d6605a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 349, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[349, 1]: Table: #cols: 4, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 290.4, - 721.84, - 33.033966, - 10.5 - ], - "pageNumber": 205 - } - ], - "textBefore": "", - "textAfter": " (1993a) – Euskirchen-Weideshim", - "startOffset": 484549, - "endOffset": 484557, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "222bf871df529a68f2e2b39ad5f437be", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 1, - 14 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 14]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 297.52005, - 40.978867, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 370234, - "endOffset": 370242, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bb43d1b7bf9ff4fac50bc5c76f7859d3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1156 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1156]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912075, - "endOffset": 912083, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "83a87570e50bceb5ec766999969a04d9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burton", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 517, - 1, - 3 - ], - "closestHeadline": "Table 7.1.3.1.2-518: CGA192155 adsorption/desorption study ", - "section": "[517, 1, 3]: Table_cell: Burton, 1996a", - "color": null, - "positions": [ - { - "rectangle": [ - 119.52, - 523.36, - 25.017006, - 10.5 - ], - "pageNumber": 285 - } - ], - "textBefore": "", - "textAfter": ", 1996a", - "startOffset": 649931, - "endOffset": 649937, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9b63b13950fecf143bc211e049096b3a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1253 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1253]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 153 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917701, - "endOffset": 917709, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8f9cd19dfe3d8bbcdfc64d182757b51c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 8 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 8]: Paragraph: An identical chromatographic method", - "color": null, - "positions": [ - { - "rectangle": [ - 336.86752, - 384.76, - 28.148254, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "as MF2 from ", - "textAfter": " (1991). The fraction", - "startOffset": 18486, - "endOffset": 18492, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78a28db280eb3f6dd6fd4cf5875cef3b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 63 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 63]: Table_cell: Minet (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 83.52, - 512.92, - 21.524994, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 410216, - "endOffset": 410221, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0575f8384688c54b10a247f622da1214", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 12 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 12]: Table_cell: Minet, 1994a", - "color": null, - "positions": [ - { - "rectangle": [ - 121.56, - 453.76, - 21.557007, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1994a", - "startOffset": 404095, - "endOffset": 404100, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2d11058e85e91083af7bfca17bae4f9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 0, - 0, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 2, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506/0488).", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 217.59996, - 36.646317, - 10.98 - ], - "pageNumber": 62 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506/0488).", - "startOffset": 139994, - "endOffset": 140002, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7de3adf55387c69b0b474d0011fff12f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 281, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 10]: Paragraph: Applying this rationale to", - "color": null, - "positions": [ - { - "rectangle": [ - 146.76, - 554.56, - 52.041885, - 11.52 - ], - "pageNumber": 167 - } - ], - "textBefore": "metabolites identified within ", - "textAfter": ", 1994c. The", - "startOffset": 394527, - "endOffset": 394538, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e5ad5eecaf747b35db2f8a7d12cb7f3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1469 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1469]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 369 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930229, - "endOffset": 930237, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5f539f2ca2e4b6c3bfebea8a53e82add", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 1, - 6 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 1, 6]: Paragraph: A statistical evaluation comparing", - "color": null, - "positions": [ - { - "rectangle": [ - 319.92, - 642.4, - 43.464783, - 11.52 - ], - "pageNumber": 168 - } - ], - "textBefore": "the study of ", - "textAfter": " (2016) which is", - "startOffset": 397378, - "endOffset": 397387, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "24544e2b8ee31f8e8bfea193d0f1c9d2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 171.85056, - 462.4, - 50.74443, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "here. For the ", - "textAfter": " 1994a study (14C-pyrrole", - "startOffset": 438891, - "endOffset": 438902, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7ead612c4ee45d19e100b5525b3019ca", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1438 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1438]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 338 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928431, - "endOffset": 928439, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "749f8b9e0d147965bf0f8e4738ebf60f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1103 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1103]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 3 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909001, - "endOffset": 909009, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95286fcb5333f412b9921a1a52760121", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Kirkpatrick, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 381.60187, - 211.71996, - 47.73291, - 10.98 - ], - "pageNumber": 9 - } - ], - "textBefore": "research Centre Ltd, ", - "textAfter": ", England. (Syngenta", - "startOffset": 22875, - "endOffset": 22885, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3a33b13b56c4f5172f63dcfddcf2fe26", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 474, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-1: Fludioxonil adsorption/desorption study ", - "section": "[474, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 498.4, - 35.47, - 10.5 - ], - "pageNumber": 262 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 591424, - "endOffset": 591432, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "eaae0aeddf7c38f1d62212d1cf4b915d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirpatrick", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 281, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 10]: Paragraph: Applying this rationale to", - "color": null, - "positions": [ - { - "rectangle": [ - 277.56, - 605.2, - 46.4599, - 11.52 - ], - "pageNumber": 167 - } - ], - "textBefore": "TLC analyses in ", - "textAfter": ", 1994c (taken", - "startOffset": 394156, - "endOffset": 394166, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "feb628f15baaa0ddf88d2f82c64add11", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1389 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1389]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 289 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925589, - "endOffset": 925597, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e21111e24db59c4568b4ba6dc26b4c2d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 112, - 2 - ], - "closestHeadline": "CGA265378 ", - "section": "[112, 2]: Paragraph: Since CGA265378 is a", - "color": null, - "positions": [ - { - "rectangle": [ - 141.6, - 631.0, - 51.971954, - 11.52 - ], - "pageNumber": 85 - } - ], - "textBefore": "of two replicates), ", - "textAfter": ", 1994c), one", - "startOffset": 193491, - "endOffset": 193502, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6574a49aa15326d4bc5dd8015a824651", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 21 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 21]: Table_cell: Reischmann, 1994", - "color": null, - "positions": [ - { - "rectangle": [ - 112.08, - 372.16, - 44.513992, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1994", - "startOffset": 404320, - "endOffset": 404330, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "20b4d54834287f535d1d8b117fdbbcbe", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Thomas", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 1 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 1]: Paragraph: Additionally a summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 231.12, - 372.64, - 36.673553, - 11.52 - ], - "pageNumber": 325 - } - ], - "textBefore": "a paper (", - "textAfter": " and Hand, 2011)", - "startOffset": 751346, - "endOffset": 751352, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d81256194f00b43561f962e3fb540c57", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ohio", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 189, - 2, - 3 - ], - "closestHeadline": "Materials ", - "section": "[189, 2, 3]: Table_cell: Madison, Ohio (USA)", - "color": null, - "positions": [ - { - "rectangle": [ - 296.68506, - 389.56, - 18.014984, - 10.5 - ], - "pageNumber": 123 - } - ], - "textBefore": "Madison, ", - "textAfter": " (USA)", - "startOffset": 291693, - "endOffset": 291697, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "91a98681e2302f477b72146c5d7dffd6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 1, - 28 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 1, 28]: Table_cell: Reischmann, 1994", - "color": null, - "positions": [ - { - "rectangle": [ - 78.48, - 640.96, - 46.79599, - 10.5 - ], - "pageNumber": 171 - } - ], - "textBefore": "", - "textAfter": " 1994", - "startOffset": 405427, - "endOffset": 405438, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e08bd94910cb974f8bfaf131379ae7e3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1371 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1371]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 271 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924545, - "endOffset": 924553, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "89fd68039fa2ea54ccd18b773e481fc0", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 638, - 1, - 3 - ], - "closestHeadline": "Executive Summary ", - "section": "[638, 1, 3]: Paragraph: Degradation in water-sediment systems", - "color": null, - "positions": [ - { - "rectangle": [ - 211.26404, - 509.8, - 23.242416, - 11.52 - ], - "pageNumber": 346 - } - ], - "textBefore": "metabolism by the ", - "textAfter": " or macrophytes, as", - "startOffset": 795410, - "endOffset": 795415, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a13f0d4a68233fe32ac04b12c5377985", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Innovative Environmental Services (IES) Ltd, Benkenstrasse 260, 4108 Witterswil", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 535, - 2, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-30: KFOC and 1/n (Freundlich exponent) adsorption values of SYN545245 in different soils ", - "section": "[535, 2, 0]: Table_cell: Report: K-CA 7.1.3.1.2/01. Caviezel,", - "color": null, - "positions": [ - { - "rectangle": [ - 364.32, - 379.0, - 140.97348, - 10.98 - ], - "pageNumber": 293 - }, - { - "rectangle": [ - 140.64, - 367.48, - 187.35277, - 10.98 - ], - "pageNumber": 293 - } - ], - "textBefore": "Report Number 20150137. ", - "textAfter": ", Switzerland. (Syngenta", - "startOffset": 671187, - "endOffset": 671266, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "277c60454ba86c271041949c578ab2e4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1]: Table: #cols: 7, #rows: 21, Reference Soil name Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 79.68, - 298.71997, - 33.571014, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (2015)", - "startOffset": 410649, - "endOffset": 410658, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8612d22abd472d017cd3ce78bba0cc9a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 324.90417, - 424.48, - 50.734436, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "reported within the ", - "textAfter": " 1994c study. The", - "startOffset": 439229, - "endOffset": 439240, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e1617f17686b7f47a7429be2787c6a8b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 96, - 1, - 0, - 6 - ], - "closestHeadline": "Soil information: ", - "section": "[96, 1, 0, 6]: Table_cell: Jealott’s Hill Farm, Bracknell,", - "color": null, - "positions": [ - { - "rectangle": [ - 311.88, - 429.88, - 46.238037, - 10.5 - ], - "pageNumber": 69 - } - ], - "textBefore": "", - "textAfter": " Farm, Bracknell, Berkshire,", - "startOffset": 155885, - "endOffset": 155899, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1c5c230815717cbfa519263bb6583fef", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1114 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1114]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 14 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909639, - "endOffset": 909647, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "558c7537240ce75d9d873b5561d123ec", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1391 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1391]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 291 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925705, - "endOffset": 925713, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2d54f13b6f3b41277212b06826be079", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ellgehausen, H.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 36, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[36, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Ellgehausen, H.", - "color": null, - "positions": [ - { - "rectangle": [ - 205.96954, - 430.36, - 64.155365, - 10.98 - ], - "pageNumber": 32 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " (1992b), Rate of", - "startOffset": 76480, - "endOffset": 76495, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "88f7339339d0b8128d0637676979d7a9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 300, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-5: CGA339833 in aerobic soil degradation laboratory study considered in this assessment ", - "section": "[300, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 153.12, - 335.08, - 35.46997, - 10.5 - ], - "pageNumber": 178 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 421803, - "endOffset": 421811, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "64aacf2282419fc28390ad87dba5db56", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 485, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[485, 6]: Paragraph: Syngenta asked the following", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 106.59999, - 40.98587, - 11.52 - ], - "pageNumber": 269 - } - ], - "textBefore": "", - "textAfter": " asked the following", - "startOffset": 612880, - "endOffset": 612888, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "26e09d2bee03ec6de40f8eddb40df7e8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 4, - 0, - 5 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 4, 0, 5]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 462.96, - 741.28, - 35.47702, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 400161, - "endOffset": 400169, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef3228d115a46b9901610f540886080c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 185, - 1, - 12 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 1, 12]: Table_cell: Kirkpatrick et al., 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 76.2, - 573.64, - 41.5, - 10.5 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": " et al., 1994b", - "startOffset": 285147, - "endOffset": 285158, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "469e2bf14705a01f9cb166ec8d6082c5", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "D-47574 Goch-Nierswalde, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 438, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[438, 1]: Paragraph: A terrestrial field dissipation", - "color": null, - "positions": [ - { - "rectangle": [ - 108.01545, - 99.88002, - 165.71057, - 11.52 - ], - "pageNumber": 248 - } - ], - "textBefore": "a site in ", - "textAfter": " on the 13th", - "startOffset": 564871, - "endOffset": 564903, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "61c75a750ca730b8d6e6d512bb83b555", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 22 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 22]: Table_cell: Ford, 2016b", - "color": null, - "positions": [ - { - "rectangle": [ - 389.52, - 414.04, - 19.29898, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": " 2016b", - "startOffset": 398508, - "endOffset": 398513, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ebdddee7c52b1378e8571f6ae55e1f5e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 436, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[436, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 298.83994, - 48.033783, - 10.98 - ], - "pageNumber": 248 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1994b). Field Soil", - "startOffset": 564260, - "endOffset": 564272, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6db8be32c2271fb834311ef9208318cc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 559, - 2 - ], - "closestHeadline": "CA 7.2.1 Route and rate of degradation in aquatic systems (chemical and photochemical degradation) ", - "section": "[559, 2]: Paragraph: The hydrolytic stability of", - "color": null, - "positions": [ - { - "rectangle": [ - 279.5403, - 665.44, - 40.398743, - 11.52 - ], - "pageNumber": 306 - } - ], - "textBefore": "one study (", - "textAfter": " et al., 1991d),", - "startOffset": 696531, - "endOffset": 696538, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "24c3085d70dca8539711102fa82283be", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1303 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1303]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 203 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920601, - "endOffset": 920609, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95bc1b32a279012d6cd124466ca29083", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 3 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 3]: Table_cell: Abildt, 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 122.88, - 535.36, - 23.01902, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1991", - "startOffset": 403858, - "endOffset": 403864, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "28c47e5bfb4226bee07051ee3f45ca1d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 15, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-9: ", - "section": "[15, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Abildt, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 160.47997, - 36.646317, - 10.98 - ], - "pageNumber": 17 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " file No. CGA173506/0112).", - "startOffset": 42705, - "endOffset": 42713, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50264a4d37874f432404c271d85152f1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1279 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1279]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 179 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919209, - "endOffset": 919217, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "028edef3e56e129da2727da8f3b66397", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 166, - 1 - ], - "closestHeadline": "SYN545245 ", - "section": "[166, 1]: Paragraph: SYN545245 was detected as", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 234.28004, - 28.174248, - 11.52 - ], - "pageNumber": 112 - } - ], - "textBefore": "new study of ", - "textAfter": " (2009), see section", - "startOffset": 260457, - "endOffset": 260462, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8afae4b630a54ee6181bae3e391d430d", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bundesanstalt für Land und Forstwirtschaft, Braunschweig, Federal Republic of", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 449, - 1 - ], - "closestHeadline": "Guidelines ", - "section": "[449, 1]: Paragraph: Richtlinie für die amtliche", - "color": null, - "positions": [ - { - "rectangle": [ - 461.28, - 105.760025, - 77.532684, - 11.52 - ], - "pageNumber": 252 - }, - { - "rectangle": [ - 70.92, - 93.03999, - 272.6349, - 11.52 - ], - "pageNumber": 252 - } - ], - "textBefore": "und Metabolismus” Biologische ", - "textAfter": " Germany, 1986.", - "startOffset": 572514, - "endOffset": 572591, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "de14b1efbbe2f1f41e80a64bb732e8d6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 504, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[504, 1]: Paragraph: The The adsorption/desorption adsorption/desorption", - "color": null, - "positions": [ - { - "rectangle": [ - 335.75626, - 238.24, - 46.157684, - 11.52 - ], - "pageNumber": 277 - } - ], - "textBefore": "loam), loam), New ", - "textAfter": " York Collamer Collamer", - "startOffset": 629511, - "endOffset": 629519, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8c5ae38a9048e746cf5866f009b6c52f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 197, - 7 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[197, 7]: Paragraph: The initial reactions of", - "color": null, - "positions": [ - { - "rectangle": [ - 74.64, - 591.88, - 28.206238, - 11.52 - ], - "pageNumber": 127 - } - ], - "textBefore": "Photolysis study (", - "textAfter": ", 2013, KCA", - "startOffset": 303157, - "endOffset": 303162, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f2d463afaa6a87e3b0a35fa4f626323", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 25, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[25, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Ellgehausen, H.", - "color": null, - "positions": [ - { - "rectangle": [ - 361.52063, - 728.32, - 145.59549, - 10.98 - ], - "pageNumber": 26 - }, - { - "rectangle": [ - 140.64, - 716.8, - 163.90611, - 10.98 - ], - "pageNumber": 26 - } - ], - "textBefore": "Report Number 91EH05. ", - "textAfter": ".", - "startOffset": 62137, - "endOffset": 62211, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b4bfb67134bd874d7801f3a215988fd1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1311 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1311]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 211 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921065, - "endOffset": 921073, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9965802b971fa04521dee6f6664dfcb8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1221 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1221]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915845, - "endOffset": 915853, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95c8006dde0dd07ce95fbccc8435495a", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "AgroLab AG, 6037 Root, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 117, - 2, - 0 - ], - "closestHeadline": "Soil information: ", - "section": "[117, 2, 0]: Paragraph: a Parameters provided by", - "color": null, - "positions": [ - { - "rectangle": [ - 202.62303, - 316.83997, - 137.58296, - 10.5 - ], - "pageNumber": 87 - } - ], - "textBefore": "Parameters determined by ", - "textAfter": " (non-GLP). a Parameters", - "startOffset": 200496, - "endOffset": 200530, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "83442f65f763f3d0c620a096e2f5e50f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 99.6, - 424.24, - 35.47001, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 416217, - "endOffset": 416225, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a7f4b8b340b6ca487b84f33cc9c1a059", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1296 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1296]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920195, - "endOffset": 920203, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5bbf3f25a4a5a07e9cbcc6928127e6a1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 7 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 7]: Paragraph: Ellgehausen (1992a)", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 428.68, - 53.82351, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "", - "textAfter": " (1992a)", - "startOffset": 18210, - "endOffset": 18221, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4ae642080d4b58eeee03806e5b404c9d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 47 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 47]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 284.2, - 30.540985, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 499551, - "endOffset": 499559, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f10c8562c90bd7c9c8244b7a33bab2e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0]: Table: #cols: 7, #rows: 15, Trial location Soil texture", - "color": null, - "positions": [ - { - "rectangle": [ - 474.36, - 537.28, - 33.06598, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 461119, - "endOffset": 461126, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fa0a45ec2aa29c1fbf3b0083313ab466", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 281, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 6]: Paragraph: Syngenta asked the following", - "color": null, - "positions": [ - { - "rectangle": [ - 485.4045, - 116.8, - 50.734406, - 11.52 - ], - "pageNumber": 166 - } - ], - "textBefore": "whether they mean ", - "textAfter": " 1994c and not", - "startOffset": 393445, - "endOffset": 393456, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9293d1c8ea997772bf689d6b3f30e654", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1352 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1352]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 252 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923443, - "endOffset": 923451, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22f769de6750f127fc7881beb31331bc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 466.08, - 724.0, - 35.47702, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 588480, - "endOffset": 588488, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d4b2f9bc3fe5fb89d7cb8f02b93da294", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1457 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1457]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 357 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929533, - "endOffset": 929541, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b95656f04c99d32a36d4d14e21988abf", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 491, - 1, - 2 - ], - "closestHeadline": "Test Material: Pyrroloe14C-CGA265378 ", - "section": "[491, 1, 2]: Paragraph: Specific activity: 29.9 µCi/mg", - "color": null, - "positions": [ - { - "rectangle": [ - 127.68972, - 548.92, - 24.074913, - 10.518 - ], - "pageNumber": 272 - } - ], - "textBefore": "29.9 µCi/mg Radiochemical ", - "textAfter": " 98.3 % first", - "startOffset": 618643, - "endOffset": 618650, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f58633e52e582725de02418882bbe26a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 502, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-48: KFOC and 1/n (Freundlich exponent) adsorption values of CGA339833 in different soils ", - "section": "[502, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 377.44, - 36.646317, - 10.98 - ], - "pageNumber": 277 - } - ], - "textBefore": "Texas, USA. (", - "textAfter": " file No. CGA339833/0001)", - "startOffset": 629035, - "endOffset": 629043, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6fe29d686a99cdc97ac0ca3ea2cf89dc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1109 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1109]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909349, - "endOffset": 909357, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef8a46dedf0875deba087323f5ef8464", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1212 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1212]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 112 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915323, - "endOffset": 915331, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7ea0ed2a4acfc73add47283bf615728d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 4 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 4]: Paragraph: Abildt (1991)", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 705.04, - 28.183243, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "", - "textAfter": " (1991)", - "startOffset": 16514, - "endOffset": 16520, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "160a740aa7b66a5ed4982263f57dd534", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 98 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 98]: Table_cell: Reischmann (1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 87.36, - 392.2, - 44.522995, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1994)", - "startOffset": 410571, - "endOffset": 410581, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "572ca2aab29f054e91e4c065385d5d1c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 25 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 25]: Table_cell: Abildt, 1994 *", - "color": null, - "positions": [ - { - "rectangle": [ - 81.12, - 510.28003, - 23.021996, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": ", 1994 *", - "startOffset": 701198, - "endOffset": 701204, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "880d88223e501f1db8f9d688d5a4fb32", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 70, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-43: DegT50 and DegT90 values for CGA173506 ", - "section": "[70, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 469.63174, - 728.32, - 49.348724, - 10.98 - ], - "pageNumber": 55 - }, - { - "rectangle": [ - 140.64, - 716.8, - 260.1411, - 10.98 - ], - "pageNumber": 55 - } - ], - "textBefore": "Number PR 4/94. ", - "textAfter": ".", - "startOffset": 121906, - "endOffset": 121980, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6803d85387ae5272e36ca3158e737c0b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 111, - 15 - ], - "closestHeadline": "Conclusions ", - "section": "[111, 15]: Paragraph: (Piskorski, 2015)", - "color": null, - "positions": [ - { - "rectangle": [ - 466.62833, - 87.03999, - 41.037933, - 11.52 - ], - "pageNumber": 84 - } - ], - "textBefore": "(", - "textAfter": ", 2015)", - "startOffset": 192940, - "endOffset": 192949, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "83c01d52a77ebb99e8c6780d708bda27", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 1, - 0, - 3 - ], - "closestHeadline": "Table 7.1.2.2.1-2: Field dissipation studies with fludioxonil treated seeds (used as supplemental information) ", - "section": "[333, 1, 0, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 429.6, - 712.48, - 35.48404, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 458364, - "endOffset": 458372, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ffc48438130c5a2723948c237afba8c6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 491, - 2, - 0, - 9 - ], - "closestHeadline": "Materials ", - "section": "[491, 2, 0, 9]: Table_cell: New York, USA", - "color": null, - "positions": [ - { - "rectangle": [ - 469.56, - 452.44, - 37.89499, - 10.518 - ], - "pageNumber": 272 - } - ], - "textBefore": "", - "textAfter": ", USA", - "startOffset": 619368, - "endOffset": 619376, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dc3780974e8b1566c3ddb1fff8b4280b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gonazalez-Valero, J.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 665, - 4 - ], - "closestHeadline": "Conclusions ", - "section": "[665, 4]: Paragraph: (Gonazalez-Valero, J. 1992)", - "color": null, - "positions": [ - { - "rectangle": [ - 417.79633, - 593.2, - 92.506165, - 11.52 - ], - "pageNumber": 359 - } - ], - "textBefore": "(", - "textAfter": " 1992)", - "startOffset": 824092, - "endOffset": 824112, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bcd2a5a5f34718cafc40d1dc0f05500d", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 48, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-31: DegT50 and DegT90 values for CGA173506 ", - "section": "[48, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 166.71996, - 311.75623, - 10.98 - ], - "pageNumber": 39 - } - ], - "textBefore": "Report Number 14/93. ", - "textAfter": ". (Syngenta file", - "startOffset": 90037, - "endOffset": 90111, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e3c20944bb9f6569b401c3ed58c80571", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 330.1831, - 179.67998, - 47.759827, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "P.O. Box 2, ", - "textAfter": ", PE18 6ES,", - "startOffset": 592664, - "endOffset": 592674, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62c81ae6480cf62091b3601dda0c2ff9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 331, - 10 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 10]: Paragraph: Nine field dissipation trials", - "color": null, - "positions": [ - { - "rectangle": [ - 101.28, - 667.12, - 33.005997, - 11.52 - ], - "pageNumber": 192 - } - ], - "textBefore": "ninth study (", - "textAfter": ", 1993) was", - "startOffset": 454001, - "endOffset": 454008, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3207e02c9fcbcba47c790fe0123eef22", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner P", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 594, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[594, 2]: Paragraph: (Miner P, 2013)", - "color": null, - "positions": [ - { - "rectangle": [ - 471.9193, - 450.16, - 35.81894, - 11.52 - ], - "pageNumber": 323 - } - ], - "textBefore": "(", - "textAfter": ", 2013)", - "startOffset": 743914, - "endOffset": 743921, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a1d33cd72e0a536073682590e2d1b4d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 491, - 2, - 0, - 40 - ], - "closestHeadline": "Materials ", - "section": "[491, 2, 0, 40]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 87.12, - 338.2, - 18.10212, - 10.518 - ], - "pageNumber": 272 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 619713, - "endOffset": 619717, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f31c84dd2ed7ba8997f1f97fd0116836", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1232 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1232]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 132 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916483, - "endOffset": 916491, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a60d19af7b30967a41ea59f6128c407e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 392.97995, - 487.72, - 50.764404, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "of these, except ", - "textAfter": " 1994a, the major", - "startOffset": 438738, - "endOffset": 438749, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6fbb668f44a7250c2adc914e8d30171c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1282 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1282]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 182 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919383, - "endOffset": 919391, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "281e4ab20b6e1a70f634eb7c2d3f36d5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kleiner J", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 250.08098, - 105.999985, - 36.362473, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "Cheeseman M A, ", - "textAfter": ", Mangelsdorf I,", - "startOffset": 752137, - "endOffset": 752146, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e372940b1d091feedd8ff2fe2cde7b55", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1278 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1278]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 178 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919151, - "endOffset": 919159, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87f1d182a97950c4c1fce91b46547eed", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 185, - 1, - 16 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 1, 16]: Table_cell: Kirkpatrick et al., 1994c", - "color": null, - "positions": [ - { - "rectangle": [ - 76.44, - 546.52, - 41.549995, - 10.5 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": " et al., 1994c", - "startOffset": 285246, - "endOffset": 285257, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8612807e423f8dfe449f1d0a9e1dfc8b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 561, - 3 - ], - "closestHeadline": "CA 7.2.1.2 Direct photochemical degradation ", - "section": "[561, 3]: Paragraph: In the new study", - "color": null, - "positions": [ - { - "rectangle": [ - 150.42331, - 185.92, - 28.166245, - 11.52 - ], - "pageNumber": 306 - } - ], - "textBefore": "new study (", - "textAfter": ", 2013) fludioxonil", - "startOffset": 699078, - "endOffset": 699083, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1597676f9657fe14e0a6cdbae33c48b2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 281, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 6]: Paragraph: Syngenta asked the following", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 116.8, - 40.978874, - 11.52 - ], - "pageNumber": 166 - } - ], - "textBefore": "", - "textAfter": " asked the following", - "startOffset": 393356, - "endOffset": 393364, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "29294e52a1dbf82702cf243a6451e3a4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 68 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 68]: Table_cell: Gentile (1993)", - "color": null, - "positions": [ - { - "rectangle": [ - 405.36, - 196.0, - 26.52005, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1993)", - "startOffset": 513601, - "endOffset": 513608, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fe0b3359e495ac42d67f4565c91a5f1c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 506, - 2, - 0, - 8 - ], - "closestHeadline": "Materials ", - "section": "[506, 2, 0, 8]: Table_cell: New York, USA", - "color": null, - "positions": [ - { - "rectangle": [ - 381.24, - 116.68, - 37.89499, - 10.518 - ], - "pageNumber": 278 - } - ], - "textBefore": "", - "textAfter": ", USA", - "startOffset": 633581, - "endOffset": 633589, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a8c2fae16a6b9e540f67be831d1393ea", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 400, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[400, 1, 1]: Paragraph: (Reichert, N. 1993)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.9053, - 469.24, - 53.533325, - 11.52 - ], - "pageNumber": 236 - } - ], - "textBefore": "(", - "textAfter": " 1993)", - "startOffset": 540610, - "endOffset": 540622, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "639794951c290e83578c4caff4ac74ff", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1116 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1116]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 16 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909755, - "endOffset": 909763, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "abcc987899e9a76a6af72a2d8d93da22", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 40 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 40]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 296.8, - 30.540985, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 513258, - "endOffset": 513266, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b151ef317bfa61d8e8a25e976ff029ec", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 520, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[520, 1]: Paragraph: The adsorption/desorption characteristics of", - "color": null, - "positions": [ - { - "rectangle": [ - 479.04, - 705.04, - 46.108795, - 11.52 - ], - "pageNumber": 286 - } - ], - "textBefore": "Collamer (loam) and ", - "textAfter": " Niagara (loam) using", - "startOffset": 651392, - "endOffset": 651400, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2157eca9895943f2ba40f4c57f28e7b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 40 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 40]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 309.40002, - 30.540985, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 499463, - "endOffset": 499471, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "71defb77a6a62e8b174a938fbb9fe43f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 135, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[135, 6]: Paragraph: (Adam and Wijntjes, 2015)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.34976, - 238.48, - 37.35858, - 11.52 - ], - "pageNumber": 97 - } - ], - "textBefore": "(Adam and ", - "textAfter": ", 2015)", - "startOffset": 226250, - "endOffset": 226258, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "00e8104d1ffb34e8427be84a7a0732ac", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 1 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642, 1]: Paragraph: Within the standard system,", - "color": null, - "positions": [ - { - "rectangle": [ - 144.39659, - 429.88, - 23.23442, - 11.52 - ], - "pageNumber": 349 - } - ], - "textBefore": "the macrophyte and ", - "textAfter": " systems, respectively, at", - "startOffset": 801581, - "endOffset": 801586, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6e096fcff7d7cc50fa5044667cac5419", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[289, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 196.84766, - 481.12, - 26.318558, - 11.52 - ], - "pageNumber": 172 - } - ], - "textBefore": "a and b), ", - "textAfter": " (1994 a, b", - "startOffset": 407493, - "endOffset": 407498, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b218d36a386e285268fccaba05e34487", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tribolet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 18 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 18]: Table_cell: Tribolet, 2001b", - "color": null, - "positions": [ - { - "rectangle": [ - 77.04, - 624.76, - 29.046997, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 2001b", - "startOffset": 588916, - "endOffset": 588924, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0823d1e0b5972a51fbb736de28319f0f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1250 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1250]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 150 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917527, - "endOffset": 917535, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07fee75130d18ebfca9bb444599646a0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 4 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 4]: Paragraph: The TLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 527.92, - 52.04193, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "metabolites identified within ", - "textAfter": ", 1994c. It", - "startOffset": 281666, - "endOffset": 281677, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a0f134cd1755d356ea043d5cb2e3f777", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 214, - 2, - 8 - ], - "closestHeadline": "Materials ", - "section": "[214, 2, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 162.76001, - 24.465004, - 10.5 - ], - "pageNumber": 132 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 318560, - "endOffset": 318567, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5ac629c307c65b1b322f5b25eb5d292c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ulbrich, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 137, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1771: CGA339833 applied aerobic soil degradation laboratory study ", - "section": "[137, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 206.008, - 389.2, - 44.681137, - 10.98 - ], - "pageNumber": 98 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.1. ", - "textAfter": " (1999), Rate of", - "startOffset": 227816, - "endOffset": 227827, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "992d49d84bd34b109122807868d4ef06", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 7 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 1, 7]: Paragraph: Only Minet 1994a and", - "color": null, - "positions": [ - { - "rectangle": [ - 310.98267, - 326.2, - 40.986877, - 11.52 - ], - "pageNumber": 62 - } - ], - "textBefore": "modelling (K-CA 7.1.2.2.1/05. ", - "textAfter": ", 2016) concluded", - "startOffset": 139626, - "endOffset": 139635, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "696689bf52c8d5b1a96d999f7aac1510", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 363, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[363, 1]: Table: #cols: 5, #rows: 15, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 404.76, - 724.0, - 33.02002, - 10.5 - ], - "pageNumber": 217 - } - ], - "textBefore": "", - "textAfter": " (1993b) – Winzerhausen", - "startOffset": 505155, - "endOffset": 505163, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fb18b50f11b9684559b6b772d54d24ed", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 187, - 7 - ], - "closestHeadline": "Executive Summary ", - "section": "[187, 7]: Paragraph: CGA173506 was observed to", - "color": null, - "positions": [ - { - "rectangle": [ - 206.3169, - 277.6, - 33.071, - 11.52 - ], - "pageNumber": 122 - } - ], - "textBefore": "and 50° N ", - "textAfter": ". The DT50", - "startOffset": 290189, - "endOffset": 290197, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32805a1165f56855cacea875b6aac516", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 18 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 18]: Paragraph: Syngenta agrees with the", - "color": null, - "positions": [ - { - "rectangle": [ - 251.63167, - 202.59999, - 27.528946, - 11.52 - ], - "pageNumber": 190 - } - ], - "textBefore": "was concluded within ", - "textAfter": ", 2016. The", - "startOffset": 449086, - "endOffset": 449091, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bd61b2ff84bde62dc8bb31d716ab6605", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 667, - 1, - 0, - 8 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 1, 0, 8]: Table_cell: Pietsch, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 101.04, - 325.47998, - 26.102997, - 10.5 - ], - "pageNumber": 359 - } - ], - "textBefore": "", - "textAfter": ", 2015", - "startOffset": 825217, - "endOffset": 825224, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cf915cd94fb80746d01d8f08151e90bb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Widmer,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 8 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 8]: Table_cell: Widmer, 2001a", - "color": null, - "positions": [ - { - "rectangle": [ - 86.76, - 232.71997, - 31.785004, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": " 2001a", - "startOffset": 867398, - "endOffset": 867405, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e0533a5396d5da226b8eca7be012dbc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 506, - 2, - 0, - 40 - ], - "closestHeadline": "Materials ", - "section": "[506, 2, 0, 40]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 87.0, - 671.92, - 18.029999, - 10.5 - ], - "pageNumber": 279 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 633940, - "endOffset": 633944, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bfd1b269c01cd04e73f2573c42d94090", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Northwood, Northwood", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 96, - 2, - 0 - ], - "closestHeadline": "Soil information: ", - "section": "[96, 2, 0]: Paragraph: Final (end of study)", - "color": null, - "positions": [ - { - "rectangle": [ - 267.78088, - 717.64, - 43.235992, - 10.5 - ], - "pageNumber": 70 - }, - { - "rectangle": [ - 267.78088, - 717.64, - 40.987, - 10.5 - ], - "pageNumber": 70 - } - ], - "textBefore": "Laboratories, Laboratories, Northwood, ", - "textAfter": ", Northwood, ND", - "startOffset": 157596, - "endOffset": 157616, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "de34e585995561bf6cc8387493cfd36c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 55 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 55]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.16, - 589.24, - 30.527039, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 481217, - "endOffset": 481225, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aa90f94bd1c476ce65e1333cd49aae9e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1178 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1178]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 78 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913351, - "endOffset": 913359, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6d7f3a4e774b5d5cae42f0357fa849c2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 362, - 1, - 0, - 34 - ], - "closestHeadline": "Table 7.1.2.2.1-12: Summary of modelling DegT50 matrix values for fludioxonil normalised to standard temperature ", - "section": "[362, 1, 0, 34]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.16, - 601.6, - 30.527039, - 10.5 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 504712, - "endOffset": 504720, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4de8c355571aff37319cea657f50e24b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1243 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1243]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 143 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917121, - "endOffset": 917129, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "498b462426d029b02e3798ca5feeda46", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch K", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 698, - 2, - 1 - ], - "closestHeadline": "Table 7.2.2.4-6: Summary of modelling endpoints, Adam (2004), light exposed ", - "section": "[698, 2, 1]: Paragraph: (Pietsch K, 2015)", - "color": null, - "positions": [ - { - "rectangle": [ - 465.1903, - 340.96, - 42.46057, - 11.52 - ], - "pageNumber": 373 - } - ], - "textBefore": "(", - "textAfter": ", 2015)", - "startOffset": 863780, - "endOffset": 863789, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "56af79dd61db0d91f2e5744712605b58", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 184, - 5 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 5]: Paragraph: In addition, a further", - "color": null, - "positions": [ - { - "rectangle": [ - 261.6031, - 465.4, - 26.939758, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "photolysis study (", - "textAfter": ", 2015) was", - "startOffset": 282031, - "endOffset": 282035, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7c911514947841110db892b16f58ad01", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1447 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1447]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 347 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928953, - "endOffset": 928961, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b655f02c5ff554f1fbe2b1a3fcf3eac3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1129 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1129]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 29 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910509, - "endOffset": 910517, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e16bcf14195afa3b5f1303e2d4d348dd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1161 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1161]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 61 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912365, - "endOffset": 912373, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f44187ac6e3c8202a67288499566fdbf", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1194 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1194]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 94 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914279, - "endOffset": 914287, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3db896a36b5109ad3b9ea5506ddcd18b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1314 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1314]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921239, - "endOffset": 921247, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2be7010675fd5dcd2568e3089eb4c12f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1224 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1224]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 124 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916019, - "endOffset": 916027, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2a5d09f1ded46698ba879d7bc32f30d1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1138 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1138]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 38 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911031, - "endOffset": 911039, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "25dc948023d275ea71fa4a8f61759461", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1287 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1287]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 187 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919673, - "endOffset": 919681, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "51e24daa62f5bfcffa0624720ef5d68d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins D. R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 191.012, - 202.59996, - 58.288696, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "K-IIA 7.1.2. ", - "textAfter": ", Kirkpatrick D.,", - "startOffset": 592476, - "endOffset": 592489, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "107bce2dc02baf673624b2ae878448c9", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 234, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[234, 1]: Paragraph: The photolysis of 14", - "color": null, - "positions": [ - { - "rectangle": [ - 347.502, - 394.96, - 33.022003, - 11.52 - ], - "pageNumber": 146 - } - ], - "textBefore": "summer sunlight at ", - "textAfter": " 30 N. Treated", - "startOffset": 351606, - "endOffset": 351614, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a26121c6a372334908cc2592fb884ca4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 353, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[353, 1]: Table: #cols: 4, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 301.92, - 721.84, - 33.02002, - 10.5 - ], - "pageNumber": 209 - } - ], - "textBefore": "", - "textAfter": " (1994b) – Goch-Nierswalde", - "startOffset": 490458, - "endOffset": 490466, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f520e12e4daea4652b9180daf06cc95", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 354, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[354, 1]: Table: #cols: 4, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 313.92, - 721.84, - 33.041016, - 10.5 - ], - "pageNumber": 210 - } - ], - "textBefore": "", - "textAfter": " (1994c) – Obernburg", - "startOffset": 491816, - "endOffset": 491824, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3a41a01119284cbe499e38923efb877f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1460 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1460]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 360 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929707, - "endOffset": 929715, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78a9d6c3988562b9ac22afcc3af64094", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1362 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1362]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 262 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924023, - "endOffset": 924031, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "52238630d4fad3676380d9921dbc2eb5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1168 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1168]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 68 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912771, - "endOffset": 912779, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f7dcf28cbeb887c455acd361ee38a537", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 306, - 3 - ], - "closestHeadline": "CGA192155 ", - "section": "[306, 3]: Paragraph: Formation fractions of CGA192155", - "color": null, - "positions": [ - { - "rectangle": [ - 214.44, - 277.48, - 28.17517, - 11.52 - ], - "pageNumber": 180 - } - ], - "textBefore": "evaluation performed by ", - "textAfter": " (2016). The evaluation", - "startOffset": 427158, - "endOffset": 427163, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9b3a9bffdf1373494a7d5c3b0105688d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Les Barges", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 214, - 3, - 3 - ], - "closestHeadline": "Materials ", - "section": "[214, 3, 3]: Table_cell: Vouvry, Les Barges (Switzerland)", - "color": null, - "positions": [ - { - "rectangle": [ - 285.51498, - 726.28, - 40.19397, - 10.5 - ], - "pageNumber": 133 - } - ], - "textBefore": "Vouvry, ", - "textAfter": " (Switzerland) Lat. 46°20’N,", - "startOffset": 318740, - "endOffset": 318750, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "85b451d00d18458be9071eaefe71bad8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 292, - 2 - ], - "closestHeadline": "CGA265378 ", - "section": "[292, 2]: Paragraph: Data on formation fractions", - "color": null, - "positions": [ - { - "rectangle": [ - 375.84, - 580.96, - 28.175201, - 11.52 - ], - "pageNumber": 176 - } - ], - "textBefore": "evaluation performed by ", - "textAfter": " (2016). This evaluation", - "startOffset": 415692, - "endOffset": 415697, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a42045060a8ea7768c4310405e978c6c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Patterson D", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 378, - 2, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-17: Summary of modelling endpoints ", - "section": "[378, 2, 0]: Paragraph: (Patterson D, 2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.0, - 534.88, - 51.770874, - 11.52 - ], - "pageNumber": 228 - } - ], - "textBefore": "(", - "textAfter": ", 2016)", - "startOffset": 526646, - "endOffset": 526657, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6015c3aadf7a83caed087f1aad9dc5e7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "RCC Ltd", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 667, - 5, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 5, 0, 0, 1]: Paragraph: K-IIA 7.2.1.3.2. Adam, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 345.89493, - 551.32, - 35.250824, - 10.98 - ], - "pageNumber": 360 - } - ], - "textBefore": "Under Light Exposure. ", - "textAfter": ", Environmental Chemistry", - "startOffset": 827167, - "endOffset": 827174, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "71838ed46f7dfc23854034d88c52704d", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dr. Knoell Consult GmbH, Mannheim, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 315, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-14: Summary of modelling degradation rates of SYN545245 in aerobic soils ", - "section": "[315, 3, 0, 0]: Table_cell: Report: K-CA 7.1.2.1.2/04. Pietsch.", - "color": null, - "positions": [ - { - "rectangle": [ - 403.176, - 475.6, - 108.589325, - 10.98 - ], - "pageNumber": 183 - }, - { - "rectangle": [ - 140.64, - 464.08, - 85.421814, - 10.98 - ], - "pageNumber": 183 - } - ], - "textBefore": "Report Number 105355-1. ", - "textAfter": ". (Syngenta File", - "startOffset": 434080, - "endOffset": 434122, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c88fab27d9b22c0710fd568c5f9c6f57", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1175 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1175]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 75 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913177, - "endOffset": 913185, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d5a798f6e833eb54bb7788729528c104", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 137, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1771: CGA339833 applied aerobic soil degradation laboratory study ", - "section": "[137, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 113.16, - 524.68, - 35.47, - 10.5 - ], - "pageNumber": 98 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 227409, - "endOffset": 227417, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "42a09b11da5597d10582dbfae73eeeb2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 4, - 0, - 10 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 4, 0, 10]: Table_cell: Hayes, 2016", - "color": null, - "positions": [ - { - "rectangle": [ - 389.04, - 707.56, - 22.515045, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": ", 2016", - "startOffset": 400380, - "endOffset": 400385, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2fe0deb812fd212395202bcae82ff18", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1307 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1307]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 207 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920833, - "endOffset": 920841, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "33f04279b4eaaa8002d61f8b8f790386", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1338 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1338]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 238 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922631, - "endOffset": 922639, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "557904798c3f095429d71373cb074541", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1122 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1122]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 22 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910103, - "endOffset": 910111, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "225fac38cae84c793161e1917b09d446", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 501, - 1, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-37: CGA339833 adsorption/desorption study ", - "section": "[501, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 724.0, - 35.48404, - 10.5 - ], - "pageNumber": 277 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 627792, - "endOffset": 627800, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b9e87f2ac910b4894df150655a23547", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1207 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1207]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 107 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915033, - "endOffset": 915041, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "97180be5f4f2ba74f9bb1678ec5cf412", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 95, - 13 - ], - "closestHeadline": "Materials ", - "section": "[95, 13]: Paragraph: N H * indicates", - "color": null, - "positions": [ - { - "rectangle": [ - 76.2, - 543.4, - 24.465012, - 10.5 - ], - "pageNumber": 69 - } - ], - "textBefore": "2.054 MBq mg-1 ", - "textAfter": " 98.2 % Stability", - "startOffset": 155315, - "endOffset": 155322, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bbbabb9323b7103eab2c5ad6b2ff879d", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "JSC International Limited, Harrogate, United Kingdom", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 366, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[366, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/04. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 409.8059, - 728.32, - 106.414246, - 10.98 - ], - "pageNumber": 221 - }, - { - "rectangle": [ - 140.64, - 716.8, - 112.29408, - 10.98 - ], - "pageNumber": 221 - } - ], - "textBefore": "Report Number SYN/12/09-Kin01. ", - "textAfter": ". (Syngenta File", - "startOffset": 511656, - "endOffset": 511708, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "952377cf01f2a71900410a0de8525c49", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 551, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-736: CGA308568 adsorption/desorption studies ", - "section": "[551, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 500.68, - 35.47, - 10.5 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 689804, - "endOffset": 689812, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e8dc4e0a6bce0717b1e795cbaf2b0a64", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1200 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1200]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 100 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914627, - "endOffset": 914635, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1fc56005c1789c10dd93c36046c88dd1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1110 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1110]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 10 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909407, - "endOffset": 909415, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ed2550db484ce2c4f6d60088b9b00e85", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Vos J G", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 133.84064, - 94.479965, - 32.18712, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "van Schothorst F, ", - "textAfter": ", Wurtzen G,", - "startOffset": 752217, - "endOffset": 752224, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3acea96bddd2d462235212df331d6bab", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Bracknell, Berkshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 117, - 1, - 0, - 5 - ], - "closestHeadline": "Soil information: ", - "section": "[117, 1, 0, 5]: Table_cell: Jealott’s Hill Farm, Bracknell,", - "color": null, - "positions": [ - { - "rectangle": [ - 211.68, - 687.04, - 74.464966, - 10.5 - ], - "pageNumber": 87 - } - ], - "textBefore": "Jealott’s Hill Farm, ", - "textAfter": ", UK (51º27", - "startOffset": 198772, - "endOffset": 198792, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "beddd5ea353e3454d061975efebf1358", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 673, - 2 - ], - "closestHeadline": "Lot/Batch #: ILA-60.1 ", - "section": "[673, 2]: Paragraph: Radiochemical Purity: 97.6 %", - "color": null, - "positions": [ - { - "rectangle": [ - 130.31664, - 215.44, - 27.713394, - 10.518 - ], - "pageNumber": 361 - } - ], - "textBefore": "Radiochemical ", - "textAfter": " 97.6 %", - "startOffset": 831389, - "endOffset": 831396, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b5e2811cc408cd1c8e91324c565e2980", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 324, - 1, - 0, - 18 - ], - "closestHeadline": "Table 7.1.2.1.2-1317: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived from kinetic modelling ", - "section": "[324, 1, 0, 18]: Table_cell: Kirkpatrick, 1994c", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 242.68, - 41.539986, - 10.5 - ], - "pageNumber": 186 - } - ], - "textBefore": "", - "textAfter": ", 1994c", - "startOffset": 442387, - "endOffset": 442398, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f6997fe2362b437cd3dc02254bd4846d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1113 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1113]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 13 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909581, - "endOffset": 909589, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f1375829c83d22bf499582bcca5a21f1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1242 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1242]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 142 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917063, - "endOffset": 917071, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4d82ef11d66b0cc7fd150598651c11b3", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[51, 3, 0]: Paragraph: 1 – – method", - "color": null, - "positions": [ - { - "rectangle": [ - 427.41766, - 144.28003, - 45.909943, - 10.518 - ], - "pageNumber": 41 - } - ], - "textBefore": "was was conducted ", - "textAfter": " at the the", - "startOffset": 94701, - "endOffset": 94713, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9a0a460d062d41b9877f64c7bb21de65", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/01. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.52602, - 271.47995, - 44.113358, - 10.98 - ], - "pageNumber": 176 - } - ], - "textBefore": "K-CA 7.1.2.1.2/01. ", - "textAfter": " (2015a): CGA265378 –", - "startOffset": 416881, - "endOffset": 416892, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b5c0daff4fa9bc5eae5403e0cdcdc663", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 327, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-1620: Photolytic degradates (Miner, 2009) ", - "section": "[327, 1, 1]: Table_cell: Miner, 2009", - "color": null, - "positions": [ - { - "rectangle": [ - 361.2, - 721.84, - 26.249023, - 10.5 - ], - "pageNumber": 188 - } - ], - "textBefore": "", - "textAfter": " 2009", - "startOffset": 444086, - "endOffset": 444092, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bee089f9d2823e37c90a90a365ada249", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1289 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1289]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 189 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919789, - "endOffset": 919797, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7b0befe2c335c8629ac448a4ed5f890", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 1, - 0, - 27 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 1, 0, 27]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 475.68, - 305.32, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 462214, - "endOffset": 462222, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "26cb8a062ed479103c43c1684e230fda", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 436, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[436, 1, 1]: Paragraph: (Reichert, N. 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.9053, - 344.68, - 53.533325, - 11.52 - ], - "pageNumber": 248 - } - ], - "textBefore": "(", - "textAfter": " 1994)", - "startOffset": 564217, - "endOffset": 564229, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0cfe8cd994e187ac0067757095098334", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 184, - 4 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 4]: Paragraph: The TLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 214.92, - 502.72, - 26.9178, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "the new studies; ", - "textAfter": ", 2015 (dry", - "startOffset": 281908, - "endOffset": 281912, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a08ec2e04ed3455d33117c50173e81d5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 9, - 2, - 0, - 36 - ], - "closestHeadline": "Materials ", - "section": "[9, 2, 0, 36]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 94.08, - 292.95996, - 18.10212, - 10.518 - ], - "pageNumber": 11 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 27833, - "endOffset": 27837, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ecf606b6bb7bf9b5ae589bdbb74fc29b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1408 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1408]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 308 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926691, - "endOffset": 926699, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "861dea9edf9341bb3b00f980356c95e8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.1/01. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.47386, - 739.84, - 44.153336, - 10.98 - ], - "pageNumber": 172 - } - ], - "textBefore": "K-CA 7.1.2.1.1/01. ", - "textAfter": " (2015): Fludioxonil –", - "startOffset": 406550, - "endOffset": 406561, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7b95d31e660c908533a5e2b598ceb88", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1269 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1269]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918629, - "endOffset": 918637, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c6093fbb10e384c8f03a8fce999b3ced", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1141 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1141]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 41 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911205, - "endOffset": 911213, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7a0ff592ca5f0f1aab2c6946a3545f9f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 1, - 0, - 16 - ], - "closestHeadline": "Table 7.1.2.2.1-2: Field dissipation studies with fludioxonil treated seeds (used as supplemental information) ", - "section": "[333, 1, 0, 16]: Table_cell: Walser, 1999b §", - "color": null, - "positions": [ - { - "rectangle": [ - 82.68, - 587.2, - 25.512993, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": ", 1999b §", - "startOffset": 458871, - "endOffset": 458877, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da66d24920c5c608b212cfaf822d5dc4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 651, - 2, - 0, - 51 - ], - "closestHeadline": "Lot/Batch #: Le-84.2A ", - "section": "[651, 2, 0, 51]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.76, - 451.72, - 18.029999, - 10.5 - ], - "pageNumber": 353 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 810441, - "endOffset": 810445, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c98094dd88201865140d533a176e3fd1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 0, - 0 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 666.88, - 35.47, - 10.5 - ], - "pageNumber": 326 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 752692, - "endOffset": 752700, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32d2b8f6e87ab5dad4278b4967c469e2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1187 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1187]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 87 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913873, - "endOffset": 913881, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "479c2e833e88e0dbc2b14fd6f0cb01ef", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1345 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1345]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 245 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923037, - "endOffset": 923045, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f039dc4e3a8ab91193a67e6d1713917", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1291 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1291]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 191 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919905, - "endOffset": 919913, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "efe8fc589a3d63e2c7ae78609f2c7050", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1117 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1117]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 17 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909813, - "endOffset": 909821, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22bdc091fea6630e7c8c6feeaa472b8c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1302 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1302]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920543, - "endOffset": 920551, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8b0b0f98d0c25e72d93ec5f178a7f1a6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1146 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1146]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 46 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911495, - "endOffset": 911503, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "716c6635a339ed3011b6c455cd336548", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 695, - 0 - ], - "closestHeadline": "Table 7.2.2.4-3: Summary of persistence endpoints, Gonzalez-Valero (1992), in dark ", - "section": "[695, 0]: Headline: Table 7.2.2.4-3: Summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 320.37534, - 505.48, - 77.767426, - 10.98 - ], - "pageNumber": 372 - } - ], - "textBefore": "of persistence endpoints, ", - "textAfter": " (1992), in dark", - "startOffset": 860520, - "endOffset": 860535, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0883d2f6a8ecccc59636eaa54d933253", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1403 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1403]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 303 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926401, - "endOffset": 926409, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "499a67dc9cf66b76d35d4a047d3f77dc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1434 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1434]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 334 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928199, - "endOffset": 928207, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5b56ff214cd4daeca4b61794c807687", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 373, - 1, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[373, 1, 0]: Table: #cols: 5, #rows: 14, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 271.32, - 721.84, - 33.033966, - 10.5 - ], - "pageNumber": 226 - } - ], - "textBefore": "", - "textAfter": " (1994a) – Meissner-Vockerode", - "startOffset": 521982, - "endOffset": 521990, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1ada1ad242ca620f77333947767e1de0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 40, - 2, - 0, - 24 - ], - "closestHeadline": "Materials ", - "section": "[40, 2, 0, 24]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 94.08, - 344.68, - 18.10212, - 10.518 - ], - "pageNumber": 34 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 79498, - "endOffset": 79502, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3decf7eb7182d1f20f2b5410555db343", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 156, - 1, - 4 - ], - "closestHeadline": "Materials ", - "section": "[156, 1, 4]: Paragraph: Purity: 99.1 % (as", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 576.64, - 24.562866, - 10.518 - ], - "pageNumber": 107 - } - ], - "textBefore": "", - "textAfter": " 99.1 % (as", - "startOffset": 247839, - "endOffset": 247846, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1061f90b967a25ecf824348d656505e2", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 4 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 4]: Table_cell: Kirkpatrick et al., 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 80.88, - 561.16, - 41.48001, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": " et al., 1991", - "startOffset": 21534, - "endOffset": 21545, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a79906560820de335197dfb66fd238cc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 70, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-43: DegT50 and DegT90 values for CGA173506 ", - "section": "[70, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 206.00601, - 739.84, - 38.0018, - 10.98 - ], - "pageNumber": 55 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " (1994c), Degradation and", - "startOffset": 121765, - "endOffset": 121774, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "99157df29a0b7f92ba6781478a39b841", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 9, - 1, - 2 - ], - "closestHeadline": "Materials ", - "section": "[9, 1, 2]: Paragraph: Lot/Batch #: K-736.3A Specific", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 560.32, - 24.562866, - 10.518 - ], - "pageNumber": 11 - } - ], - "textBefore": "activity: 2.04 MBq/mg ", - "textAfter": " > 98 %", - "startOffset": 26764, - "endOffset": 26771, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e99e3dec1f020051ff65ab7082a29f9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1252 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1252]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 152 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917643, - "endOffset": 917651, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c1ffff53ca0e5bf511b8ae7fb9063448", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 16 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 16]: Table_cell: Ellgehausen, 1992b", - "color": null, - "positions": [ - { - "rectangle": [ - 87.24, - 481.6, - 44.051994, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": ", 1992b", - "startOffset": 21813, - "endOffset": 21824, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fea5ae44c624a52f6f0f8a9c8aa9c6a6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 291, - 2, - 13 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 2, 13]: Paragraph: Regarding Kirkpatrick, 1991, section", - "color": null, - "positions": [ - { - "rectangle": [ - 119.55266, - 386.08, - 50.77437, - 11.52 - ], - "pageNumber": 175 - } - ], - "textBefore": "Regarding ", - "textAfter": ", 1991, section", - "startOffset": 414223, - "endOffset": 414234, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d529d7af84073f069a7173b03fa05777", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 5, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 5, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/01. Emburey, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 415.12, - 37.190094, - 10.98 - ], - "pageNumber": 197 - } - ], - "textBefore": "Report Number RJ3547B. ", - "textAfter": " Ltd, Jealott’s Hill", - "startOffset": 467114, - "endOffset": 467122, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3cdde997dd11e54e69a3dcc062de6e94", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 361, - 1 - ], - "closestHeadline": "Results ", - "section": "[361, 1]: Paragraph: Table 7.1.2.2.1-12 provides a", - "color": null, - "positions": [ - { - "rectangle": [ - 448.0847, - 278.92007, - 55.940247, - 11.52 - ], - "pageNumber": 215 - } - ], - "textBefore": "to have been ", - "textAfter": " pF2. These endpoints", - "startOffset": 503765, - "endOffset": 503777, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0707700a82a67543898617f1e11e534d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 5 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 5]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 309.16006, - 40.978867, - 11.52 - ], - "pageNumber": 189 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 446308, - "endOffset": 446316, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8216bb4b8accfdc04578fa70debb723c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1440 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1440]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 340 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928547, - "endOffset": 928555, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3fcd806f4165f52be4c1ecbcb4608f27", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1478 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1478]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 378 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930751, - "endOffset": 930759, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb8dd544c304ce72b7754f5f8f88e917", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1344 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1344]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 244 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922979, - "endOffset": 922987, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2cfa44c7c1fab5ead0288ec05cf70dd6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 36, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[36, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Ellgehausen, H.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97469, - 392.92, - 36.639374, - 10.98 - ], - "pageNumber": 32 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " file No. CGA173506/0153).", - "startOffset": 76695, - "endOffset": 76703, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8999ad482a246ebfaf569f01d737050b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 269, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[269, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.2. Kirkpatrick, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 143.88, - 377.32, - 36.68135, - 10.98 - ], - "pageNumber": 161 - } - ], - "textBefore": "6ES, UK. (", - "textAfter": " file No. CGA173506/0519.", - "startOffset": 385361, - "endOffset": 385369, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ab1d275fabed2a29049f0f5a9f24e427", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 485, - 9 - ], - "closestHeadline": "Conclusions ", - "section": "[485, 9]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 647.8, - 40.978867, - 11.52 - ], - "pageNumber": 270 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 613565, - "endOffset": 613573, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6eb4548133b0255f6c4c26c6aefcbfe3", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "18 Acres and East Anglia", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 538, - 2, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-31: Soil adsorption constants for SYN545245 in three soils ", - "section": "[538, 2, 1]: Paragraph: The mass balance showed", - "color": null, - "positions": [ - { - "rectangle": [ - 130.22546, - 220.96004, - 112.46336, - 11.52 - ], - "pageNumber": 294 - } - ], - "textBefore": "for soils Gartenacker, ", - "textAfter": ", respectively, after", - "startOffset": 674908, - "endOffset": 674932, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d45f9bfbd64c504b62ee8760af4805a3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1288 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1288]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 188 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919731, - "endOffset": 919739, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4629fde13d4ee09be01aedaa568c6ce9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 20 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 20]: Table_cell: Kirkpatrick, 1996", - "color": null, - "positions": [ - { - "rectangle": [ - 75.24, - 566.56, - 41.42, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": ", 1996", - "startOffset": 701000, - "endOffset": 701011, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "55e835c6dbf533e729356f062198afbe", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 183, - 1, - 4 - ], - "closestHeadline": "Table 7.1.1.2-1: Fludioxonil applied anaerobic soil degradation laboratory studies ", - "section": "[183, 1, 4]: Table_cell: Kirkpatrick et al., 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 83.4, - 336.28, - 41.529984, - 10.5 - ], - "pageNumber": 119 - } - ], - "textBefore": "", - "textAfter": " et al., 1991", - "startOffset": 279054, - "endOffset": 279065, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "217b02296a754240ad25b8b1b3a89fa5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 1, - 0, - 13 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 1, 0, 13]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 475.68, - 334.96, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 462080, - "endOffset": 462088, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "caad2c029db2bf946f8da4fff50c8cfd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 300, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-5: CGA339833 in aerobic soil degradation laboratory study considered in this assessment ", - "section": "[300, 1, 1]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 372.12, - 335.08, - 35.48404, - 10.5 - ], - "pageNumber": 178 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 421819, - "endOffset": 421827, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0cac974ec3cd61f0050e8f7798696813", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 371, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[371, 1]: Table: #cols: 5, #rows: 14, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 329.28, - 713.68, - 33.02002, - 10.5 - ], - "pageNumber": 224 - } - ], - "textBefore": "", - "textAfter": " (1993b) – Winzerhausen", - "startOffset": 518717, - "endOffset": 518725, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2ee9f16349116572354e69570ca68f8d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 4 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 4]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 459.36, - 636.04, - 35.47702, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 700546, - "endOffset": 700554, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e3a5071d6f3ee05f1101520e1c6cdef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 561, - 1 - ], - "closestHeadline": "CA 7.2.1.2 Direct photochemical degradation ", - "section": "[561, 1]: Paragraph: Five studies performed with", - "color": null, - "positions": [ - { - "rectangle": [ - 393.0, - 235.24, - 28.162231, - 11.52 - ], - "pageNumber": 306 - } - ], - "textBefore": "quartz vessels (", - "textAfter": ", 2013).", - "startOffset": 698958, - "endOffset": 698963, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4b8809abc98a0ad7536ed94077040601", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Roßdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 448, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[448, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 185.43999, - 32.804855, - 10.98 - ], - "pageNumber": 252 - } - ], - "textBefore": "& Co.KG, D-64380, ", - "textAfter": ", Germany. (Syngenta", - "startOffset": 572282, - "endOffset": 572289, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d9958d1bc6b82b58dcacf32c0bc69dcf", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 694, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[694, 2]: Paragraph: The route and rate", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 321.16003, - 75.09984, - 11.52 - ], - "pageNumber": 371 - } - ], - "textBefore": "in two studies: ", - "textAfter": " (1992) and Adam", - "startOffset": 857409, - "endOffset": 857424, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a768ed941f39f509082a3c725df3763d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 3 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 3]: Paragraph: The HPLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 166.8, - 742.36, - 52.05191, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "HPLC data from ", - "textAfter": ", 1994a included", - "startOffset": 280103, - "endOffset": 280114, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d3f02ada376ac94f5a7491c128612131", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 370, - 2, - 0, - 27 - ], - "closestHeadline": "Results ", - "section": "[370, 2, 0, 27]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 620.44, - 30.540985, - 10.5 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 518207, - "endOffset": 518215, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9c4896a1bfff884bc2b3706a8685e977", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1446 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1446]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 346 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928895, - "endOffset": 928903, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6588df597d540bc5728f2fe7456f530d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirpatrick", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 184, - 3 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 3]: Paragraph: The HPLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 252.72, - 653.8, - 46.52289, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "TLC analyses from ", - "textAfter": ", 1994a (reported", - "startOffset": 280847, - "endOffset": 280857, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cdc56e994e9a787eafec9eca28fb4fd6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tournayre", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 8 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 8]: Table_cell: Maffezzoni and Tournayre, 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 81.72, - 636.76, - 37.524986, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "Maffezzoni and ", - "textAfter": ", 1991", - "startOffset": 457124, - "endOffset": 457133, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07eabf07b403850ba69d6d78ca05255a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 20 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 20]: Table_cell: Reichert, 1993c", - "color": null, - "positions": [ - { - "rectangle": [ - 83.28, - 556.6, - 30.576012, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1993c", - "startOffset": 457465, - "endOffset": 457473, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "596e1ae90171f8fb74fb75f5fafbdfcd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1258 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1258]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 158 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917991, - "endOffset": 917999, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ab65114a08d07b52e3b2273d21cbe147", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1468 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1468]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 368 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930171, - "endOffset": 930179, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d7cde6ca9ee06e1b22a489323cf6f0a", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 317, - 6 - ], - "closestHeadline": "Materials and Methods ", - "section": "[317, 6]: Paragraph: DT50 values have been", - "color": null, - "positions": [ - { - "rectangle": [ - 487.4181, - 653.8, - 45.254456, - 11.52 - ], - "pageNumber": 184 - }, - { - "rectangle": [ - 70.92, - 641.2, - 7.9568787, - 11.52 - ], - "pageNumber": 184 - } - ], - "textBefore": "has already been ", - "textAfter": " the standard moisture", - "startOffset": 436511, - "endOffset": 436523, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "824a8d86f0bd3b1eb857e6e05548936e", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Microsoft Corporation, Redmond, WA, USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 573, - 5 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[573, 5]: Paragraph: DT50 and DT90 values", - "color": null, - "positions": [ - { - "rectangle": [ - 141.39432, - 667.12, - 199.09332, - 11.52 - ], - "pageNumber": 312 - } - ], - "textBefore": "97 SR-2 (", - "textAfter": "). The degradation", - "startOffset": 715109, - "endOffset": 715148, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e0cae4672579f46ddac1584b6b6cc46a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1378 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1378]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 278 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924951, - "endOffset": 924959, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62ac30ab30b212837d2dc263cea9a145", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1451 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1451]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 351 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929185, - "endOffset": 929193, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6a7e4bbee69e9cb04332bd0fc6cacf8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 0, - 49 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 0, 49]: Table_cell: Minet, 1994a", - "color": null, - "positions": [ - { - "rectangle": [ - 77.88, - 102.400024, - 21.557, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1994a", - "startOffset": 405096, - "endOffset": 405101, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "37cf376f37a5c5ec76719b6b551883ed", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 251, - 1, - 15 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 15]: Paragraph: In the dark control", - "color": null, - "positions": [ - { - "rectangle": [ - 158.30272, - 253.59999, - 50.75438, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "extracts) of the ", - "textAfter": ", 1994a report,", - "startOffset": 370481, - "endOffset": 370492, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "76c8635f50f8683773d2f0d44216acd3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 1, 3]: Paragraph: (Minet, U., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 465.18332, - 488.68, - 42.521484, - 11.52 - ], - "pageNumber": 62 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 139028, - "endOffset": 139037, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50a36c3a4c7378d48a7f692083c2a6d1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 8 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 8]: Paragraph: An identical chromatographic method", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 384.76, - 53.82351, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "that M3 from ", - "textAfter": " (1992a) elutes in", - "startOffset": 18428, - "endOffset": 18439, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f46fd8db5e23865f70f481681abcf984", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Roßdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 400, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[400, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 400.36, - 32.804855, - 10.98 - ], - "pageNumber": 236 - } - ], - "textBefore": "& Co.KG, D-64380, ", - "textAfter": ", Germany. (Syngenta", - "startOffset": 540793, - "endOffset": 540800, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af772ddf8cdde225c4ad6d7a21b32a2a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 5]: Paragraph: Nonetheless, long term field", - "color": null, - "positions": [ - { - "rectangle": [ - 268.05133, - 372.04, - 22.653229, - 11.52 - ], - "pageNumber": 260 - } - ], - "textBefore": "(Mair 1996a, 1996b; ", - "textAfter": " 1997, 1998; Tribolet", - "startOffset": 587138, - "endOffset": 587142, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5a881f9b4e9fd2455c37f0c10b5b212e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1416 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1416]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 316 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927155, - "endOffset": 927163, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b4f78352f0bd168314bcb1a9d12247cd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 1 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 1]: Paragraph: Additionally a summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 290.3658, - 372.64, - 25.704346, - 11.52 - ], - "pageNumber": 325 - } - ], - "textBefore": "paper (Thomas and ", - "textAfter": ", 2011) that", - "startOffset": 751357, - "endOffset": 751361, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "20de88912c79d92c7d4f31ac0df01650", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1365 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1365]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 265 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924197, - "endOffset": 924205, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f5ed73a3c0a39c27df99a897f23702ad", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 70, - 2, - 1 - ], - "closestHeadline": "Table 7.1.1.1-43: DegT50 and DegT90 values for CGA173506 ", - "section": "[70, 2, 1]: Paragraph: (Minet, U., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 465.18332, - 150.28004, - 42.521484, - 11.52 - ], - "pageNumber": 54 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 121723, - "endOffset": 121732, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6cebcc842dc1ac9cd07751fcf7a640c2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 674, - 2, - 1, - 39 - ], - "closestHeadline": "Application vehicle: Acetonitrile ", - "section": "[674, 2, 1, 39]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.4, - 522.52, - 18.029999, - 10.5 - ], - "pageNumber": 362 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 832808, - "endOffset": 832812, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fa318d6a8f91793ab7562addda6a0ca9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Published Information found in row", - "matchedRule": "CBI.7.1", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 636, - 7, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.2.2.2-25: Summary of Characterisation / Identification of Radioactive Residues: Sterilised 14 Natural Water Phenyl-U-[ C]-Fludioxonil Treated (95 µg/L); Extracted Water Layer ", - "section": "[636, 7, 0, 0, 2]: Paragraph: (Syngenta File No. CGA173506_11944)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 164.91997, - 37.05066, - 10.98 - ], - "pageNumber": 345 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA173506_11944)", - "startOffset": 793914, - "endOffset": 793922, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [ - "9ce53fa784cdebc0ce4af836a9a7003a" - ], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1998ab49e5c903474705d00e1996f04e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1354 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1354]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 254 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923559, - "endOffset": 923567, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9732c5dd96abecbb147ce79dd7ff24c0", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1880: CGA192155 applied aerobic soil degradation laboratory study ", - "section": "[152, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 468.13797, - 665.68, - 39.792053, - 10.98 - ], - "pageNumber": 106 - }, - { - "rectangle": [ - 140.64, - 654.16, - 74.39021, - 10.98 - ], - "pageNumber": 106 - } - ], - "textBefore": "Crop Protection AG, ", - "textAfter": ". (Syngenta file", - "startOffset": 245668, - "endOffset": 245695, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2e3cd5b0711a4615f00594a4a7a5d10", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon research Centre Ltd", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Kirkpatrick, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 245.70395, - 211.71996, - 130.8699, - 10.98 - ], - "pageNumber": 9 - } - ], - "textBefore": "Number CBG 485/90818. ", - "textAfter": ", Huntingdon, England.", - "startOffset": 22843, - "endOffset": 22873, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "47977672ba786f8b65a5171ee82172d6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 506, - 2, - 0, - 9 - ], - "closestHeadline": "Materials ", - "section": "[506, 2, 0, 9]: Table_cell: New York, USA", - "color": null, - "positions": [ - { - "rectangle": [ - 469.56, - 116.68, - 37.89499, - 10.518 - ], - "pageNumber": 278 - } - ], - "textBefore": "", - "textAfter": ", USA", - "startOffset": 633595, - "endOffset": 633603, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4a32ae6308a2243250a92db745244b62", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bundesanstalt für Land und Forstwirtschaft, Braunschweig, Federal Republic of", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 437, - 1 - ], - "closestHeadline": "Guidelines ", - "section": "[437, 1]: Paragraph: Richtlinie für die amtliche", - "color": null, - "positions": [ - { - "rectangle": [ - 461.28, - 199.12001, - 77.532684, - 11.52 - ], - "pageNumber": 248 - }, - { - "rectangle": [ - 70.92, - 186.52003, - 272.6349, - 11.52 - ], - "pageNumber": 248 - } - ], - "textBefore": "und Metabolismus” Biologische ", - "textAfter": " Germany, 1986.", - "startOffset": 564632, - "endOffset": 564709, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f8ff83c75105015a066067c891912676", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 5, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 5, 0, 0, 2]: Paragraph: (Syngenta File No. CGA173506/5993)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 400.72, - 37.040665, - 10.98 - ], - "pageNumber": 197 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA173506/5993)", - "startOffset": 467202, - "endOffset": 467210, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "44557c511db38a4fd15a45ca53466e96", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1249 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1249]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 149 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917469, - "endOffset": 917477, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a631bf1c22ad574c26d3f71adcf14670", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Only Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 7 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 1, 7]: Paragraph: Only Minet 1994a and", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 376.84, - 51.097565, - 11.52 - ], - "pageNumber": 62 - } - ], - "textBefore": "", - "textAfter": " 1994a and 1994b", - "startOffset": 139173, - "endOffset": 139183, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9df64b0084b754329596aa296fd83717", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0]: Table: #cols: 7, #rows: 22, Reference Soil name Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 416.68, - 21.533005, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 412002, - "endOffset": 412007, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "898c484729c6244669e1986bd5c79422", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 184, - 7 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 7]: Paragraph: As the previously submitted", - "color": null, - "positions": [ - { - "rectangle": [ - 473.04, - 289.6, - 26.956787, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "both, dry (", - "textAfter": " 2015) and moist", - "startOffset": 283207, - "endOffset": 283211, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c0e3b69dc61b4fa080d5415136f145fa", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Acres, 39 h in Gartenacker", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 135, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[135, 3]: Paragraph:  Formation of unextractable", - "color": null, - "positions": [ - { - "rectangle": [ - 106.92, - 389.92, - 118.320496, - 11.52 - ], - "pageNumber": 97 - } - ], - "textBefore": "h in 18 ", - "textAfter": " and 72 h", - "startOffset": 225460, - "endOffset": 225486, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc9811758d06e9b8443c1bcda55e8ca5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1136 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1136]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 36 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910915, - "endOffset": 910923, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7ffdcd0c8bc46b7fa9f93449e1b47939", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Kirkpatrick, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 197.2, - 36.646317, - 10.98 - ], - "pageNumber": 9 - } - ], - "textBefore": "Huntingdon, England. (", - "textAfter": " file No. CGA173506/0061).", - "startOffset": 22897, - "endOffset": 22905, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "300b3c49989a5412180f7d3de3041305", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 306, - 2 - ], - "closestHeadline": "CGA192155 ", - "section": "[306, 2]: Paragraph: According to the latest", - "color": null, - "positions": [ - { - "rectangle": [ - 495.6, - 340.12, - 36.12912, - 11.52 - ], - "pageNumber": 180 - } - ], - "textBefore": "were performed by ", - "textAfter": " (2015c, summarised below),", - "startOffset": 426863, - "endOffset": 426870, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bd86fe532b0d38a1d322f8a66239e490", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1388 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1388]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 288 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925531, - "endOffset": 925539, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e81bf911ad9e404221f0ff3b087ca6a5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 2, - 0, - 0, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 2, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506/0521).", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 150.99998, - 36.646317, - 10.98 - ], - "pageNumber": 154 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506/0521).", - "startOffset": 370976, - "endOffset": 370984, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a468cbe7623116827591d110489c507", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 424, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[424, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 311.55997, - 48.033783, - 10.98 - ], - "pageNumber": 244 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1994a). Field Soil", - "startOffset": 556298, - "endOffset": 556310, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a64d791afbb9b0320da99f4359647164", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 1, - 0 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 87.84, - 661.36, - 35.47, - 10.5 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 284813, - "endOffset": 284821, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "052d9e3c2956df9f39dbd4865125d045", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 363, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[363, 1, 1]: Table_cell: Reichert (1993a) – Euskirchen-Weideshim", - "color": null, - "positions": [ - { - "rectangle": [ - 221.4, - 724.0, - 33.034027, - 10.5 - ], - "pageNumber": 217 - } - ], - "textBefore": "", - "textAfter": " (1993a) – Euskirchen-Weideshim", - "startOffset": 505110, - "endOffset": 505118, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d77660b1e6fcccc8f2d8c2d47b6a26f7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1263 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1263]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 163 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918281, - "endOffset": 918289, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "70c3abfe5de066b6fb6746d7928d6821", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1417 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1417]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 317 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927213, - "endOffset": 927221, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3fb09562ba75944d2536290208d58592", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-GEIGY Limited, Division Plant Protection, CH-4002 Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 460, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[460, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Mair", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 168.76, - 314.87506, - 10.98 - ], - "pageNumber": 256 - } - ], - "textBefore": "Report Number 2093/93. ", - "textAfter": ". (Syngenta File", - "startOffset": 579911, - "endOffset": 579984, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cc27dc0017b09ac2aefcc97427208032", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 4 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 4]: Table_cell: Syngenta report", - "color": null, - "positions": [ - { - "rectangle": [ - 380.4, - 500.92, - 35.46292, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": " report", - "startOffset": 398104, - "endOffset": 398112, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e6d017776d90fc6791471a0fdd016f07", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1139 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1139]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 39 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911089, - "endOffset": 911097, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "30a8b49705975274d20b1b6c6aec4147", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1120 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1120]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 20 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909987, - "endOffset": 909995, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "146277368cf712cdf6ccc7f76f6a1ae6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 365, - 1, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[365, 1, 0]: Table: #cols: 5, #rows: 15, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 295.68, - 721.84, - 33.033966, - 10.5 - ], - "pageNumber": 219 - } - ], - "textBefore": "", - "textAfter": " (1994a) – Meissner-Vockerode", - "startOffset": 508551, - "endOffset": 508559, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fbe1f006561675a432396d7afd522214", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1213 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1213]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 113 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915381, - "endOffset": 915389, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "438c3d39a89beba07d35d14a37cb8346", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 5 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 5]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 462.96, - 500.92, - 35.47702, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 398120, - "endOffset": 398128, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "82f4e899ab6d8fa44acf5784b58cc95b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 1, 6]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 395.44, - 41.006897, - 11.52 - ], - "pageNumber": 62 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 139154, - "endOffset": 139162, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d27b12e0c3b9b8c72bad192830689db", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 1, - 3 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 1, 3]: Table_cell: Adam and Wijntjes, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 138.52798, - 535.36, - 30.528992, - 10.5 - ], - "pageNumber": 85 - } - ], - "textBefore": "Adam and ", - "textAfter": ", 2015", - "startOffset": 194006, - "endOffset": 194014, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8ae5ae16dce1fe8cf7cf09315f6579eb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1]: Table: #cols: 7, #rows: 21, Reference Soil name Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 83.76, - 437.32, - 21.533005, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 410357, - "endOffset": 410362, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d49a44549a40cc0f708205394c2c978a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1463 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1463]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 363 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929881, - "endOffset": 929889, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c33600d99cd0f836261cd4a3241725b0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1180 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1180]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 80 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913467, - "endOffset": 913475, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "00c2688ca94fbf6660a3cee1cea5687f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes S", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 2]: Paragraph: (Hayes S, 2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 471.29834, - 402.4, - 36.43991, - 11.52 - ], - "pageNumber": 189 - } - ], - "textBefore": "(", - "textAfter": ", 2016)", - "startOffset": 445967, - "endOffset": 445974, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dfe41cdebae297deda1c6caf8039b6fd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1480 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1480]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 380 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930867, - "endOffset": 930875, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "29b5edd8b31ef986c9ff9cd309ea6c2f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/05. Patterson, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.50801, - 339.28, - 51.780197, - 10.98 - ], - "pageNumber": 227 - } - ], - "textBefore": "K-CA 7.1.2.2.1/05. ", - "textAfter": " (2016): Fludioxonil –", - "startOffset": 524855, - "endOffset": 524868, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9193122f6cde1a7b291ae6b453cd0afd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 2, 0, 1]: Paragraph: K-CA 7.1.1.3/01. Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 380.2, - 37.040665, - 10.98 - ], - "pageNumber": 121 - } - ], - "textBefore": "4407, USA. (", - "textAfter": " File No. CGA173506_11661)", - "startOffset": 285822, - "endOffset": 285830, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d5e2714dd6a968134dec3f13940a6aca", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 320, - 2, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-16: Summary of modelling endpoints ", - "section": "[320, 2, 0]: Paragraph: Pietsch (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 474.96, - 212.32002, - 31.822601, - 11.52 - ], - "pageNumber": 184 - } - ], - "textBefore": "", - "textAfter": " (2016)", - "startOffset": 437793, - "endOffset": 437800, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6e100421ddaf63e89ceb4de65233f0c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 469.20905, - 500.44, - 50.724426, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "five studies (", - "textAfter": " 1994a, 1994b, 1994c;", - "startOffset": 438655, - "endOffset": 438666, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "72df42bad47ca1a5f4fcf71f00b10ab4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon Research Centre Ltd., Cambridgeshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.2. Kirkpatrick, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 438.50162, - 176.91997, - 87.44852, - 10.98 - ], - "pageNumber": 154 - }, - { - "rectangle": [ - 140.64, - 165.40001, - 115.59169, - 10.98 - ], - "pageNumber": 154 - } - ], - "textBefore": "Number CBG 610/942382. ", - "textAfter": ", PE18 6ES,", - "startOffset": 370912, - "endOffset": 370959, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "67972fcceb91ae5a23fcb805cf353a90", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1414 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1414]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 314 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927039, - "endOffset": 927047, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d4f6e189cd9fe549731484bf3e532933", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 10 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 10]: Table_cell: Sachers, 2015a", - "color": null, - "positions": [ - { - "rectangle": [ - 384.36, - 477.64, - 28.05597, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": ", 2015a", - "startOffset": 398251, - "endOffset": 398258, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8ac7ddc215fb24f2eb62c4fd7be9c28f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1471 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1471]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 371 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930345, - "endOffset": 930353, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7c767ba132cb3ce6728ec4bf237f8407", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 74.88, - 636.04, - 35.47, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 700497, - "endOffset": 700505, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "010b74cc54cf8c04b988bd4c917bfa19", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1149 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1149]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911669, - "endOffset": 911677, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cdc28a11f2e9fcc745a3e3f77bb37bd3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1159 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1159]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 59 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912249, - "endOffset": 912257, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "82564ebc79284021da0f500086322d70", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D. Hawkins", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Kirkpatrick, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 206.04, - 234.76, - 98.33263, - 10.98 - ], - "pageNumber": 9 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": ", D.R. Shaw,", - "startOffset": 22654, - "endOffset": 22677, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06d257bc6b7ca064cce7d5ec6806749f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ellgehausen, H.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 25, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[25, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Ellgehausen, H.", - "color": null, - "positions": [ - { - "rectangle": [ - 205.96954, - 739.84, - 64.155365, - 10.98 - ], - "pageNumber": 26 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " (1992a), Degradation of", - "startOffset": 62017, - "endOffset": 62032, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6871691e3f816cda617e8187328535a2", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 296, - 5 - ], - "closestHeadline": "Executive Summary ", - "section": "[296, 5]: Paragraph: DT50 values have been", - "color": null, - "positions": [ - { - "rectangle": [ - 487.34094, - 416.68, - 45.254456, - 11.52 - ], - "pageNumber": 177 - }, - { - "rectangle": [ - 70.92, - 404.08, - 7.9568787, - 11.52 - ], - "pageNumber": 177 - } - ], - "textBefore": "has already been ", - "textAfter": " the standard moisture", - "startOffset": 419506, - "endOffset": 419518, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da02e79090a028f91ade384eb3927e12", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bundesanstalt für Land und Forstwirtschaft, Braunschweig, Federal Republic of", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 425, - 1 - ], - "closestHeadline": "Guidelines ", - "section": "[425, 1]: Paragraph: Richtlinie für die amtliche", - "color": null, - "positions": [ - { - "rectangle": [ - 461.28, - 211.71999, - 77.532684, - 11.52 - ], - "pageNumber": 244 - }, - { - "rectangle": [ - 70.92, - 199.12001, - 272.6349, - 11.52 - ], - "pageNumber": 244 - } - ], - "textBefore": "und Metabolismus” Biologische ", - "textAfter": " Germany, 1986.", - "startOffset": 556670, - "endOffset": 556747, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57a0e0c754108996ced8f164dfcc5b7e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Caviezel A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 167, - 2, - 0 - ], - "closestHeadline": "Table 7.1.1.1-89: SYN545245 applied aerobic soil degradation laboratory study ", - "section": "[167, 2, 0]: Table_cell: Report: K-CA 7.1.1.1/03. Caviezel", - "color": null, - "positions": [ - { - "rectangle": [ - 212.972, - 704.8, - 47.181107, - 10.98 - ], - "pageNumber": 113 - } - ], - "textBefore": "Report: K-CA 7.1.1.1/03. ", - "textAfter": ", (2016), SYN545245", - "startOffset": 261296, - "endOffset": 261307, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5cdac85e2d8c67353dd008c8f6946f59", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 491, - 2, - 0, - 8 - ], - "closestHeadline": "Materials ", - "section": "[491, 2, 0, 8]: Table_cell: New York, USA", - "color": null, - "positions": [ - { - "rectangle": [ - 381.24, - 452.44, - 37.89499, - 10.518 - ], - "pageNumber": 272 - } - ], - "textBefore": "", - "textAfter": ", USA", - "startOffset": 619354, - "endOffset": 619362, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e5ed36ea7ba4da10bc9bd520672f100", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1402 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1402]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926343, - "endOffset": 926351, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "89b3309d8e9f439d0c92aa1395844e44", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 596, - 4 - ], - "closestHeadline": "CA 7.2.2 Route and rate of biological degradation in aquatic systems ", - "section": "[596, 4]: Paragraph: The previously submitted water/sediment", - "color": null, - "positions": [ - { - "rectangle": [ - 286.44, - 187.96004, - 75.8241, - 11.52 - ], - "pageNumber": 323 - } - ], - "textBefore": "water/sediment study (", - "textAfter": ", 1992) provided", - "startOffset": 745044, - "endOffset": 745059, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9938b54e1f3ff055d32a3d99d9970d7d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 4 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 4]: Paragraph: The TLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 159.48, - 591.16, - 52.041885, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "TLC data from ", - "textAfter": ", 1994a (reported", - "startOffset": 281192, - "endOffset": 281203, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6e0e18c6c94ed139590a12a4d88ee1a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 325, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-1418: Photolytic degradates (Kirkpatrick, 1994b) ", - "section": "[325, 0]: Headline: Table 7.1.2.1.2-1418: Photolytic degradates", - "color": null, - "positions": [ - { - "rectangle": [ - 283.67212, - 743.2, - 52.23105, - 10.98 - ], - "pageNumber": 187 - } - ], - "textBefore": "Photolytic degradates (", - "textAfter": ", 1994b)", - "startOffset": 442910, - "endOffset": 442921, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb351bc23fc9a19985392e4870cebc55", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1348 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1348]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 248 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923211, - "endOffset": 923219, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5f04738ddd0bc5068e8be54124ef565e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1425 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1425]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 325 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927677, - "endOffset": 927685, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da5f4ea6ec1e452fa16501341108f919", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 331, - 3 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 3]: Paragraph: For broadcast applied fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 351.66333, - 473.32, - 33.042023, - 11.52 - ], - "pageNumber": 191 - } - ], - "textBefore": "ninth study (", - "textAfter": ", 1993) was", - "startOffset": 450990, - "endOffset": 450997, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8773cd5f6bc79780d190139982fafd54", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 3 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642, 3]: Paragraph: The HPLC analysis of", - "color": null, - "positions": [ - { - "rectangle": [ - 322.75198, - 716.92, - 23.230438, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "the macrophyte and ", - "textAfter": " dominated systems, where", - "startOffset": 802392, - "endOffset": 802397, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3ab836013cf35de77e106c892f7b634a", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 542, - 2 - ], - "closestHeadline": "Results and Discussion ", - "section": "[542, 2]: Paragraph: The mean mass balance", - "color": null, - "positions": [ - { - "rectangle": [ - 433.68057, - 263.92007, - 98.65268, - 11.52 - ], - "pageNumber": 297 - } - ], - "textBefore": "applied SYN545245 for ", - "textAfter": " and East Anglia", - "startOffset": 680908, - "endOffset": 680929, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2720c5643d090d9247fabe112126699", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "STILLMEADOW Inc.", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 488, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-2: KFOC and 1/n (Freundlich exponent) adsorption values of CGA265378 in different soils ", - "section": "[488, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 382.32, - 475.84, - 85.99393, - 10.98 - ], - "pageNumber": 271 - } - ], - "textBefore": "Report Number 2481-95. ", - "textAfter": ", 12852, Park", - "startOffset": 616491, - "endOffset": 616507, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4d62bf6a8f07702e6b16971820021e86", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1273 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1273]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918861, - "endOffset": 918869, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bb64d98c3c57e71609a66a2a94910376", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 485, - 11 - ], - "closestHeadline": "Conclusions ", - "section": "[485, 11]: Paragraph: Therefore Syngenta believes that", - "color": null, - "positions": [ - { - "rectangle": [ - 117.049675, - 540.64, - 40.98591, - 11.52 - ], - "pageNumber": 270 - } - ], - "textBefore": "Therefore ", - "textAfter": " believes that the", - "startOffset": 614208, - "endOffset": 614216, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ad830ceff83c6b443939f539ecc2a9fc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 3 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 3]: Paragraph: The HPLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 253.32, - 615.88, - 51.971893, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "metabolites identified within ", - "textAfter": ", 1994c.", - "startOffset": 281154, - "endOffset": 281165, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d806fb45a52b7e7cdb43b211268dbfef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 0]: Table: #cols: 7, #rows: 9, Study Reference a Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 79.2, - 202.47998, - 25.271988, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": " 1991", - "startOffset": 404805, - "endOffset": 404812, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0ebe99fbd85b92fe451e1bebe69965ec", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 3, - 0, - 48 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 3, 0, 48]: Table_cell: Emburey (2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 471.12, - 570.76, - 33.06598, - 10.5 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 463254, - "endOffset": 463261, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6551165ba2182c5e2c66bed623bf18b4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 460, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[460, 1, 1]: Paragraph: (Reichert, N. 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.9103, - 237.52003, - 53.58835, - 11.52 - ], - "pageNumber": 256 - } - ], - "textBefore": "(", - "textAfter": " 1994)", - "startOffset": 579708, - "endOffset": 579720, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d0a25491b4659e8fed23b8c7e8fa2926", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1326 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1326]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 226 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921935, - "endOffset": 921943, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "48d3f372419ce1309319746f3d6dd6ed", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 350, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[350, 1]: Table: #cols: 5, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 307.32, - 721.84, - 33.02002, - 10.5 - ], - "pageNumber": 206 - } - ], - "textBefore": "", - "textAfter": " (1993b) – Winzerhausen", - "startOffset": 485745, - "endOffset": 485753, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "71f5c9ac8f1e5f5107ac94538ecf424b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burton S, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 532, - 4 - ], - "closestHeadline": "Conclusions ", - "section": "[532, 4]: Paragraph: (Burton S, D., 1996)", - "color": null, - "positions": [ - { - "rectangle": [ - 451.98532, - 169.83998, - 55.697205, - 11.52 - ], - "pageNumber": 292 - } - ], - "textBefore": "(", - "textAfter": ", 1996)", - "startOffset": 669523, - "endOffset": 669535, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b6d46b3d9a8f25e65d987e07c448b61", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 167, - 2, - 0 - ], - "closestHeadline": "Table 7.1.1.1-89: SYN545245 applied aerobic soil degradation laboratory study ", - "section": "[167, 2, 0]: Table_cell: Report: K-CA 7.1.1.1/03. Caviezel", - "color": null, - "positions": [ - { - "rectangle": [ - 434.73767, - 681.76, - 37.21814, - 10.98 - ], - "pageNumber": 113 - } - ], - "textBefore": "4108 Witterswil. (", - "textAfter": " file No. SYN545245_10003).", - "startOffset": 261520, - "endOffset": 261528, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0eea28b2ff7c34ca50753f1984004e30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1206 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1206]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 106 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914975, - "endOffset": 914983, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "de3ff0fe709fccbb72c4e59ed8c6f3e4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1372 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1372]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 272 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924603, - "endOffset": 924611, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5035a08b0dde67349d0f79d39036e1d6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 522, - 2, - 0, - 9 - ], - "closestHeadline": "Materials ", - "section": "[522, 2, 0, 9]: Table_cell: New York, USA", - "color": null, - "positions": [ - { - "rectangle": [ - 468.36, - 494.2, - 37.89499, - 10.518 - ], - "pageNumber": 287 - } - ], - "textBefore": "", - "textAfter": ", USA", - "startOffset": 654683, - "endOffset": 654691, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d76d894acc31f7341e6f39cbef43c739", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1217 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1217]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 117 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915613, - "endOffset": 915621, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a5fa88f1725506261c2e16a181e9a8a0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1332 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1332]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 232 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922283, - "endOffset": 922291, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bd52b1e1229362d365b1c44a25a6dbf0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 6 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 6]: Table_cell: Ellgehausen, 1992a", - "color": null, - "positions": [ - { - "rectangle": [ - 110.4, - 508.24, - 44.051994, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1992a", - "startOffset": 403933, - "endOffset": 403944, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef6f726bb596feab14102cbda8b7fb33", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1125 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1125]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 25 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910277, - "endOffset": 910285, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07e39dbaaa2cb8b0ba77e104548f1743", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1481 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1481]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 381 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930925, - "endOffset": 930933, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9b1a9176d37cebe372b77337f359b230", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 2 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 2]: Paragraph: Three of the previously", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 132.52003, - 52.04193, - 11.52 - ], - "pageNumber": 119 - } - ], - "textBefore": "photolysis metabolites from ", - "textAfter": ", 1994a (14C-pyrrole-labelled", - "startOffset": 279825, - "endOffset": 279836, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f9a09abae7d62d1e3002317bbf33083a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1313 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1313]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 213 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921181, - "endOffset": 921189, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c9dfbd2e9490233d4eaa36c9f88071a8", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 478, - 2, - 2 - ], - "closestHeadline": "Table 7.1.3.1.1-3: Soil adsorption constants for CGA173506 in 5 Soils ", - "section": "[478, 2, 2]: Paragraph: * denotes position of", - "color": null, - "positions": [ - { - "rectangle": [ - 127.68972, - 466.96, - 24.074913, - 10.518 - ], - "pageNumber": 264 - } - ], - "textBefore": "2.04 MBq/mg Radiochemical ", - "textAfter": " 98 % (determined", - "startOffset": 597603, - "endOffset": 597610, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c52132ce0171bccb707d71f89f575c56", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1220 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1220]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 120 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915787, - "endOffset": 915795, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "91af3dd05ce710f8c3b946ff6b843373", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1222 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1222]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 122 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915903, - "endOffset": 915911, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "37a168309fc947f83b44b61deac8ce6b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1462 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1462]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 362 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929823, - "endOffset": 929831, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b23f6c941b5331249560709b342b4e11", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill International Research Centre, Bracknell", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 5, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 5, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/01. Emburey, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 199.25352, - 415.12, - 217.2293, - 10.98 - ], - "pageNumber": 197 - } - ], - "textBefore": "RJ3547B. Syngenta Ltd, ", - "textAfter": ", United Kingdom.", - "startOffset": 467128, - "endOffset": 467183, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9fce2a08094d09bc01dd1a207f7f2d29", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 372, - 1, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[372, 1, 0]: Table: #cols: 5, #rows: 14, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 274.08, - 721.84, - 33.041016, - 10.5 - ], - "pageNumber": 225 - } - ], - "textBefore": "", - "textAfter": " (1993c) – Achern-Gamshurst", - "startOffset": 520196, - "endOffset": 520204, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "18d40acecb2013e362054a06045569cd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tribolet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 5]: Paragraph: Nonetheless, long term field", - "color": null, - "positions": [ - { - "rectangle": [ - 349.32, - 372.04, - 36.084106, - 11.52 - ], - "pageNumber": 260 - } - ], - "textBefore": "Mair 1997, 1998; ", - "textAfter": " 2001a, 2001b). These", - "startOffset": 587155, - "endOffset": 587163, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "faebc5d9463f575628578f55a35653b7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 518, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-619: KFOC and 1/n (Freundlich exponent) adsorption values of CGA192155 in different soils ", - "section": "[518, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 195.87999, - 36.646317, - 10.98 - ], - "pageNumber": 285 - } - ], - "textBefore": "Texas, USA. (", - "textAfter": " file No. CGA192155/0003)", - "startOffset": 651049, - "endOffset": 651057, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "768c7a29c8a3b1eb0daef4570112a6f8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1152 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1152]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 52 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911843, - "endOffset": 911851, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da5fb554b6850b72c83b1e59a900fd50", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 1, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 1, 0, 1]: Table_cell: Reichert (1994b) – GochNierswalde", - "color": null, - "positions": [ - { - "rectangle": [ - 185.28, - 724.0, - 33.020035, - 10.5 - ], - "pageNumber": 227 - } - ], - "textBefore": "", - "textAfter": " (1994b) – GochNierswalde", - "startOffset": 523939, - "endOffset": 523947, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f7d8fce78f1df26f4a1807dd56d0e61c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 10 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 10]: Paragraph: In addition, Tthe results", - "color": null, - "positions": [ - { - "rectangle": [ - 258.24, - 171.04, - 42.14334, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "new study (", - "textAfter": ", 2015), conducted", - "startOffset": 19904, - "endOffset": 19913, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "907c08a9cda5192301b90af2e113b80e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 15, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-9: ", - "section": "[15, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Abildt, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 205.94356, - 198.03996, - 26.938217, - 10.98 - ], - "pageNumber": 17 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " U. (1991), Rate", - "startOffset": 42515, - "endOffset": 42522, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc6f83fb330583cd7637b33cff42df28", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 1, - 0, - 3 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 1, 0, 3]: Table_cell: Emburey (2004) – Vouvry", - "color": null, - "positions": [ - { - "rectangle": [ - 410.28, - 724.0, - 35.967957, - 10.5 - ], - "pageNumber": 227 - } - ], - "textBefore": "", - "textAfter": " (2004) – Vouvry", - "startOffset": 524012, - "endOffset": 524019, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8f7d8c55cf882e47385786d5cc265845", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 59, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[59, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 420.77286, - 454.36, - 84.90735, - 10.98 - ], - "pageNumber": 47 - }, - { - "rectangle": [ - 140.64, - 442.96, - 224.50597, - 10.98 - ], - "pageNumber": 47 - } - ], - "textBefore": "Report Number 15/93. ", - "textAfter": ".", - "startOffset": 107388, - "endOffset": 107462, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7dcf77a8d6375b40b8e0621052585fc9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 348, - 1, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[348, 1, 0]: Table: #cols: 3, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 345.96, - 721.84, - 19.520996, - 10.5 - ], - "pageNumber": 204 - } - ], - "textBefore": "", - "textAfter": " (1995) – Padua", - "startOffset": 483573, - "endOffset": 483577, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ccfbe84e479c8ca3dffc5f6b953408fb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1231 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1231]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 131 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916425, - "endOffset": 916433, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21facdad2a97c8b8ae23e98aed7151d0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1428 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1428]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 328 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927851, - "endOffset": 927859, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "25b53bcd31cc05ea2d5e9b95e3768d55", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 59, - 2, - 0, - 0, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[59, 2, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506/0418).", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 428.44, - 36.646317, - 10.98 - ], - "pageNumber": 47 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506/0418).", - "startOffset": 107465, - "endOffset": 107473, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7861b5540e494bfb059a0a55ab859295", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 460.91446, - 437.08, - 50.724426, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "major degradates from ", - "textAfter": " 1994a were identified,", - "startOffset": 439159, - "endOffset": 439170, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "17cdb32540ce732f285ab2e4d8e46f97", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Maffezzoni, M.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 378, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-17: Summary of modelling endpoints ", - "section": "[378, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Maffezzoni,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 432.4, - 59.48999, - 10.98 - ], - "pageNumber": 228 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1991). Dissipation of", - "startOffset": 526948, - "endOffset": 526962, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc7b103a14e434492b2864ab31b255ef", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 183, - 1, - 3 - ], - "closestHeadline": "Table 7.1.1.2-1: Fludioxonil applied anaerobic soil degradation laboratory studies ", - "section": "[183, 1, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 415.08, - 350.8, - 35.48404, - 10.5 - ], - "pageNumber": 119 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 279028, - "endOffset": 279036, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e2ddc37e5f236227fe5e23622a00be32", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 2]: Paragraph: (Mair, P. 1995)", - "color": null, - "positions": [ - { - "rectangle": [ - 468.754, - 508.96, - 26.319977, - 12.0 - ], - "pageNumber": 260 - } - ], - "textBefore": "(", - "textAfter": " P. 1995)", - "startOffset": 586670, - "endOffset": 586675, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "31c29d8fc17042829b9a56db541cdb60", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1355 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1355]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 255 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923617, - "endOffset": 923625, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "36531aa28303b22ec72a013569c06267", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes, C.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 2, 0, 1]: Paragraph: K-CA 7.1.1.1/02. Adam, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 257.12738, - 487.12, - 48.05478, - 10.98 - ], - "pageNumber": 85 - } - ], - "textBefore": "7.1.1.1/02. Adam, D., ", - "textAfter": " (2015): CGA265378 -", - "startOffset": 194125, - "endOffset": 194137, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4f0962c9d68cc579ac289990442bcd57", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "STILLMEADOW Inc.", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 518, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-619: KFOC and 1/n (Freundlich exponent) adsorption values of CGA192155 in different soils ", - "section": "[518, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 414.84, - 221.79997, - 85.99692, - 10.98 - ], - "pageNumber": 285 - } - ], - "textBefore": "Report Number 1402-94. ", - "textAfter": ", 12852, Park", - "startOffset": 650983, - "endOffset": 650999, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b6c4acd607da6c36a11c7066a855be5a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 2 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 2]: Paragraph: Three of the previously", - "color": null, - "positions": [ - { - "rectangle": [ - 165.12, - 145.12001, - 51.98192, - 11.52 - ], - "pageNumber": 119 - } - ], - "textBefore": "The study of ", - "textAfter": " (1994c) was performed", - "startOffset": 279741, - "endOffset": 279752, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d0eeb9bc2311048400bf6961dacd2823", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1448 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1448]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 348 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929011, - "endOffset": 929019, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8eada97b7a2c856c4c6a39cea69c9e14", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 362, - 1, - 0, - 13 - ], - "closestHeadline": "Table 7.1.2.2.1-12: Summary of modelling DegT50 matrix values for fludioxonil normalised to standard temperature ", - "section": "[362, 1, 0, 13]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 672.04, - 30.540985, - 10.5 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 504510, - "endOffset": 504518, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "619b223e74eae00e360d28f7fb716012", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 697, - 0 - ], - "closestHeadline": "Table 7.2.2.4-5: Summary of persistence endpoints, Adam (2004), light exposed ", - "section": "[697, 0]: Headline: Table 7.2.2.4-5: Summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 317.87445, - 135.40001, - 27.371307, - 10.98 - ], - "pageNumber": 372 - } - ], - "textBefore": "of persistence endpoints, ", - "textAfter": " (2004), light exposed", - "startOffset": 861824, - "endOffset": 861828, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f7de90a525d5ad007f277f52bea279eb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1410 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1410]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 310 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926807, - "endOffset": 926815, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6c57d1dff29684a829841de4155c5b24", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 590, - 2, - 2 - ], - "closestHeadline": "Table 7.2.1.2-17: DT50 and DT90 Values of CGA173506 obtained by linear regression using the SFO Model ", - "section": "[590, 2, 2]: Paragraph: The quantum yield represents", - "color": null, - "positions": [ - { - "rectangle": [ - 319.27063, - 211.59999, - 33.02899, - 11.52 - ], - "pageNumber": 322 - } - ], - "textBefore": "and 50° N ", - "textAfter": ". The DT50", - "startOffset": 742695, - "endOffset": 742703, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "439c2346dbff7bebdfa95dff0c638b49", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill International Research Centre, Bracknell", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/05. Patterson, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 467.10165, - 327.76, - 51.301544, - 10.98 - ], - "pageNumber": 227 - }, - { - "rectangle": [ - 140.64, - 316.35995, - 163.22176, - 10.98 - ], - "pageNumber": 227 - } - ], - "textBefore": "RAJ1136B. Syngenta Ltd, ", - "textAfter": ", United Kingdom.", - "startOffset": 525007, - "endOffset": 525062, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "815cfd8192799f81f5e8ac1d12207a61", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 325, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-1418: Photolytic degradates (Kirkpatrick, 1994b) ", - "section": "[325, 1]: Table: #cols: 4, #rows: 9, Study reference Kirkpatrick, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 347.4, - 721.84, - 48.829926, - 10.5 - ], - "pageNumber": 187 - } - ], - "textBefore": "", - "textAfter": " 1994b", - "startOffset": 442946, - "endOffset": 442958, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8c81f2010550e7f7de51d81e1f46dec5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tummon", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 5]: Paragraph: Nonetheless, long term field", - "color": null, - "positions": [ - { - "rectangle": [ - 84.6, - 321.52002, - 41.78015, - 11.52 - ], - "pageNumber": 260 - } - ], - "textBefore": "are presented by ", - "textAfter": " (2004a; 2004b) in", - "startOffset": 587507, - "endOffset": 587513, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ccc49a99775cbd5556aa92ff3bf9d754", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1318 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1318]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 218 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921471, - "endOffset": 921479, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "613a1e33da3f79f239a86fcde977a269", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1147 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1147]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 47 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911553, - "endOffset": 911561, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "83f986516e60966c9aa1eeccbd076c40", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 40 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 40]: Table_cell: Sachers, 2015b", - "color": null, - "positions": [ - { - "rectangle": [ - 384.12, - 298.0, - 28.001984, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": ", 2015b", - "startOffset": 398983, - "endOffset": 398990, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0d7788f2b5a70174544e23dff52c6c64", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 284, - 1, - 0, - 18 - ], - "closestHeadline": "Table 7.1.2-3: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived by kinetic modelling (from soil photolysis studies) ", - "section": "[284, 1, 0, 18]: Table_cell: Kirkpatrick, 1994c", - "color": null, - "positions": [ - { - "rectangle": [ - 75.96, - 296.92004, - 41.539993, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": ", 1994c", - "startOffset": 401853, - "endOffset": 401864, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "71e916f60effeffc7ee571cdad860ccd", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "fish", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 711, - 1, - 1, - 10 - ], - "closestHeadline": "Criteria for Classification of a Compound as a PBT ", - "section": "[711, 1, 1, 10]: Table_cell: The EU agreed endpoints", - "color": null, - "positions": [ - { - "rectangle": [ - 401.076, - 423.52, - 13.515015, - 10.5 - ], - "pageNumber": 378 - } - ], - "textBefore": "are BCF whole ", - "textAfter": " = 366 BCF", - "startOffset": 874800, - "endOffset": 874804, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9a31ccb1790c3d5fbae77c64a2a54d1c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1162 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1162]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 62 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912423, - "endOffset": 912431, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a8fbf6e5da9c9046a2b9bb519bb61a4", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 111, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[111, 1]: Paragraph: The key findings after", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 692.44, - 98.68669, - 11.52 - ], - "pageNumber": 84 - } - ], - "textBefore": "/ha), respectively, to ", - "textAfter": " and East Anglia", - "startOffset": 190463, - "endOffset": 190484, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2e488c1a58c732ab77df5831ca8b601", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 41 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 41]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 629.32, - 30.540985, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 481074, - "endOffset": 481082, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "506d9f86b2570e70dc445379a4ce0e8e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1262 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1262]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 162 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918223, - "endOffset": 918231, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c8ae93ee72b0b2f768c6e01a4e36ca36", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 3, - 0, - 41 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 3, 0, 41]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 585.64, - 30.540985, - 10.5 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 463189, - "endOffset": 463197, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f6e9bb9e08e34fa1cbb3875a8a1ddb1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1347 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1347]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 247 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923153, - "endOffset": 923161, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba8e7aec3835faba17eae49c2f7a5629", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 366, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[366, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/04. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 702.28, - 37.040665, - 10.98 - ], - "pageNumber": 221 - } - ], - "textBefore": "United Kingdom. (", - "textAfter": " File No. CGA173506_11901)", - "startOffset": 511711, - "endOffset": 511719, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "188d8e719c48b85b07528168bc6925da", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Burton S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 502, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-48: KFOC and 1/n (Freundlich exponent) adsorption values of CGA339833 in different soils ", - "section": "[502, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 191.008, - 415.0, - 37.740906, - 10.98 - ], - "pageNumber": 277 - } - ], - "textBefore": "K-IIA 7.1.2. ", - "textAfter": " D., (1996d). Soil", - "startOffset": 628835, - "endOffset": 628844, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5eead3c4a36c782caba12231cb4d4ee5", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "certificate of analysis", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 156, - 1, - 4 - ], - "closestHeadline": "Materials ", - "section": "[156, 1, 4]: Paragraph: Purity: 99.1 % (as", - "color": null, - "positions": [ - { - "rectangle": [ - 268.56885, - 576.64, - 77.263, - 10.518 - ], - "pageNumber": 107 - } - ], - "textBefore": "(as described on ", - "textAfter": ")", - "startOffset": 247871, - "endOffset": 247894, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75634005d3c18833785921aa216d0326", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1321 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1321]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921645, - "endOffset": 921653, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "01868d34812b8ad0347ce6b24565b7ff", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1182 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1182]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 82 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913583, - "endOffset": 913591, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3c39a6e1559626e3a1975d61c6d3528f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 4 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 4]: Paragraph: Hayes, 2016 (kinetics photolysis).", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 353.08, - 27.532951, - 11.52 - ], - "pageNumber": 189 - } - ], - "textBefore": "", - "textAfter": ", 2016 (kinetics", - "startOffset": 445995, - "endOffset": 446000, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2d41e00684175e1fb8f773ec4b5556a8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1422 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1422]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 322 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927503, - "endOffset": 927511, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9e47613f400de3541816cd28d5d1682b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1380 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1380]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 280 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925067, - "endOffset": 925075, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c52e77186b6ab48fa0a68238e97b9e51", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 3 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 461.64, - 724.0, - 35.47702, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 456868, - "endOffset": 456876, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5d73cacc9984edfe3beb3cdb3088696e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 436, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[436, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97968, - 264.4, - 36.674377, - 10.98 - ], - "pageNumber": 248 - } - ], - "textBefore": "Roßdorf, Germany. (", - "textAfter": " File No. CGA173506/0428)", - "startOffset": 564419, - "endOffset": 564427, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "53c8b4823d8ab77d2fc497151e3e5159", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1121 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1121]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 21 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910045, - "endOffset": 910053, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc79a9904cf19415e82275efbdd0492b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1300 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1300]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920427, - "endOffset": 920435, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e05e4b11c3f03974a3bd0988709a3d7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1387 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1387]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 287 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925473, - "endOffset": 925481, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "01bfc5d123e9bf9556c3fd826e1dd5d5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 2 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 2]: Paragraph: Three of the previously", - "color": null, - "positions": [ - { - "rectangle": [ - 259.7413, - 157.83998, - 51.991913, - 11.52 - ], - "pageNumber": 119 - } - ], - "textBefore": "submitted studies (", - "textAfter": " 1994a, 1994b and", - "startOffset": 279663, - "endOffset": 279674, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d86655d750bec76e0561ccd79d11b00", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 28, - 2, - 0, - 36 - ], - "closestHeadline": "Materials ", - "section": "[28, 2, 0, 36]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 94.08, - 321.52002, - 18.10212, - 10.518 - ], - "pageNumber": 27 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 66003, - "endOffset": 66007, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d0c073bcba4f31d31e0076a3af071366", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1294 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1294]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920079, - "endOffset": 920087, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6d9288e4221e5a6807a41a5c8c628000", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1214 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1214]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 114 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915439, - "endOffset": 915447, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ae308b0ced299294be8159e7664f4837", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 293, - 1, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-1: CGA265378 applied aerobic soil degradation laboratory study considered in this assessment ", - "section": "[293, 1, 0, 1]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 372.12, - 501.16, - 35.48404, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 415995, - "endOffset": 416003, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b811d135d3c156cceca3628df8440ac", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1202 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1202]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 102 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914743, - "endOffset": 914751, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fee1c5bfef1ef052605e7bc41a08f57a", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Detail Tavo Di Vigodarzere, PD, Italy", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 464, - 1, - 1 - ], - "closestHeadline": "Experimental design ", - "section": "[464, 1, 1]: Table: #cols: 2, #rows: 30, Detail Tavo Di Vigodarzere,", - "color": null, - "positions": [ - { - "rectangle": [ - 77.16, - 517.96, - 22.904999, - 10.5 - ], - "pageNumber": 258 - }, - { - "rectangle": [ - 273.72, - 518.2, - 113.58096, - 10.5 - ], - "pageNumber": 258 - } - ], - "textBefore": "", - "textAfter": " Duration of study", - "startOffset": 582987, - "endOffset": 583024, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "51c9fec9528528a5434a56b72c9bdf43", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1267 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1267]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 167 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918513, - "endOffset": 918521, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ca032cec38e3f67d4ecefec76b8f5031", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1126 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1126]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 26 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910335, - "endOffset": 910343, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a7988c4d45243c730d12501b339eb779", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 1, - 0, - 2 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 1, 0, 2]: Paragraph: (Syngenta File No. CGA173506_11940)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 578.92, - 37.05066, - 10.98 - ], - "pageNumber": 326 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA173506_11940)", - "startOffset": 753052, - "endOffset": 753060, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06094cd57c8a33868ee72d8e3c7c9c8c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Shaw D.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 317.6614, - 202.59996, - 33.850464, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "R., Kirkpatrick D., ", - "textAfter": " and Chan S.", - "startOffset": 592507, - "endOffset": 592514, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fd9c30783f00b090b3bbbfbbdb290ddd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1257 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1257]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 157 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917933, - "endOffset": 917941, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3bc9e09fb6d36cd6aecab0a7f33d556c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 70 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 70]: Table_cell: Minet (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 467.08, - 21.524994, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 411928, - "endOffset": 411933, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ce20969879b1a4b26fdd391219527780", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1384 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1384]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 284 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925299, - "endOffset": 925307, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fa578b33c4f55c8cd1f297bd797dbe1", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 189, - 1, - 8 - ], - "closestHeadline": "Materials ", - "section": "[189, 1, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 476.56, - 24.465004, - 10.5 - ], - "pageNumber": 123 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 291514, - "endOffset": 291521, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "45ffad2b86d0f3900b6dcb9507108efe", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Les Barges", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 96, - 1, - 0, - 5 - ], - "closestHeadline": "Soil information: ", - "section": "[96, 1, 0, 5]: Table_cell: Les Barges, Vouvry Switzerland", - "color": null, - "positions": [ - { - "rectangle": [ - 219.36, - 436.12, - 40.185013, - 10.5 - ], - "pageNumber": 69 - } - ], - "textBefore": "", - "textAfter": ", Vouvry Switzerland", - "startOffset": 155837, - "endOffset": 155847, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "27b58651c12bf78b91745e28313baf21", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1140 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1140]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 40 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911147, - "endOffset": 911155, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6edd2d096d7f77a3b6d065837cc0bf95", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 79.32, - 724.0, - 35.47, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 456827, - "endOffset": 456835, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cd81764f7d90f943129c8fcef1f205ad", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1203 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1203]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 103 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914801, - "endOffset": 914809, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dbf9257f8815b5ae0c515d1733f756b5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 34 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 34]: Table_cell: Reichert (1993b)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.4, - 644.08, - 30.527039, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1993b)", - "startOffset": 460693, - "endOffset": 460701, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3f0d635e35a34858c6b9f915a478a977", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 312, - 2, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-12: Summary of modelling endpoints for CGA192155 ", - "section": "[312, 2, 0]: Paragraph: (Sachers, 2015c)", - "color": null, - "positions": [ - { - "rectangle": [ - 468.55032, - 301.00003, - 34.29837, - 11.52 - ], - "pageNumber": 182 - } - ], - "textBefore": "(", - "textAfter": ", 2015c)", - "startOffset": 431953, - "endOffset": 431960, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "20ad10cf54fdd156a5df9bdd0989ffb1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 2 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 2]: Paragraph: Three of the previously", - "color": null, - "positions": [ - { - "rectangle": [ - 265.8, - 119.92, - 52.11197, - 11.52 - ], - "pageNumber": 119 - } - ], - "textBefore": "photolysis metabolites from ", - "textAfter": ", 1994a were", - "startOffset": 279972, - "endOffset": 279983, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f5ed79589f4b9940166a6d06e7ae91f0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1475 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1475]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 375 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930577, - "endOffset": 930585, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5d14e1fdaf151a20fa51d47fd72c02b7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1285 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1285]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 185 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919557, - "endOffset": 919565, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c4eb3ff995225cc5a662838f97a85394", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1128 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1128]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 28 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910451, - "endOffset": 910459, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "077818b861a3d10ecc23100045a035a2", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 253, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[253, 1]: Paragraph: The photolysis of 14C", - "color": null, - "positions": [ - { - "rectangle": [ - 158.09567, - 628.96, - 33.035965, - 11.52 - ], - "pageNumber": 155 - } - ], - "textBefore": "summer sunlight at ", - "textAfter": " 30 N. Treated", - "startOffset": 371785, - "endOffset": 371793, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4d73be62fe90d26a577c1710c24a9df8", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bundesanstalt für Land und Forstwirtschaft, Braunschweig, Federal Republic of", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 401, - 1 - ], - "closestHeadline": "Guidelines ", - "section": "[401, 1]: Paragraph: Richtlinie für die amtliche", - "color": null, - "positions": [ - { - "rectangle": [ - 461.28, - 338.2, - 77.532684, - 11.52 - ], - "pageNumber": 236 - }, - { - "rectangle": [ - 70.92, - 325.47998, - 272.6349, - 11.52 - ], - "pageNumber": 236 - } - ], - "textBefore": "und Metabolismus” Biologische ", - "textAfter": " Germany, 1986.", - "startOffset": 541025, - "endOffset": 541102, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f4032a1d1a840556c5e4918cd053d13", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1433 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1433]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 333 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928141, - "endOffset": 928149, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "82000a33b95718aede3639234d2100ae", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[289, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 413.57843, - 481.12, - 40.98993, - 11.52 - ], - "pageNumber": 172 - } - ], - "textBefore": "Reischmann (1994) and ", - "textAfter": " (2015). The original", - "startOffset": 407540, - "endOffset": 407549, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fb362688be6f932204c297d00104b51d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1143 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1143]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 43 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911321, - "endOffset": 911329, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "760174f7e98970dff264055fe50f444c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 388, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[388, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 634.12, - 48.033783, - 10.98 - ], - "pageNumber": 232 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1993a). Field Soil", - "startOffset": 532870, - "endOffset": 532882, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bce490e2a1c997a17aa6ccd352556f9f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 2, - 0, - 24 - ], - "closestHeadline": "Materials ", - "section": "[51, 2, 0, 24]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.64, - 342.28, - 18.10212, - 10.518 - ], - "pageNumber": 41 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 94143, - "endOffset": 94147, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "76a669d5049a7806fd837e43c3735bdc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 56 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 56]: Table_cell: Minet (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 517.48, - 21.533005, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 411790, - "endOffset": 411795, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef1533af471931507de7e9dcdeb38737", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1392 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1392]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 292 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925763, - "endOffset": 925771, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d233a3ea10ecee6a7bd3f56d95424b8e", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 310, - 6 - ], - "closestHeadline": "Executive Summary ", - "section": "[310, 6]: Paragraph: DT50 values have been", - "color": null, - "positions": [ - { - "rectangle": [ - 129.59222, - 679.72, - 55.95125, - 11.52 - ], - "pageNumber": 182 - } - ], - "textBefore": "has already been ", - "textAfter": " the standard temperature", - "startOffset": 430864, - "endOffset": 430876, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d8aa1a69c66f3be1fc0552227a2e59ed", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 370, - 2, - 0, - 20 - ], - "closestHeadline": "Results ", - "section": "[370, 2, 0, 20]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 645.64, - 30.540985, - 10.5 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 518145, - "endOffset": 518153, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e6b443e7d1fbc33e6717c7321b17157", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1236 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1236]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 136 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916715, - "endOffset": 916723, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5023686542031a34812b8d865abde2ef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 81 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 81]: Table_cell: Emburey (2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 342.6, - 154.23999, - 33.06598, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 476836, - "endOffset": 476843, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1268bc2dad55bd25112dcdb2efae7ef1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon Research Centre", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 259, - 6 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[259, 6]: Paragraph: The DegT50 values for", - "color": null, - "positions": [ - { - "rectangle": [ - 341.9359, - 605.2, - 127.813416, - 11.52 - ], - "pageNumber": 158 - } - ], - "textBefore": "KIN v5.1 (", - "textAfter": "), was used", - "startOffset": 377984, - "endOffset": 378010, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c98bfb7fa2e4208d4ea1ce68862d0a2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1297 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1297]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 197 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920253, - "endOffset": 920261, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fbece6a32d4af2f5d686c565f4f45395", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1190 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1190]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 90 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914047, - "endOffset": 914055, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "897566273bcb32fbf30dea5b49240bb5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1270 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1270]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918687, - "endOffset": 918695, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bf9beb3b43440f53b071cbbc80715ff7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Caviezel, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 535, - 2, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-30: KFOC and 1/n (Freundlich exponent) adsorption values of SYN545245 in different soils ", - "section": "[535, 2, 0]: Table_cell: Report: K-CA 7.1.3.1.2/01. Caviezel,", - "color": null, - "positions": [ - { - "rectangle": [ - 220.44, - 390.52, - 49.753174, - 10.98 - ], - "pageNumber": 293 - } - ], - "textBefore": "Report: K-CA 7.1.3.1.2/01. ", - "textAfter": " (2016), SYN545245 -", - "startOffset": 671079, - "endOffset": 671091, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "93df1c840f89434ccd7ed48defa7f8da", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 1, - 9 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 9]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 617.2, - 40.978867, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 368833, - "endOffset": 368841, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c11ed09067d0f097c3294aba5ea5091f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ricerca Biosciences", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 2, 0, 1]: Paragraph: K-CA 7.1.1.3/01. Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 476.934, - 417.64, - 30.525848, - 10.98 - ], - "pageNumber": 121 - }, - { - "rectangle": [ - 140.64, - 406.12, - 47.748886, - 10.98 - ], - "pageNumber": 121 - } - ], - "textBefore": "Report Number 023917-1. ", - "textAfter": ", LLC, Environmental", - "startOffset": 285719, - "endOffset": 285738, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9dcea5d313e3312e16fe27d9571b3a77", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1445 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1445]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 345 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928837, - "endOffset": 928845, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dd713ea1f830552a2dc942b368db28fe", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1115 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1115]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 15 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909697, - "endOffset": 909705, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "13303783bbcc4e58e66c3c9ffbdf0553", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Maffezzoni, M.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 388, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[388, 1, 1]: Paragraph: (Maffezzoni, M. 1991)", - "color": null, - "positions": [ - { - "rectangle": [ - 441.66232, - 679.96, - 68.79596, - 11.52 - ], - "pageNumber": 232 - } - ], - "textBefore": "(", - "textAfter": " 1991)", - "startOffset": 532825, - "endOffset": 532839, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7086f916a58f814617273fc937258849", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1293 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1293]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920021, - "endOffset": 920029, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "804eb9bd005077f9b72753208ce31e13", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2 - ], - "closestHeadline": "Materials ", - "section": "[51, 1, 2]: Paragraph: Lot/Batch #: LE-84.2A Specific", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 566.68, - 24.562866, - 10.518 - ], - "pageNumber": 41 - } - ], - "textBefore": "activity: 2.02 MBq/mg ", - "textAfter": " 99.5 % Stability", - "startOffset": 93257, - "endOffset": 93264, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75e2383951a9562811e64f53e0e49640", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1170 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1170]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 70 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912887, - "endOffset": 912895, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "659ef7d6a758093b34f1fec81628f69c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 52 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 52]: Table_cell: Sachers, 2015d", - "color": null, - "positions": [ - { - "rectangle": [ - 384.12, - 224.08002, - 27.99002, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": ", 2015d", - "startOffset": 399251, - "endOffset": 399258, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75a8ce84359647f60ad90b3aee372ed9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 0 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 82.32, - 282.88, - 35.47, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 867230, - "endOffset": 867238, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57797fc70cbba0cf17ef7c1e10901fe2", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 185, - 1, - 4 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 1, 4]: Table_cell: Gentile et al., 1993", - "color": null, - "positions": [ - { - "rectangle": [ - 85.92, - 636.4, - 26.519989, - 10.5 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": " et al., 1993", - "startOffset": 284879, - "endOffset": 284886, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af3c6b1d4af688332e85268c7844fba1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 296, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[296, 2]: Paragraph: The route and rate", - "color": null, - "positions": [ - { - "rectangle": [ - 84.674995, - 667.72, - 26.936752, - 11.52 - ], - "pageNumber": 177 - } - ], - "textBefore": "study conducted by ", - "textAfter": " (2015). The original", - "startOffset": 417842, - "endOffset": 417846, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b008df6cc6ae7ee940bfb41e8b7d61ef", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1329 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1329]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 229 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922109, - "endOffset": 922117, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0d81e314019440d6470bed6280204f5a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 291, - 2, - 11 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 2, 11]: Paragraph: The study is clear", - "color": null, - "positions": [ - { - "rectangle": [ - 208.44693, - 448.72, - 50.754364, - 11.52 - ], - "pageNumber": 175 - } - ], - "textBefore": "addition, data from ", - "textAfter": " (1991) were not", - "startOffset": 413927, - "endOffset": 413938, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0e5ebbc60f1a25d3b466a8bd6fc44116", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 32 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 32]: Table_cell: Reichert, 1994c", - "color": null, - "positions": [ - { - "rectangle": [ - 83.28, - 466.0, - 30.576012, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1994c", - "startOffset": 457807, - "endOffset": 457815, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6697f56d7784734d81fe6b1f7e5f701", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schaefer", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 0 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 0]: Paragraph: According to the EU", - "color": null, - "positions": [ - { - "rectangle": [ - 230.22127, - 397.24, - 40.36064, - 11.52 - ], - "pageNumber": 325 - } - ], - "textBefore": "conducted (Matthews and ", - "textAfter": ", 2016) and", - "startOffset": 751267, - "endOffset": 751275, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3275ef2f2e65fab662d7e32c28128c75", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1201 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1201]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 101 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914685, - "endOffset": 914693, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2bb78ac008b1e91f66b96e79c1ea0b0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 694, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[694, 2]: Paragraph: The route and rate", - "color": null, - "positions": [ - { - "rectangle": [ - 199.5182, - 321.16003, - 26.945755, - 11.52 - ], - "pageNumber": 371 - } - ], - "textBefore": "Gonzalez-Valero (1992) and ", - "textAfter": " (2004). Each study", - "startOffset": 857436, - "endOffset": 857440, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ce8971f0936d9dae982000c2b38ac7a7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 63 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 63]: Table_cell: Minet (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 492.28, - 21.524994, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 411857, - "endOffset": 411862, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2c02b43c49f7c560ee224ad460bec1ff", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 490, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[490, 1]: Paragraph: An attempt was made", - "color": null, - "positions": [ - { - "rectangle": [ - 434.86423, - 310.6, - 46.171753, - 11.52 - ], - "pageNumber": 271 - } - ], - "textBefore": "Hanford (sandy loam), ", - "textAfter": " Collamer (loam) and", - "startOffset": 616889, - "endOffset": 616897, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8397411a0d4c49340d6af4eac3c7681d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 308, - 3, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.1.2-10: Summary of modelling degradation rates of CGA192155 in aerobic soils ", - "section": "[308, 3, 0, 0, 2]: Paragraph: (Syngenta File No. CGA192155_11298)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 514.72, - 37.040665, - 10.98 - ], - "pageNumber": 181 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA192155_11298)", - "startOffset": 428394, - "endOffset": 428402, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "92460915ee61d9984d29d48a969699f8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1]: Table: #cols: 7, #rows: 21, Reference Soil name Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 84.96, - 664.12, - 23.033997, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1991)", - "startOffset": 409743, - "endOffset": 409749, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1bf7b7bcf2337885e07b95fedc25ac00", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tavo Di Vigodarzere, PD, Italy", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 463, - 1, - 17 - ], - "closestHeadline": "Materials ", - "section": "[463, 1, 17]: Table_cell: Tavo Di Vigodarzere, PD,", - "color": null, - "positions": [ - { - "rectangle": [ - 267.48, - 348.16, - 113.58807, - 10.5 - ], - "pageNumber": 257 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 581625, - "endOffset": 581655, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3492b5fa4c21ee83e0f2b86d83969001", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 12 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 12]: Paragraph: In reponse to the", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 679.72, - 26.318558, - 11.52 - ], - "pageNumber": 9 - } - ], - "textBefore": "study report for ", - "textAfter": " (1994c) and Piskorski", - "startOffset": 20904, - "endOffset": 20909, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e12e8f7da2ca443d3f5460b1a49e19da", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1260 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1260]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 160 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918107, - "endOffset": 918115, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3fb78fff88ecd09d4d6ca4069e7df89e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1470 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1470]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 370 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930287, - "endOffset": 930295, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7418ed0478bf36dc956003a75c5ec169", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 5 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 5]: Paragraph: In addition, a further", - "color": null, - "positions": [ - { - "rectangle": [ - 396.07495, - 414.76, - 50.734436, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "12.3% AR in ", - "textAfter": " (1994c) indicating a", - "startOffset": 282436, - "endOffset": 282447, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3b9cc73ddf3df09b6555bce4f4775c71", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1310 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1310]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 210 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921007, - "endOffset": 921015, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "008fdd8353b4ee917eb6f8dae5725c75", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tournayre", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 13 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 13]: Table_cell: Tournayre (1991)", - "color": null, - "positions": [ - { - "rectangle": [ - 472.2, - 699.04, - 37.540955, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1991)", - "startOffset": 460489, - "endOffset": 460498, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e31825fab135bea103606af29b62c6f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1364 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1364]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 264 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924139, - "endOffset": 924147, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a0d898ad4a799a023f7a2a0461fd01b7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1880: CGA192155 applied aerobic soil degradation laboratory study ", - "section": "[152, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 113.16, - 153.76001, - 35.47, - 10.5 - ], - "pageNumber": 105 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 245108, - "endOffset": 245116, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "988dff8cf765ff7734b3b6b6ab8a21e8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 517, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-518: CGA192155 adsorption/desorption study ", - "section": "[517, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 538.0, - 35.47, - 10.5 - ], - "pageNumber": 285 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 649881, - "endOffset": 649889, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b1b2d619e4ca4dcc8429b4ab8fbf792", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1472 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1472]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 372 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930403, - "endOffset": 930411, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c9eb42a9cac8589f56f068bfc98ff074", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 324, - 1, - 0, - 30 - ], - "closestHeadline": "Table 7.1.2.1.2-1317: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived from kinetic modelling ", - "section": "[324, 1, 0, 30]: Table_cell: Adam, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 212.91998, - 22.023003, - 10.5 - ], - "pageNumber": 186 - } - ], - "textBefore": "", - "textAfter": ", 2015", - "startOffset": 442479, - "endOffset": 442483, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "814b27f93a77cc82e60a22c7aff87289", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1423 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1423]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 323 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927561, - "endOffset": 927569, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ddc937b0763a4955df9ea3bb7e076b9a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1363 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1363]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 263 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924081, - "endOffset": 924089, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "15db9c9d911626257616272a1984f1a5", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sampling location Tuckahoe Lake, Caroline County Maryland, USA Tuckahoe Lake, Caroline County Maryland, USA Site description Freshwater Lake Freshwater Lake Global", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 604, - 4 - ], - "closestHeadline": "Materials ", - "section": "[604, 4]: Table: #cols: 3, #rows: 20, Water Tuckahoe Lake Tuckahoe", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 483.64, - 65.81798, - 10.5 - ], - "pageNumber": 329 - }, - { - "rectangle": [ - 187.56, - 483.64, - 179.893, - 10.5 - ], - "pageNumber": 329 - }, - { - "rectangle": [ - 187.56, - 483.64, - 179.893, - 10.5 - ], - "pageNumber": 329 - }, - { - "rectangle": [ - 70.92, - 468.52, - 56.339996, - 10.5 - ], - "pageNumber": 329 - }, - { - "rectangle": [ - 187.56, - 468.52, - 60.172012, - 10.5 - ], - "pageNumber": 329 - }, - { - "rectangle": [ - 187.56, - 468.52, - 60.172012, - 10.5 - ], - "pageNumber": 329 - }, - { - "rectangle": [ - 70.92, - 453.4, - 24.488007, - 10.5 - ], - "pageNumber": 329 - } - ], - "textBefore": "Lake Tuckahoe Lake ", - "textAfter": " co-ordinates 38.967851 N,", - "startOffset": 760398, - "endOffset": 760561, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a213bab62910256174c111217f3deeec", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1183 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1183]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 83 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913641, - "endOffset": 913649, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8311474f5f6ec4a3e6ff6de1c2bebcdc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2, - 0, - 0, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[92, 2, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506_11767).", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 403.72, - 37.07071, - 10.98 - ], - "pageNumber": 67 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506_11767).", - "startOffset": 150434, - "endOffset": 150442, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4aa57f168397a6320e615070275dfe51", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1397 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1397]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 297 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926053, - "endOffset": 926061, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ec7232d8504f79d63ffdb51cfaf33697", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1458 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1458]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 358 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929591, - "endOffset": 929599, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cec4afbd72a1814cbdd0594d3841367d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 301, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-6: Summary of modelling degradation rates of CGA339833 in aerobic soils ", - "section": "[301, 3, 0, 0, 1]: Paragraph: KCA 7.1.2.1.2/02. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 217.2, - 739.84, - 44.09337, - 10.98 - ], - "pageNumber": 179 - } - ], - "textBefore": "KCA 7.1.2.1.2/02. ", - "textAfter": " (2015b): CGA339833 –", - "startOffset": 422575, - "endOffset": 422586, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a44b8b3997ff0c2267ba266d5742a335", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 5]: Paragraph: Nonetheless, long term field", - "color": null, - "positions": [ - { - "rectangle": [ - 175.8, - 372.04, - 22.62024, - 11.52 - ], - "pageNumber": 260 - } - ], - "textBefore": "in Switzerland (", - "textAfter": " 1996a, 1996b; Mair", - "startOffset": 587119, - "endOffset": 587123, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ebefb48d5976f30cb1499556775137bb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1368 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1368]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 268 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924371, - "endOffset": 924379, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8dbb3ae9ec40d73fbdc8475c4a239914", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 696, - 0 - ], - "closestHeadline": "Table 7.2.2.4-4: Summary of modelling endpoints, Gonzalez-Valero (1992), in dark ", - "section": "[696, 0]: Headline: Table 7.2.2.4-4: Summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 312.01874, - 343.48, - 77.76401, - 10.98 - ], - "pageNumber": 372 - } - ], - "textBefore": "of modelling endpoints, ", - "textAfter": " (1992), in dark", - "startOffset": 861009, - "endOffset": 861024, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e6ba3551cbb561da8be5be4c5dff644", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 269, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[269, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.2. Kirkpatrick, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 206.01001, - 414.76, - 60.79663, - 10.98 - ], - "pageNumber": 161 - } - ], - "textBefore": "K-IIA 7.1.1.1.2. ", - "textAfter": ", (1994c), The", - "startOffset": 385138, - "endOffset": 385153, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b938f4b0383f5fefe611141542a43289", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 2, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 2, 1]: Paragraph: (Sachers, 2015)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.4703, - 138.04, - 34.29837, - 11.52 - ], - "pageNumber": 174 - } - ], - "textBefore": "(", - "textAfter": ", 2015)", - "startOffset": 412929, - "endOffset": 412936, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cbe5a0fbad4fcab83712fc60ac44f90b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 667, - 1, - 0, - 3 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 1, 0, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 431.52, - 375.04, - 35.48404, - 10.5 - ], - "pageNumber": 359 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 825106, - "endOffset": 825114, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "860554128a6300cc43626cfc36b3733d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1101 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1101]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.080036, - 33.906013, - 10.02 - ], - "pageNumber": 1 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 908885, - "endOffset": 908893, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "93bee8aa14fafe8060f7c245e8ceda9d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 326, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-1519: Photolytic degradates (Kirkpatrick, 1994c) ", - "section": "[326, 0]: Headline: Table 7.1.2.1.2-1519: Photolytic degradates", - "color": null, - "positions": [ - { - "rectangle": [ - 283.62012, - 477.16, - 52.210938, - 10.98 - ], - "pageNumber": 187 - } - ], - "textBefore": "Photolytic degradates (", - "textAfter": ", 1994c)", - "startOffset": 443483, - "endOffset": 443494, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b6cf0ef27e308ef6b770abaf0632c12", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1379 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1379]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 279 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925009, - "endOffset": 925017, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e8113a2864618518013dc56650f4435d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1134 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1134]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 34 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910799, - "endOffset": 910807, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "68657ad70b41ecc3d69de44a8b442989", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 24 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 24]: Table_cell: Minet, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 98.52, - 427.24, - 21.512993, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": ", 1994b", - "startOffset": 21993, - "endOffset": 21998, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d33d787181afb29200c9563360f2fc3a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Novartis Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 137, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1771: CGA339833 applied aerobic soil degradation laboratory study ", - "section": "[137, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 345.1061, - 377.68, - 118.003845, - 10.98 - ], - "pageNumber": 98 - } - ], - "textBefore": "Report Number 98UL01. ", - "textAfter": ", CH-4002, Basle,", - "startOffset": 227941, - "endOffset": 227968, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b83df9b0de12b519f7d8ab01ce41610", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Novartis Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1880: CGA192155 applied aerobic soil degradation laboratory study ", - "section": "[152, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 345.1061, - 665.68, - 118.003845, - 10.98 - ], - "pageNumber": 106 - } - ], - "textBefore": "Report Number 97UL04. ", - "textAfter": ", CH-4002, Basle,", - "startOffset": 245639, - "endOffset": 245666, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b974be5832865d41f35a46751bd36e1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 330, - 16 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 16]: Paragraph: For Kirkpatrick 1994b, residuals", - "color": null, - "positions": [ - { - "rectangle": [ - 89.082565, - 455.92, - 50.76442, - 11.52 - ], - "pageNumber": 190 - } - ], - "textBefore": "For ", - "textAfter": " 1994b, residuals are", - "startOffset": 448464, - "endOffset": 448475, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2edcfba16b11cfe9f509aa9a06fa1645", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 501, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-37: CGA339833 adsorption/desorption study ", - "section": "[501, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 724.0, - 35.47, - 10.5 - ], - "pageNumber": 277 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 627768, - "endOffset": 627776, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dff755290a0779f97ce502704a44ee30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1349 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1349]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 249 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923269, - "endOffset": 923277, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9ebc888d69ddcdb3f34c5929759d7bef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 412, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[412, 1, 1]: Paragraph: (Reichert, N. 1993)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.9053, - 407.32, - 53.533325, - 11.52 - ], - "pageNumber": 240 - } - ], - "textBefore": "(", - "textAfter": " 1993)", - "startOffset": 548317, - "endOffset": 548329, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50063a8259aebd8f02b3f88e0fbe7dcc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1328 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1328]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 228 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922051, - "endOffset": 922059, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fdff89a93f2201092e8012b5f66d6408", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Burton S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 488, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-2: KFOC and 1/n (Freundlich exponent) adsorption values of CGA265378 in different soils ", - "section": "[488, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 191.008, - 487.36, - 37.740906, - 10.98 - ], - "pageNumber": 271 - } - ], - "textBefore": "K-IIA 7.1.2. ", - "textAfter": " D., (1996b). Soil", - "startOffset": 616360, - "endOffset": 616369, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "055746ad8346f992be96c21df61035c4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1415 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1415]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 315 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927097, - "endOffset": 927105, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5ad2a910dbbc53fe87ababccfda7a1a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 313, - 3 - ], - "closestHeadline": "SYN545245 ", - "section": "[313, 3]: Paragraph: Formation fractions of SYN545245", - "color": null, - "positions": [ - { - "rectangle": [ - 214.44, - 139.12001, - 28.1792, - 11.52 - ], - "pageNumber": 182 - } - ], - "textBefore": "evaluation performed by ", - "textAfter": " (2016). The evaluation", - "startOffset": 432628, - "endOffset": 432633, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "38fc276c1952df14324771a5bd47ab4f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 554, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.4.1.1-1: Fludioxonil column leaching studies ", - "section": "[554, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 89.52, - 168.40002, - 35.47, - 10.5 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 690916, - "endOffset": 690924, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c93694641242890eac3eb062303a943", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 362, - 1, - 0, - 27 - ], - "closestHeadline": "Table 7.1.2.2.1-12: Summary of modelling DegT50 matrix values for fludioxonil normalised to standard temperature ", - "section": "[362, 1, 0, 27]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 621.64, - 30.540985, - 10.5 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 504644, - "endOffset": 504652, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af15a0790b05ff243cb2cd43bcb832c2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 183, - 1, - 8 - ], - "closestHeadline": "Table 7.1.1.2-1: Fludioxonil applied anaerobic soil degradation laboratory studies ", - "section": "[183, 1, 8]: Table_cell: Minet, 1994a", - "color": null, - "positions": [ - { - "rectangle": [ - 101.28, - 309.04004, - 21.557, - 10.5 - ], - "pageNumber": 119 - } - ], - "textBefore": "", - "textAfter": ", 1994a", - "startOffset": 279153, - "endOffset": 279158, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aa55038e5cd5210867c86b8661ff0d61", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1411 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1411]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 311 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926865, - "endOffset": 926873, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5bb2f477066188db046867fdad5ee5e9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Matthews, M.E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 636, - 6, - 12 - ], - "closestHeadline": "Table 7.2.2.2-25: Summary of Characterisation / Identification of Radioactive Residues: Sterilised 14 Natural Water Phenyl-U-[ C]-Fludioxonil Treated (95 µg/L); Extracted Water Layer ", - "section": "[636, 6, 12]: Paragraph: (Matthews, M.E., Schaefer, E.C.,", - "color": null, - "positions": [ - { - "rectangle": [ - 367.6243, - 254.20003, - 70.98575, - 11.52 - ], - "pageNumber": 345 - } - ], - "textBefore": "(", - "textAfter": ", Schaefer, E.C.,", - "startOffset": 793635, - "endOffset": 793649, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5080a2c807c68702f79a667f2538c40", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 324, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.2.1.2-1317: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived from kinetic modelling ", - "section": "[324, 1, 0, 12]: Table_cell: Kirkpatrick, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 257.56, - 41.539986, - 10.5 - ], - "pageNumber": 186 - } - ], - "textBefore": "", - "textAfter": ", 1994b", - "startOffset": 442338, - "endOffset": 442349, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "abe905ee745b023414fbb3d0346b2d56", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1382 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1382]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 282 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925183, - "endOffset": 925191, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c94e850220d523fe450f328714ad4739", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1312 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1312]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 212 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921123, - "endOffset": 921131, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "55dbab914a69816800c69d9f136f0272", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 94, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[94, 2]: Paragraph: For the phenyl label,", - "color": null, - "positions": [ - { - "rectangle": [ - 370.62592, - 729.64, - 98.56137, - 11.52 - ], - "pageNumber": 68 - } - ], - "textBefore": "radioactivity (AR) for ", - "textAfter": " and East Anglia", - "startOffset": 152056, - "endOffset": 152077, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a61f3e4513d861ab9457b2a2cf86ced", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1335 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1335]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 235 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922457, - "endOffset": 922465, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c0498728ee0c2c4b5e95179d28837dea", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "van Schothorst F", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 492.57324, - 105.999985, - 14.414246, - 10.98 - ], - "pageNumber": 325 - }, - { - "rectangle": [ - 78.0, - 94.479965, - 50.812653, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "B, Schlatter J, ", - "textAfter": ", Vos J", - "startOffset": 752199, - "endOffset": 752215, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78a40d3f56527a92600e533f4f2c193e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 16 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 16]: Table_cell: Reichert, 1993b", - "color": null, - "positions": [ - { - "rectangle": [ - 83.04, - 586.72, - 30.512993, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1993b", - "startOffset": 457351, - "endOffset": 457359, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1fdafd8a45699c6c6d204b92b6cc1cbd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 305, - 2, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-8: Summary of modelling endpoints for CGA339833 ", - "section": "[305, 2, 0]: Paragraph: (Sachers, 2015b)", - "color": null, - "positions": [ - { - "rectangle": [ - 467.95032, - 450.88, - 34.29837, - 11.52 - ], - "pageNumber": 180 - } - ], - "textBefore": "(", - "textAfter": ", 2015b)", - "startOffset": 426370, - "endOffset": 426377, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b3b88b6235005907254d1a71c833a54c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 2, - 10 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 2, 10]: Paragraph: Sachers, 2015 (kinetics aerobic)", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 479.92, - 34.25039, - 11.52 - ], - "pageNumber": 175 - } - ], - "textBefore": "", - "textAfter": ", 2015 (kinetics", - "startOffset": 413762, - "endOffset": 413769, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8f6d8c736a86be3da00c090052945734", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "fish", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 712, - 1, - 1, - 10 - ], - "closestHeadline": "Criteria for Classification of a Compound as a vPvB ", - "section": "[712, 1, 1, 10]: Table_cell: The EU agreed endpoints", - "color": null, - "positions": [ - { - "rectangle": [ - 372.756, - 473.92, - 13.515015, - 10.5 - ], - "pageNumber": 379 - } - ], - "textBefore": "are BCF whole ", - "textAfter": " = 366 BCF", - "startOffset": 876664, - "endOffset": 876668, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4212e4c68f40ec8b0180d63124dcc5d2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "However, Kirkpatrick", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 1, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 10]: Paragraph: ROI 7 was identified", - "color": null, - "positions": [ - { - "rectangle": [ - 489.1249, - 585.88, - 43.123566, - 11.52 - ], - "pageNumber": 154 - }, - { - "rectangle": [ - 70.92, - 573.16, - 50.7444, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "in Kirkpatrick 1994a. ", - "textAfter": " 1994c (the study", - "startOffset": 369034, - "endOffset": 369054, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b988e63038c8e5e758c7296440afd0f2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 504, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[504, 1]: Paragraph: The The adsorption/desorption adsorption/desorption", - "color": null, - "positions": [ - { - "rectangle": [ - 479.0012, - 238.24, - 46.157745, - 11.52 - ], - "pageNumber": 277 - } - ], - "textBefore": "and and New ", - "textAfter": " York Niagara Niagara", - "startOffset": 629569, - "endOffset": 629577, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "37f50f19031a403e07337a18d48a68e2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1272 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1272]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 172 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918803, - "endOffset": 918811, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c8cfedbdfe16de23a19d5e71221b4bab", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 351, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[351, 1]: Table: #cols: 4, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 298.32, - 721.84, - 33.041016, - 10.5 - ], - "pageNumber": 207 - } - ], - "textBefore": "", - "textAfter": " (1993c) – Achern-Gamshurst", - "startOffset": 487369, - "endOffset": 487377, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21d380f5e24435e87c71ffc1ec2ede5b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1171 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1171]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 71 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912945, - "endOffset": 912953, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "467fb2e23e7aee68bb53cc53e74c9d6d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1299 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1299]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 199 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920369, - "endOffset": 920377, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d6d100798e36e335f3670ff3c152cf3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 62, - 2, - 0, - 36 - ], - "closestHeadline": "Materials ", - "section": "[62, 2, 0, 36]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 94.08, - 331.84, - 18.10212, - 10.518 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 110596, - "endOffset": 110600, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "48053c30994694564d536f6a7c4929bb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walker", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 2, - 5 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 2, 5]: Paragraph: Timestep normalisation of the", - "color": null, - "positions": [ - { - "rectangle": [ - 234.45744, - 529.24, - 32.41075, - 11.52 - ], - "pageNumber": 222 - } - ], - "textBefore": "PERSIST model (", - "textAfter": " & Barnes, 1981),", - "startOffset": 515917, - "endOffset": 515923, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fb19d562716bfd67102086b5fef2cffd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1324 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1324]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 224 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921819, - "endOffset": 921827, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c4604914df042290bdf987a3b1bff9ae", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1444 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1444]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 344 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928779, - "endOffset": 928787, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "669a709971bdc957854b79fe2d77a0a8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 3, - 0, - 34 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 3, 0, 34]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.16, - 600.4, - 30.527039, - 10.5 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 463126, - "endOffset": 463134, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fd1c8dc68240be582a56b37e5c52992f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 3 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 3]: Paragraph: metabolites fractions exceeded 5", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 742.36, - 56.854767, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "Abildt (1991) and ", - "textAfter": " (1992a) the question", - "startOffset": 16403, - "endOffset": 16414, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "423bedb52abce321a0bb27c6f362af46", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 1, - 0, - 2 - ], - "closestHeadline": "Table 7.1.1.1-1880: CGA192155 applied aerobic soil degradation laboratory study ", - "section": "[152, 1, 0, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.72, - 153.76001, - 35.48404, - 10.5 - ], - "pageNumber": 105 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 245132, - "endOffset": 245140, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e8b30968d87adf0d11e7d6f4e389a985", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1430 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1430]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 330 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927967, - "endOffset": 927975, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "610146d728a4d7a40af9f4b8e41abda0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1437 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1437]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 337 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928373, - "endOffset": 928381, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b0e34c030629ae2195e957352cd9bb8f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 137, - 1, - 0, - 2 - ], - "closestHeadline": "Table 7.1.1.1-1771: CGA339833 applied aerobic soil degradation laboratory study ", - "section": "[137, 1, 0, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.84, - 524.68, - 35.48404, - 10.5 - ], - "pageNumber": 98 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 227433, - "endOffset": 227441, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "17e31b3b1abed1f24f6b7fe68a7948f1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Calwich Abbey", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 638, - 2, - 0, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[638, 2, 0, 1]: Table_cell: Calwich Abbey", - "color": null, - "positions": [ - { - "rectangle": [ - 367.56, - 570.64, - 58.860535, - 10.518 - ], - "pageNumber": 347 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 795893, - "endOffset": 795906, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bad4771479c7e89c1296b2ec9318fa5e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1193 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1193]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 93 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914221, - "endOffset": 914229, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "128a559beba58509acfed8ca1b27d9b2", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 565, - 2, - 0 - ], - "closestHeadline": "Table 7.2.1.2-2: Photolytic Half-life (t½) and DT90 Values of CGA173506 determined by linear regression using the Single, First-order Model ", - "section": "[565, 2, 0]: Paragraph: The rate of photo-degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 443.09863, - 268.48, - 33.02899, - 11.52 - ], - "pageNumber": 308 - } - ], - "textBefore": "40 and 50°N ", - "textAfter": ". The DT50", - "startOffset": 705766, - "endOffset": 705774, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6acb34e6a4fcb587b980b3ea309b1a00", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 6 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 6]: Table_cell: Mair, 1996b §", - "color": null, - "positions": [ - { - "rectangle": [ - 80.16, - 684.16, - 17.526001, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 1996b §", - "startOffset": 588587, - "endOffset": 588591, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bdf3f0f626f0505f6543ea0aeaf44a1a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 0, - 2 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 0, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 666.88, - 35.48404, - 10.5 - ], - "pageNumber": 326 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 752716, - "endOffset": 752724, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac41fe4954df21346ac304bdea4c44e0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1880: CGA192155 applied aerobic soil degradation laboratory study ", - "section": "[152, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 223.41568, - 654.16, - 36.64633, - 10.98 - ], - "pageNumber": 106 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " file No. CGA192155/0005).", - "startOffset": 245698, - "endOffset": 245706, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dcbc9b6e9592a8fae50908fe4ef2d48e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1123 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1123]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 23 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910161, - "endOffset": 910169, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2053253b363156b98caf2fbe44ab948", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 313, - 4 - ], - "closestHeadline": "SYN545245 ", - "section": "[313, 4]: Paragraph: According to the latest", - "color": null, - "positions": [ - { - "rectangle": [ - 495.6, - 101.92, - 33.119965, - 11.52 - ], - "pageNumber": 182 - } - ], - "textBefore": "were performed by ", - "textAfter": " (2016, summarised below),", - "startOffset": 432891, - "endOffset": 432898, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ecef7acdb15d58a108e95707fd169b46", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 667, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 92.88, - 375.04, - 35.47001, - 10.5 - ], - "pageNumber": 359 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 825065, - "endOffset": 825073, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "787860c149e956773775b28cf8b3aaf3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1436 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1436]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 336 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928315, - "endOffset": 928323, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "46a4ffe32c409c191c4b9158f761bd0f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1132 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1132]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 32 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910683, - "endOffset": 910691, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fa0f9d42191a3918cc7fcdd30a2bba0b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 285, - 5 - ], - "closestHeadline": "CA 7.1.2.1 Laboratory studies ", - "section": "[285, 5]: Paragraph: The aerobic soil degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 237.84, - 655.12, - 51.901855, - 11.52 - ], - "pageNumber": 170 - } - ], - "textBefore": "degradation study of ", - "textAfter": " et al. (1991)", - "startOffset": 403299, - "endOffset": 403310, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0099f8ab6c325d203f9a5b9f82935f51", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 0, - 42 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 0, 42]: Table_cell: Ellgehausen, 1992b", - "color": null, - "positions": [ - { - "rectangle": [ - 78.72, - 127.599976, - 44.061996, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1992b", - "startOffset": 405038, - "endOffset": 405049, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a8961d92fb4f8329a5f111e0951f55a0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1238 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1238]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 138 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916831, - "endOffset": 916839, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "797d538f18e99fa27842ecd066ae7a89", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 48, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-31: DegT50 and DegT90 values for CGA173506 ", - "section": "[48, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 152.2, - 36.646317, - 10.98 - ], - "pageNumber": 39 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " file No. CGA173506/0417).", - "startOffset": 90114, - "endOffset": 90122, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a4007f25169b645bbc1e20344c27f886", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 378, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-17: Summary of modelling endpoints ", - "section": "[378, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Maffezzoni,", - "color": null, - "positions": [ - { - "rectangle": [ - 229.6527, - 420.88, - 36.62538, - 10.98 - ], - "pageNumber": 228 - } - ], - "textBefore": "Ciba-Geigy, France. (", - "textAfter": " File No. CGA173506/0133)", - "startOffset": 527039, - "endOffset": 527047, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "183868ea0d38be86df7b94bc4d57c0ff", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Acres, 39 h in Gartenacker", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 115, - 7 - ], - "closestHeadline": "Executive Summary ", - "section": "[115, 7]: Paragraph: Non-extractable radioactivity reached maximum", - "color": null, - "positions": [ - { - "rectangle": [ - 104.30112, - 492.64, - 118.20848, - 11.52 - ], - "pageNumber": 86 - } - ], - "textBefore": "h in 18 ", - "textAfter": " and 72 h", - "startOffset": 197369, - "endOffset": 197395, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "017b291ea1eef485542cc7bd765ae92e", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "JSC International Limited, Harrogate, United Kingdom", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 357, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[357, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/03. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.4, - 716.8, - 221.27087, - 10.98 - ], - "pageNumber": 214 - } - ], - "textBefore": "Report Number SYN/12/09-Kin02. ", - "textAfter": ". (Syngenta Report", - "startOffset": 497859, - "endOffset": 497911, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a9846cae4d16c1712b92256c32f86584", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1235 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1235]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 135 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916657, - "endOffset": 916665, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0df670aad9703c18c498270ca98a0242", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1356 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1356]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 256 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923675, - "endOffset": 923683, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cae79ea1f1e75236a587e46f6dbc9d49", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[289, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 481.12, - 53.82351, - 11.52 - ], - "pageNumber": 172 - } - ], - "textBefore": "studies: Abildt (1991), ", - "textAfter": " (1992 a and", - "startOffset": 407465, - "endOffset": 407476, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "63fd0f66185e1b90c8c3881d507b4c78", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 281, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 3]: Paragraph: (Kirkpatrick, D., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 440.82532, - 247.36, - 66.99118, - 11.52 - ], - "pageNumber": 166 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 393000, - "endOffset": 393015, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "08416c40f5e5e2fe30ada9e3d16eb553", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 324, - 1, - 0, - 24 - ], - "closestHeadline": "Table 7.1.2.1.2-1317: Summary of formation fractions for CGA265378, CGA339833, CGA192155 and SYN545245 derived from kinetic modelling ", - "section": "[324, 1, 0, 24]: Table_cell: Miner, 2009", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 227.79999, - 22.028008, - 10.5 - ], - "pageNumber": 186 - } - ], - "textBefore": "", - "textAfter": ", 2009", - "startOffset": 442437, - "endOffset": 442442, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2cb162114d80ecafa1a601c263a55890", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1225 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1225]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 125 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916077, - "endOffset": 916085, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5533d2a83b364cf59442e168b29d6750", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 0, - 56 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 0, 56]: Table_cell: Minet, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 77.64, - 87.52002, - 21.512993, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1994b", - "startOffset": 405148, - "endOffset": 405153, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "02302d508431b21a3594fb406481d11a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1360 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1360]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 260 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923907, - "endOffset": 923915, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a70ca1f05095ba3ba21547dca1a18c84", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tournayre", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 13 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 13]: Table_cell: Tournayre (1991)", - "color": null, - "positions": [ - { - "rectangle": [ - 468.84, - 699.04, - 37.540955, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1991)", - "startOffset": 480787, - "endOffset": 480796, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "49ecc7db665bc094a18dd33f22a45a7f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Innovative Environmental Services (IES) Ltd, Benkenstrasse 260, 4108 Witterswil", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[92, 2, 0, 0, 1]: Paragraph: K-CA 7.1.1.1/01. Piskorski, R.,", - "color": null, - "positions": [ - { - "rectangle": [ - 323.31775, - 429.76, - 184.04816, - 10.98 - ], - "pageNumber": 67 - }, - { - "rectangle": [ - 140.64, - 418.24, - 144.3803, - 10.98 - ], - "pageNumber": 67 - } - ], - "textBefore": "Report Number 20130103. ", - "textAfter": ", Switzerland.", - "startOffset": 150339, - "endOffset": 150418, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06cc0ea58f09cffeade85c057719b522", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1164 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1164]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 64 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912539, - "endOffset": 912547, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "28a94d50bbb007f1aee039ba1878328f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 3 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 3]: Paragraph: The HPLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 389.52, - 653.8, - 51.921844, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "1994a (reported in ", - "textAfter": ", 1994c) metabolite", - "startOffset": 280878, - "endOffset": 280889, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8d2d219fe62239be7a9af9b2220807b0", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-GEIGY Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 646, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.3-2: Summary of the re-evaluated degradation rates for fludioxonil in aerobic water/sediment systems under dark condition for modelling purposes ", - "section": "[646, 3, 0, 0, 1]: Paragraph: K-IIA 7.2.1.3.2. Gonzalez-Valero, J.", - "color": null, - "positions": [ - { - "rectangle": [ - 368.62592, - 284.67996, - 151.1919, - 10.98 - ], - "pageNumber": 351 - }, - { - "rectangle": [ - 140.64, - 273.16, - 163.90611, - 10.98 - ], - "pageNumber": 351 - } - ], - "textBefore": "Report Number 91GJ03. ", - "textAfter": ". (Syngenta file", - "startOffset": 806173, - "endOffset": 806247, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "97a54f55008d68e54625905ec69271f6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 98 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 98]: Table_cell: Reischmann (1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 371.44, - 44.522987, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1994)", - "startOffset": 412224, - "endOffset": 412234, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "26fffb181aa725242eb75ba8d97f0dc5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon Research Centre Ltd., Cambridgeshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 269, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[269, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.2. Kirkpatrick, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 391.72, - 205.60164, - 10.98 - ], - "pageNumber": 161 - } - ], - "textBefore": "Number CBG 569/932273. ", - "textAfter": ", PE18 6ES,", - "startOffset": 385297, - "endOffset": 385344, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "47a902a2a2d83f2c56b51ea3ccc9ea89", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 2 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 2]: Paragraph: Three of the previously", - "color": null, - "positions": [ - { - "rectangle": [ - 225.36, - 107.20003, - 51.97194, - 11.52 - ], - "pageNumber": 119 - } - ], - "textBefore": "and reported within ", - "textAfter": ", 1994c.", - "startOffset": 280064, - "endOffset": 280075, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f997cf13f5bb3cc92de7fd75664447b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 6 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 6]: Paragraph: In addition, the soil", - "color": null, - "positions": [ - { - "rectangle": [ - 383.2364, - 503.92, - 55.903168, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "by the experiment ", - "textAfter": " 20°C/60% FC (higher", - "startOffset": 17819, - "endOffset": 17831, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "97c68b4f78441b43bbbb1aa577122d80", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 1, - 0, - 20 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 1, 0, 20]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 475.68, - 320.2, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 462152, - "endOffset": 462160, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "28702f4f082e5154a8fcf5c48bc8949a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 2, - 4 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 2, 4]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 661.12, - 41.006897, - 11.52 - ], - "pageNumber": 175 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 413175, - "endOffset": 413183, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "967fe7eb4cef17dab72b7f9e6c72cc3e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 232, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[232, 1, 3]: Paragraph: (Adam, 2015)", - "color": null, - "positions": [ - { - "rectangle": [ - 480.7803, - 705.04, - 26.933777, - 11.52 - ], - "pageNumber": 146 - } - ], - "textBefore": "(", - "textAfter": ", 2015)", - "startOffset": 350284, - "endOffset": 350288, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "16b145279096eef739d74ec3ddcbb646", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 4, - 7 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 4, 7]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 183.28004, - 40.978867, - 11.52 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 465086, - "endOffset": 465094, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9ce291373a740ab43ccb003ca6625d43", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 8 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 8]: Table_cell: Abildt, 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 100.08, - 535.96, - 23.01899, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": ", 1991", - "startOffset": 21633, - "endOffset": 21639, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60420b16a8e5a0fc55e8732f3d55d81c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1176 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1176]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 76 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913235, - "endOffset": 913243, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6bcb9ebd1f60b790c72b418b15b0d591", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1467 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1467]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 367 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930113, - "endOffset": 930121, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e525bf9216057210bd3ecc902c0d7ea", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 34 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 34]: Table_cell: Patterson, 2016", - "color": null, - "positions": [ - { - "rectangle": [ - 383.52, - 340.12, - 35.810944, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": " 2016", - "startOffset": 398848, - "endOffset": 398858, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "02aca9233f9fc1792a74221fe5ab961d", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 40, - 1, - 1 - ], - "closestHeadline": "Materials ", - "section": "[40, 1, 1]: Paragraph: Description: Not reported Lot/Batch", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 570.64, - 24.562866, - 10.518 - ], - "pageNumber": 34 - } - ], - "textBefore": "MBq/mg (54.59 µCi/mg) ", - "textAfter": " > 98 %", - "startOffset": 78571, - "endOffset": 78578, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5b67f25166ffb3bd09079ebb980a099e", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 5 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 5]: Paragraph: The main finding of", - "color": null, - "positions": [ - { - "rectangle": [ - 447.348, - 742.36, - 23.278412, - 11.52 - ], - "pageNumber": 326 - } - ], - "textBefore": "of fludioxonil by ", - "textAfter": " under a light/", - "startOffset": 752546, - "endOffset": 752551, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3f59c917b78cb841d32560c2c6c81413", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner, P.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 185, - 2, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 2, 0, 1]: Paragraph: K-CA 7.1.1.3/01. Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 212.9083, - 429.16, - 37.502, - 10.98 - ], - "pageNumber": 121 - } - ], - "textBefore": "K-CA 7.1.1.3/01. ", - "textAfter": " (2009): Fludioxonil -", - "startOffset": 285575, - "endOffset": 285584, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "953d812aeac6588d5cece08c4d6cb2f2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1453 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1453]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 353 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929301, - "endOffset": 929309, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d4bf6c2c15137746a588544a102e5543", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 11 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 11]: Paragraph: Supplemental information is obtained", - "color": null, - "positions": [ - { - "rectangle": [ - 237.84, - 528.64, - 41.6203, - 11.52 - ], - "pageNumber": 192 - } - ], - "textBefore": "the study of ", - "textAfter": " (2004), were summarised", - "startOffset": 454969, - "endOffset": 454976, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4a6f8ad22e9b5f46aa9a1abaa309474e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1271 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1271]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 171 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918745, - "endOffset": 918753, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "edc61edc108fcfa9afd3ac1d841e6ab8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 578, - 5 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[578, 5]: Paragraph: Information gleaned from the", - "color": null, - "positions": [ - { - "rectangle": [ - 330.0, - 215.44002, - 50.78833, - 11.52 - ], - "pageNumber": 313 - } - ], - "textBefore": "Photolysis studies (", - "textAfter": ", 1994c; 1994d;", - "startOffset": 721408, - "endOffset": 721419, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e09b25387cf6868c32bddb9235cb44e6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1342 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1342]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 242 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922863, - "endOffset": 922871, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "048cb8f43a0e6280cd9e7bfc13656d09", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1185 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1185]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 85 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913757, - "endOffset": 913765, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4bf1a4de5ba532384a494799e9447ed4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 1, 0, 12]: Table_cell: Adam and Wijntjes, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 125.207985, - 373.48, - 30.528984, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "Adam and ", - "textAfter": ", 2015", - "startOffset": 416478, - "endOffset": 416486, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a44a9dbc71da71950a637939ff3be70f", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 569, - 1, - 8 - ], - "closestHeadline": "Materials ", - "section": "[569, 1, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 515.08, - 27.48301, - 10.5 - ], - "pageNumber": 310 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 710438, - "endOffset": 710445, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "446d182c195f45b5851e25d891444ded", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 3, 0, 0, 1]: Paragraph: K-CA 7.2.1.2/01 Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 315.04, - 37.040665, - 10.98 - ], - "pageNumber": 307 - } - ], - "textBefore": "44077 USA. (", - "textAfter": " File No. CGA173506_50057)", - "startOffset": 701886, - "endOffset": 701894, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cc3c2e0ddd91931dfce570f85b8bce73", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 48 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 48]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 609.28, - 30.540985, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 481143, - "endOffset": 481151, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "27b344fd4d31155b9b96ca2b5c402c16", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1322 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1322]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 222 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921703, - "endOffset": 921711, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6db149b582ec08b2b5793ff70e6d4f06", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1375 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1375]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 275 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924777, - "endOffset": 924785, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8b39863a47c8632383e820ca9d169bf4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 35 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 35]: Table_cell: Ellgehausen (1992a)", - "color": null, - "positions": [ - { - "rectangle": [ - 87.6, - 618.88, - 44.041985, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1992a)", - "startOffset": 409946, - "endOffset": 409957, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a27c98bb400c1ee7d39fa605def48f7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Burton S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 518, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-619: KFOC and 1/n (Freundlich exponent) adsorption values of CGA192155 in different soils ", - "section": "[518, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 191.008, - 233.31999, - 37.740906, - 10.98 - ], - "pageNumber": 285 - } - ], - "textBefore": "K-IIA 7.1.2. ", - "textAfter": " D., (1996a). Soil", - "startOffset": 650852, - "endOffset": 650861, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "501a7136334616933ab2d42b86947719", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schmidt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 30 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 30]: Table_cell: Schmidt, 2001 *", - "color": null, - "positions": [ - { - "rectangle": [ - 77.64, - 485.08, - 30.060005, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": ", 2001 *", - "startOffset": 701286, - "endOffset": 701293, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4d4b6dbf0fa70d7744b21e1695b70d18", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1104 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1104]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 4 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909059, - "endOffset": 909067, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07021ffcdea1ba96b6d0b5a84d5d4b53", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1261 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1261]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 161 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918165, - "endOffset": 918173, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8d1ed791b0d0a8bf7d13cfb2e9eb7b91", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1309 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1309]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 209 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920949, - "endOffset": 920957, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9002f6d1cd73a3ed885122009737ede8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 326, - 1, - 2 - ], - "closestHeadline": "Table 7.1.2.1.2-1519: Photolytic degradates (Kirkpatrick, 1994c) ", - "section": "[326, 1, 2]: Table_cell: Kirkpatrick, 1994c", - "color": null, - "positions": [ - { - "rectangle": [ - 347.88, - 455.8, - 48.829926, - 10.5 - ], - "pageNumber": 187 - } - ], - "textBefore": "", - "textAfter": " 1994c", - "startOffset": 443538, - "endOffset": 443550, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ed6f69edd9e13b7040981520d34f5467", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1473 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1473]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 373 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930461, - "endOffset": 930469, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95c7e92f4b9c15091b3b339926e9f576", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 301, - 3, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.1.2-6: Summary of modelling degradation rates of CGA339833 in aerobic soils ", - "section": "[301, 3, 0, 0, 2]: Paragraph: (Syngenta File No. CGA339833_10013)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 702.28, - 37.040665, - 10.98 - ], - "pageNumber": 179 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA339833_10013)", - "startOffset": 422750, - "endOffset": 422758, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06682faa1bc58835c31a0666c076089b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 307, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-9: CGA192155 in aerobic soil degradation laboratory study considered in this assessment ", - "section": "[307, 1, 1]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 372.12, - 210.40002, - 35.48404, - 10.5 - ], - "pageNumber": 180 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 427448, - "endOffset": 427456, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b6659378f3bcc71a9ceea8c9814484b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 1, - 0, - 24 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 1, 0, 24]: Table_cell: Adam and Wijntjes, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 125.207985, - 343.36, - 30.528984, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "Adam and ", - "textAfter": ", 2015", - "startOffset": 416583, - "endOffset": 416591, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4ef6a44e43e54690d965e45de928cd13", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 10 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 10]: Paragraph: Nine field dissipation trials", - "color": null, - "positions": [ - { - "rectangle": [ - 151.68, - 641.8, - 41.64035, - 11.52 - ], - "pageNumber": 192 - } - ], - "textBefore": "dissipation study (", - "textAfter": ", 2004), comparing", - "startOffset": 454216, - "endOffset": 454223, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "34305b0851b6282ae5b1d9f50dfb65e3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 33 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 33]: Table_cell: Reichert (1993b)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.04, - 322.0, - 30.527039, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1993b)", - "startOffset": 513160, - "endOffset": 513168, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d1af78db5a69703c04815e3ce7076df8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 388, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[388, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 224.13669, - 611.08, - 36.65338, - 10.98 - ], - "pageNumber": 232 - } - ], - "textBefore": "Roßdorf, Germany. (", - "textAfter": " File No. CGA173506/0430)", - "startOffset": 533029, - "endOffset": 533037, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d56eaf4a7fb979eff0c9599003be30d2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1421 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1421]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 321 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927445, - "endOffset": 927453, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef2b886132b2bdf266c9606fb68766bb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 72.6, - 724.0, - 35.47, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 588441, - "endOffset": 588449, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f527647c1defd267eb511ace2524da3e", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 103, - 2 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[103, 2]: Paragraph: CGA173506 slowly degraded in", - "color": null, - "positions": [ - { - "rectangle": [ - 455.62366, - 371.2, - 70.36145, - 11.52 - ], - "pageNumber": 74 - }, - { - "rectangle": [ - 70.92, - 358.6, - 25.681274, - 11.52 - ], - "pageNumber": 74 - } - ], - "textBefore": "% AR in ", - "textAfter": " and East Anglia", - "startOffset": 168656, - "endOffset": 168677, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aa412ecdde726a745817e0499fb5b0e6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 10 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 10]: Paragraph: The predominant effect of", - "color": null, - "positions": [ - { - "rectangle": [ - 109.56, - 729.64, - 32.988007, - 11.52 - ], - "pageNumber": 121 - } - ], - "textBefore": "field study of ", - "textAfter": " (1993). In this", - "startOffset": 284556, - "endOffset": 284563, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40cf2364e5370a40825b14697a2652ca", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 370, - 2, - 0, - 41 - ], - "closestHeadline": "Results ", - "section": "[370, 2, 0, 41]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 585.64, - 30.540985, - 10.5 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 518338, - "endOffset": 518346, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "29b2b8b87f05c831a6e7006f5b4c0767", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dr. Knoell Consult GmbH, Mannheim, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 301, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-6: Summary of modelling degradation rates of CGA339833 in aerobic soils ", - "section": "[301, 3, 0, 0, 1]: Paragraph: KCA 7.1.2.1.2/02. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 403.14, - 728.32, - 108.63559, - 10.98 - ], - "pageNumber": 179 - }, - { - "rectangle": [ - 140.64, - 716.8, - 85.421814, - 10.98 - ], - "pageNumber": 179 - } - ], - "textBefore": "Report Number 103705-3. ", - "textAfter": ".", - "startOffset": 422705, - "endOffset": 422747, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "24072f02451df8652dda7e4f5ac6d758", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1283 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1283]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 183 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919441, - "endOffset": 919449, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a07dffa8cb6e4688fbfbfe48becfa81", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 362, - 1, - 0, - 48 - ], - "closestHeadline": "Table 7.1.2.2.1-12: Summary of modelling DegT50 matrix values for fludioxonil normalised to standard temperature ", - "section": "[362, 1, 0, 48]: Table_cell: Emburey (2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 471.12, - 571.84, - 33.06598, - 10.5 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 504840, - "endOffset": 504847, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84ad5ee85c8ff36c2d8f7ddad554d4e1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1256 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1256]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 156 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917875, - "endOffset": 917883, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "528264df0a3dcdfd30703405fa8e063b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 84, - 1, - 4 - ], - "closestHeadline": "Materials ", - "section": "[84, 1, 4]: Paragraph: Purity: 99 %", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 232.83997, - 24.562866, - 10.518 - ], - "pageNumber": 63 - } - ], - "textBefore": "", - "textAfter": " 99 %", - "startOffset": 141590, - "endOffset": 141597, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "afb2446cb2f1702d3dd6603f1e331446", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1167 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1167]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 67 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912713, - "endOffset": 912721, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b175dabb53ac0b468b304fb2d56fdadb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 366, - 1, - 0, - 2 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[366, 1, 0, 2]: Table_cell: Reichert (1994c) – Obernburg", - "color": null, - "positions": [ - { - "rectangle": [ - 397.8, - 724.0, - 33.041016, - 10.5 - ], - "pageNumber": 220 - } - ], - "textBefore": "", - "textAfter": " (1994c) – Obernburg", - "startOffset": 510587, - "endOffset": 510595, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57bd91dcb766aceb5cae2f045e271444", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kroes R", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 79.92, - 105.999985, - 33.0138, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "11 ", - "textAfter": ", Renwick A", - "startOffset": 752100, - "endOffset": 752107, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5b6e08f2e346c346ca006b624b86fad0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 25, - 2, - 0, - 0, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[25, 2, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506/0141).", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97469, - 702.28, - 36.639374, - 10.98 - ], - "pageNumber": 26 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506/0141).", - "startOffset": 62214, - "endOffset": 62222, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "03e50b71c03feafad2783438f308d595", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "fish", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 710, - 1, - 1, - 10 - ], - "closestHeadline": "Criteria for Classification of a Compound as a POP ", - "section": "[710, 1, 1, 10]: Table_cell: The EU agreed endpoints", - "color": null, - "positions": [ - { - "rectangle": [ - 377.556, - 524.08, - 13.515015, - 10.5 - ], - "pageNumber": 377 - } - ], - "textBefore": "are BCF whole ", - "textAfter": " = 366 BCF", - "startOffset": 873478, - "endOffset": 873482, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "be96738fdaa024940a64016836d27804", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 4, - 14 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 4, 14]: Paragraph: - Syngenta followed the", - "color": null, - "positions": [ - { - "rectangle": [ - 106.92, - 516.64, - 40.985886, - 11.52 - ], - "pageNumber": 197 - } - ], - "textBefore": "- ", - "textAfter": " followed the guidance.", - "startOffset": 466697, - "endOffset": 466705, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84c48b6fdfebd60f2dcd4a2c9976859f", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 643, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[643, 1]: Paragraph: Degradation in water-sediment systems", - "color": null, - "positions": [ - { - "rectangle": [ - 211.38405, - 225.28004, - 23.242416, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "metabolism by the ", - "textAfter": " or macrophytes, as", - "startOffset": 803750, - "endOffset": 803755, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "345e8b94e825f6a928862d6010f86886", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 28 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 28]: Table_cell: Ford, 2016c", - "color": null, - "positions": [ - { - "rectangle": [ - 389.76, - 382.24, - 19.29898, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": " 2016c", - "startOffset": 398665, - "endOffset": 398670, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2193093dbc3e44f25e618376f10486f5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1327 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1327]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 227 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921993, - "endOffset": 922001, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0707dcd3d7822a7f56a9bec5e973278c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 73, - 2, - 0, - 24 - ], - "closestHeadline": "Materials ", - "section": "[73, 2, 0, 24]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 94.08, - 320.2, - 18.10212, - 10.518 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 124969, - "endOffset": 124973, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b08c5d43d21b7b41e58acc82f7d9a870", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 46 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 46]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 341.88, - 280.24, - 30.540985, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 476417, - "endOffset": 476425, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "15070a68a7f98da5bc067ed05647a2b1", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Nozzle TEEjet XR 8002 VS", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 441, - 1, - 1, - 27 - ], - "closestHeadline": "Experimental design ", - "section": "[441, 1, 1, 27]: Table_cell: AGR-Double tank trial spayer.", - "color": null, - "positions": [ - { - "rectangle": [ - 383.09906, - 242.79999, - 102.01105, - 10.5 - ], - "pageNumber": 250 - } - ], - "textBefore": "tank trial spayer. ", - "textAfter": ". Spray pressue", - "startOffset": 568337, - "endOffset": 568361, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d9b6fb9f013f69113919432385c2d42", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1333 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1333]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 233 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922341, - "endOffset": 922349, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d498baf625ddfc9c9db7d2a29a5c5a9d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 232, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[232, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.1.2. Kirkpatrick,", - "color": null, - "positions": [ - { - "rectangle": [ - 278.6157, - 610.96, - 36.646362, - 10.98 - ], - "pageNumber": 146 - } - ], - "textBefore": "6ES, UK. (", - "textAfter": " file No. CGA173506/0523).", - "startOffset": 350770, - "endOffset": 350778, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b6c834966bda4211ed047577e92a34a6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1, - 28 - ], - "closestHeadline": "Table 7.1.2.2.1-3: Summary of the kinetic evaluation reports for the field soil degradation of fludioxonil ", - "section": "[334, 1, 28]: Table_cell: Patterson, 2016", - "color": null, - "positions": [ - { - "rectangle": [ - 388.44, - 291.88, - 35.810944, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " 2016", - "startOffset": 460235, - "endOffset": 460245, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2acfd8a1a2a6a45983ac4648c05778b2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1241 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1241]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 141 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917005, - "endOffset": 917013, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1b7ec8a5c7115f21ced831d736fcbcae", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Nottinghamshire, UK Humberside", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 478, - 3, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-3: Soil adsorption constants for CGA173506 in 5 Soils ", - "section": "[478, 3, 0]: Table: #cols: 6, #rows: 15, Name Gleadthorpe Somersham Sandiacre", - "color": null, - "positions": [ - { - "rectangle": [ - 322.44, - 336.52, - 63.01407, - 10.518 - ], - "pageNumber": 264 - }, - { - "rectangle": [ - 347.28, - 326.2, - 13.0289, - 10.518 - ], - "pageNumber": 264 - }, - { - "rectangle": [ - 399.12, - 336.52, - 44.149933, - 10.518 - ], - "pageNumber": 264 - } - ], - "textBefore": "UK Cambridgeshire, UK ", - "textAfter": ", UK Cambridgeshire,", - "startOffset": 598179, - "endOffset": 598209, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ff2dc90f958362a0e83ebc06d210981b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1280 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1280]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 180 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919267, - "endOffset": 919275, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9bffbf3ff5163d084b3e877e575fc393", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1330 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1330]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 230 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922167, - "endOffset": 922175, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b3388b06e6ce686e526fcdc62a0bd296", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1454 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1454]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 354 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929359, - "endOffset": 929367, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3b60ac603bc3254996e76330d0652cda", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1186 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1186]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 86 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913815, - "endOffset": 913823, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7a5fde99429e1a55dfca2ee56cc167da", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Reischmann, F.J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 92, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[92, 1, 3]: Paragraph: (Reischmann, F.J., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 431.8243, - 543.76, - 75.87457, - 11.52 - ], - "pageNumber": 67 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 149957, - "endOffset": 149973, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b98d716fb99bf03bab1c248f36812df3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 1, - 7 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 7]: Paragraph: Syngenta asked the following", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 711.04, - 40.98587, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "", - "textAfter": " asked the following", - "startOffset": 368461, - "endOffset": 368469, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "79ed6194d96d6fc927a3f270b411cdff", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1223 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1223]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 123 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915961, - "endOffset": 915969, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "04131180bc826ac6ac16519dc71d4663", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1227 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1227]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 127 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916193, - "endOffset": 916201, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "745163ed09d096f51452baa240d60d51", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1266 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1266]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 166 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918455, - "endOffset": 918463, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bba582650048097b92844cf38264342c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 597, - 1 - ], - "closestHeadline": "Evaluation of the Potential Impact of Water Treatment Processes on Fludioxonil (CGA173506) and its Metabolites in Water Abstracted for Drinking ", - "section": "[597, 1]: Paragraph: Syngenta notes that no", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 441.4, - 40.98587, - 11.52 - ], - "pageNumber": 324 - } - ], - "textBefore": "", - "textAfter": " notes that no", - "startOffset": 747623, - "endOffset": 747631, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2e786b542f12b63a6ab29da993ee7bf3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 6 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 6]: Paragraph: The previously evaluated study", - "color": null, - "positions": [ - { - "rectangle": [ - 223.44, - 339.52, - 33.108032, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "evaluated study of ", - "textAfter": " (1993) is a", - "startOffset": 282846, - "endOffset": 282853, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0259f153d4babe33224562c0caeb1b74", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ministry of Agriculture", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 647, - 2 - ], - "closestHeadline": "Guidelines ", - "section": "[647, 2]: Paragraph: Dutch Registration Guideline, Section", - "color": null, - "positions": [ - { - "rectangle": [ - 356.28, - 168.76003, - 103.33557, - 11.52 - ], - "pageNumber": 351 - } - ], - "textBefore": "Behaviour in Water; ", - "textAfter": " and Fisheries, Ministry", - "startOffset": 806465, - "endOffset": 806488, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c5a861503c4cd612b049fa2642812b4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1106 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1106]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 6 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909175, - "endOffset": 909183, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4d0a6a2e9ad19d8795dd56f554ab7786", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 141, - 1, - 4 - ], - "closestHeadline": "Materials ", - "section": "[141, 1, 4]: Paragraph: Purity: 91.3 % (as", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 126.40003, - 24.562866, - 10.518 - ], - "pageNumber": 99 - } - ], - "textBefore": "", - "textAfter": " 91.3 % (as", - "startOffset": 230663, - "endOffset": 230670, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2195425cc7bccab7bc89f5478b2ee3d1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 362, - 1, - 0, - 41 - ], - "closestHeadline": "Table 7.1.2.2.1-12: Summary of modelling DegT50 matrix values for fludioxonil normalised to standard temperature ", - "section": "[362, 1, 0, 41]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 586.72, - 30.540985, - 10.5 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 504775, - "endOffset": 504783, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d33ec460de43c1f3a8d85642c2e3d4ae", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wurtzen G", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 171.05576, - 94.479965, - 44.10141, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "Vos J G, ", - "textAfter": ", 2004. Structure-based", - "startOffset": 752226, - "endOffset": 752235, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9ea4bc596e195777d620b65e0a4861ab", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1131 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1131]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 31 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910625, - "endOffset": 910633, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aaa0517e6d840d261076464d31e94ead", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1412 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1412]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 312 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926923, - "endOffset": 926931, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e0bc252f1c7499a2e241e9199484146", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "JSC International Limited, Harrogate, United Kingdom", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 341, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[341, 2, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/02. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 376.65802, - 728.32, - 151.44855, - 10.98 - ], - "pageNumber": 200 - }, - { - "rectangle": [ - 140.64, - 716.8, - 67.308014, - 10.98 - ], - "pageNumber": 200 - } - ], - "textBefore": "Report Number SYN/12/09-Kin03. ", - "textAfter": ". (Syngenta File", - "startOffset": 474801, - "endOffset": 474853, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9ce53fa784cdebc0ce4af836a9a7003a", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Environmental Toxicology and Chemistry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 636, - 7, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.2-25: Summary of Characterisation / Identification of Radioactive Residues: Sterilised 14 Natural Water Phenyl-U-[ C]-Fludioxonil Treated (95 µg/L); Extracted Water Layer ", - "section": "[636, 7, 0, 0, 1]: Paragraph: K-CA 7.2.2.2/02. Thomas K.A.", - "color": null, - "positions": [ - { - "rectangle": [ - 444.67764, - 190.83995, - 59.38217, - 10.98 - ], - "pageNumber": 345 - }, - { - "rectangle": [ - 140.64, - 179.43999, - 107.251114, - 10.98 - ], - "pageNumber": 345 - } - ], - "textBefore": "in Aquatic Ecosystems. ", - "textAfter": ". (2011), Vol", - "startOffset": 793839, - "endOffset": 793877, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62146280a80feb029d20e8fa379bedce", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann, F. J.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Reischmann, F.", - "color": null, - "positions": [ - { - "rectangle": [ - 206.008, - 255.04002, - 71.88199, - 10.98 - ], - "pageNumber": 62 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " (1994), Degradation of", - "startOffset": 139795, - "endOffset": 139812, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4ad983d730a0cd2ab1280ae025836833", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 15 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 15]: Table_cell: Minet, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 121.32, - 426.64, - 21.513008, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1994b", - "startOffset": 404170, - "endOffset": 404175, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e6cc6b926a7de72980d88180abaa9020", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and Methods ", - "section": "[322, 1]: Paragraph: The photo-degradation of fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 229.44156, - 487.72, - 26.94278, - 11.52 - ], - "pageNumber": 185 - } - ], - "textBefore": "1994c; Miner, 2009; ", - "textAfter": ", 2015). In", - "startOffset": 438701, - "endOffset": 438705, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "80e97dd59b4fc108dcc582d5aa32d4ee", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 561, - 1 - ], - "closestHeadline": "CA 7.2.1.2 Direct photochemical degradation ", - "section": "[561, 1]: Paragraph: Five studies performed with", - "color": null, - "positions": [ - { - "rectangle": [ - 159.6, - 311.08, - 51.961914, - 11.52 - ], - "pageNumber": 306 - } - ], - "textBefore": "the studies (", - "textAfter": ", 1994d, 1994e,", - "startOffset": 698293, - "endOffset": 698304, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "51e6a2eab71f6619f5d4d32c66c78fa2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1398 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1398]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 298 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926111, - "endOffset": 926119, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "33afeb6ae3e5b69dd3d3cbbfa20c8c9a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1102 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1102]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 2 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 908943, - "endOffset": 908951, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a86cfda93e3670b2bac9ea2078a808d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "North Carolina", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 190, - 1, - 1, - 19 - ], - "closestHeadline": "Experimental design ", - "section": "[190, 1, 1, 19]: Table_cell: 66.98, 68.98 and 65.32", - "color": null, - "positions": [ - { - "rectangle": [ - 461.512, - 640.12, - 54.25595, - 10.5 - ], - "pageNumber": 124 - } - ], - "textBefore": "Florida, USA (30°N), ", - "textAfter": ", USA (40°N)", - "startOffset": 292805, - "endOffset": 292819, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f17686bf5b187a5943479abffb83567", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrich", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 281, - 10 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 10]: Paragraph: Applying this rationale to", - "color": null, - "positions": [ - { - "rectangle": [ - 282.47412, - 579.88, - 50.744324, - 11.52 - ], - "pageNumber": 167 - } - ], - "textBefore": "samples reported in ", - "textAfter": " 1994a, confirms there", - "startOffset": 394356, - "endOffset": 394367, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06aa30d74ef525af67e0fcec0a93ebd7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1254 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1254]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 154 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917759, - "endOffset": 917767, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1b940d14ed004388c96818a630146fcd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1426 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1426]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 326 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927735, - "endOffset": 927743, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5a1f85da7702a19b67e692cb972b7c27", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 404, - 1, - 62 - ], - "closestHeadline": "Materials ", - "section": "[404, 1, 62]: Table_cell: Sand (2000-60 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.04, - 729.64, - 18.029999, - 10.5 - ], - "pageNumber": 238 - } - ], - "textBefore": "", - "textAfter": " (2000-60 µm)", - "startOffset": 543747, - "endOffset": 543751, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da209bf16ad2d06425d61c4b5295c9a6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 84, - 2, - 0, - 24 - ], - "closestHeadline": "Materials ", - "section": "[84, 2, 0, 24]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 93.96, - 679.96, - 18.029999, - 10.5 - ], - "pageNumber": 64 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 142182, - "endOffset": 142186, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "efbd62efcbb2b187f3cf3514763dec30", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 370, - 2, - 0, - 34 - ], - "closestHeadline": "Results ", - "section": "[370, 2, 0, 34]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.16, - 600.4, - 30.527039, - 10.5 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 518275, - "endOffset": 518283, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6356ee5c8f01cba29cede5742a9a6d20", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1108 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1108]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 8 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909291, - "endOffset": 909299, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fa5290e50731d2719a60d6176dbcebd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1400 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1400]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 300 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926227, - "endOffset": 926235, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "972979c76297fc20b215593d6aaab12e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 3 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 3]: Paragraph: metabolites fractions exceeded 5", - "color": null, - "positions": [ - { - "rectangle": [ - 320.28, - 742.36, - 27.531067, - 11.52 - ], - "pageNumber": 8 - } - ], - "textBefore": "the studies of ", - "textAfter": " (1991) and Ellgehausen", - "startOffset": 16385, - "endOffset": 16391, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "45ca47e73f3480a4651b825ff927f24d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 285, - 2 - ], - "closestHeadline": "CA 7.1.2.1 Laboratory studies ", - "section": "[285, 2]: Paragraph: In addition to the", - "color": null, - "positions": [ - { - "rectangle": [ - 146.16, - 88.000015, - 42.143356, - 11.52 - ], - "pageNumber": 169 - } - ], - "textBefore": "been conducted (", - "textAfter": ", 2015). This", - "startOffset": 402710, - "endOffset": 402719, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b6d265eead5219163c3f2ec6773ba60", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 48 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 48]: Table_cell: Reichert (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.64, - 609.28, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 460845, - "endOffset": 460853, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2cff21cd3b08621867d78eaa775c6944", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 599, - 1, - 0 - ], - "closestHeadline": "Table 7.2.2.1-1: Fludioxonil ready biodegradability study ", - "section": "[599, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 498.88, - 35.47, - 10.5 - ], - "pageNumber": 325 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 750960, - "endOffset": 750968, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "13aea9ee29095c3e7b4573b0c76db27e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1163 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1163]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 63 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912481, - "endOffset": 912489, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e34c615f37bb6b546b31a145210818c9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 352, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[352, 1]: Table: #cols: 5, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 295.68, - 721.84, - 33.033966, - 10.5 - ], - "pageNumber": 208 - } - ], - "textBefore": "", - "textAfter": " (1994a) – Meissner-Vockerode", - "startOffset": 488699, - "endOffset": 488707, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "929407aa1d49ed6603016eca39020821", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 28 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 28]: Table_cell: Reichert, 1994b", - "color": null, - "positions": [ - { - "rectangle": [ - 83.04, - 496.12, - 30.512993, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1994b", - "startOffset": 457693, - "endOffset": 457701, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "46911bc58c7f9259094fdad0440fd562", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 39 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 39]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 341.88, - 305.44, - 30.540985, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 476330, - "endOffset": 476338, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9cd136406e9af10f39dc64421af823e1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Shaw, D. Chan, S.C.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Kirkpatrick, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 330.24323, - 234.76, - 82.224915, - 10.98 - ], - "pageNumber": 9 - } - ], - "textBefore": "D. Hawkins, D.R. ", - "textAfter": " (1991), The Degradation", - "startOffset": 22684, - "endOffset": 22703, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f8ae6499b4b5efbd990bac39a75987c9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 2, - 0, - 2 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 2, 0, 2]: Paragraph: (Syngenta file No. CGA265378_10009)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 449.56, - 37.07071, - 10.98 - ], - "pageNumber": 85 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA265378_10009)", - "startOffset": 194319, - "endOffset": 194327, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cd324fe8654a589090df32ce13f364e3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 185, - 1, - 8 - ], - "closestHeadline": "Table 7.1.1.3-1: Soil photolysis studies ", - "section": "[185, 1, 8]: Table_cell: Kirkpatrick et al., 1994a", - "color": null, - "positions": [ - { - "rectangle": [ - 76.44, - 600.88, - 41.549995, - 10.5 - ], - "pageNumber": 121 - } - ], - "textBefore": "", - "textAfter": " et al., 1994a", - "startOffset": 285047, - "endOffset": 285058, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "adeaaf3c1e3c305fbd90016da4dd2da0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 356, - 1, - 2 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[356, 1, 2]: Table_cell: Emburey (2004) – Vouvry,", - "color": null, - "positions": [ - { - "rectangle": [ - 226.68, - 721.84, - 35.968018, - 10.5 - ], - "pageNumber": 212 - } - ], - "textBefore": "", - "textAfter": " (2004) – Vouvry,", - "startOffset": 494664, - "endOffset": 494671, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dc2533bb4abaf793cc0367e1489d8bd7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1361 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1361]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923965, - "endOffset": 923973, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bfee77835d3db56f0348dc6836f7f9e4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 424, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[424, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97968, - 276.99997, - 36.674377, - 10.98 - ], - "pageNumber": 244 - } - ], - "textBefore": "Roßdorf, Germany. (", - "textAfter": " File No. CGA173506/0427)", - "startOffset": 556457, - "endOffset": 556465, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "24bd46c88910df348963447299fba602", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adam, D.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 692, - 1, - 4 - ], - "closestHeadline": "Conclusions ", - "section": "[692, 1, 4]: Paragraph: (Adam, D. 2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 467.3403, - 679.72, - 43.120667, - 11.52 - ], - "pageNumber": 371 - } - ], - "textBefore": "(", - "textAfter": " 2004)", - "startOffset": 856183, - "endOffset": 856191, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06543b49a69ef668325a64fac22beff9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 376, - 2 - ], - "closestHeadline": "Materials and Methods ", - "section": "[376, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 432.34756, - 124.000015, - 34.244354, - 11.52 - ], - "pageNumber": 227 - } - ], - "textBefore": "been calculated in ", - "textAfter": " (2015a). The DegT50,", - "startOffset": 525650, - "endOffset": 525657, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a140253fec112b82ae1d52873396a8b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reischmann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[289, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 305.65018, - 481.12, - 54.45575, - 11.52 - ], - "pageNumber": 172 - } - ], - "textBefore": "b and c), ", - "textAfter": " (1994) and Piskorski", - "startOffset": 407518, - "endOffset": 407528, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e03ca9f49ca395db1c8810f36d465805", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tummon", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 24 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 24]: Table_cell: Tummon, 2004b #", - "color": null, - "positions": [ - { - "rectangle": [ - 72.36, - 595.12, - 33.078003, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 2004b #", - "startOffset": 589108, - "endOffset": 589114, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fb4b4fc3423cac025d62b568227c153d", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Speyer, 67346 Speyer, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 538, - 4, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-31: Soil adsorption constants for SYN545245 in three soils ", - "section": "[538, 4, 0]: Paragraph: a Parameters provided by", - "color": null, - "positions": [ - { - "rectangle": [ - 236.217, - 154.59998, - 117.22502, - 10.5 - ], - "pageNumber": 295 - } - ], - "textBefore": "determined by LUFA ", - "textAfter": " (GLP). c Parameters", - "startOffset": 676779, - "endOffset": 676808, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5b7deb78f56b249e8aa9794e65b46bf2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 2 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.72, - 550.0, - 35.48404, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 403832, - "endOffset": 403840, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "452beee5be9bc19bee30834a61833378", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 6, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies ", - "section": "[6, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 90.36, - 586.12, - 35.47, - 10.5 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 21468, - "endOffset": 21476, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "953d86076b902c3bb327433bb7c0350d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1413 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1413]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 313 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926981, - "endOffset": 926989, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8af3cbbf61eae5011904831b52ec0096", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 285, - 3 - ], - "closestHeadline": "CA 7.1.2.1 Laboratory studies ", - "section": "[285, 3]: Paragraph: degradation studies of the", - "color": null, - "positions": [ - { - "rectangle": [ - 376.32, - 729.64, - 36.118866, - 11.52 - ], - "pageNumber": 170 - } - ], - "textBefore": "(20065, 20142) by ", - "textAfter": " (2015), the evaluation", - "startOffset": 403066, - "endOffset": 403073, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95b455d8b2206ebf923fff5afb26fb09", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 370, - 2, - 0, - 13 - ], - "closestHeadline": "Results ", - "section": "[370, 2, 0, 13]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 670.84, - 30.492035, - 10.5 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 518073, - "endOffset": 518081, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b3de4bdb4b7d8401bf114cefaed7d865", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 366, - 1, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[366, 1, 0, 1]: Table_cell: Reichert (1994b) – Goch-Nierswalde", - "color": null, - "positions": [ - { - "rectangle": [ - 225.48, - 713.68, - 33.020035, - 10.5 - ], - "pageNumber": 220 - } - ], - "textBefore": "", - "textAfter": " (1994b) – Goch-Nierswalde", - "startOffset": 510547, - "endOffset": 510555, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a8d25bc797aa7cb1d0be15bb6de77411", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 551, - 1, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-736: CGA308568 adsorption/desorption studies ", - "section": "[551, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 500.68, - 35.48404, - 10.5 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 689828, - "endOffset": 689836, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "668fc70f8d8e44d264cc58a20b3f52ac", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 26 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 26]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 347.2, - 30.540985, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 513078, - "endOffset": 513086, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e7e6b097b08cc667a26257d74cd5e476", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 474, - 1, - 3 - ], - "closestHeadline": "Table 7.1.3.1.1-1: Fludioxonil adsorption/desorption study ", - "section": "[474, 1, 3]: Table_cell: Hawkins et al., 1991", - "color": null, - "positions": [ - { - "rectangle": [ - 108.12, - 483.76, - 32.025017, - 10.5 - ], - "pageNumber": 262 - } - ], - "textBefore": "", - "textAfter": " et al., 1991", - "startOffset": 591474, - "endOffset": 591481, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0251678fb58117b4ad16740c93ebbae5", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bundesanstalt für Land und Forstwirtschaft, Braunschweig, Federal Republic of", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 389, - 1 - ], - "closestHeadline": "Guidelines ", - "section": "[389, 1]: Paragraph: Richtlinie für die amtliche", - "color": null, - "positions": [ - { - "rectangle": [ - 461.28, - 548.8, - 77.532684, - 11.52 - ], - "pageNumber": 232 - }, - { - "rectangle": [ - 70.92, - 536.2, - 272.6349, - 11.52 - ], - "pageNumber": 232 - } - ], - "textBefore": "und Metabolismus” Biologische ", - "textAfter": " Germany, 1986.", - "startOffset": 533242, - "endOffset": 533319, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e25f6c61b025d8c3908d322fe2fa208c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 362, - 1, - 0, - 20 - ], - "closestHeadline": "Table 7.1.2.2.1-12: Summary of modelling DegT50 matrix values for fludioxonil normalised to standard temperature ", - "section": "[362, 1, 0, 20]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 646.84, - 30.540985, - 10.5 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 504582, - "endOffset": 504590, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "91fce37b0598e928e0315869e9e2b698", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1, - 16 - ], - "closestHeadline": "Table 7.1.2.2.1-3: Summary of the kinetic evaluation reports for the field soil degradation of fludioxonil ", - "section": "[334, 1, 16]: Table_cell: Ford, 2016a", - "color": null, - "positions": [ - { - "rectangle": [ - 394.68, - 360.64, - 19.29898, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " 2016a", - "startOffset": 459895, - "endOffset": 459900, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9ec0ac42bbdd0fd04364705018c03ac9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 2 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 2]: Paragraph: Three of the previously", - "color": null, - "positions": [ - { - "rectangle": [ - 333.96, - 132.52003, - 51.971893, - 11.52 - ], - "pageNumber": 119 - } - ], - "textBefore": "(14C-pyrrole-labelled fludioxonil). The ", - "textAfter": ", 1994c study", - "startOffset": 279884, - "endOffset": 279895, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07c809303af6952d2c7c7d9ebb972876", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1358 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1358]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 258 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923791, - "endOffset": 923799, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d62c737590c9762aa191ae4303da61e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 474, - 1, - 2 - ], - "closestHeadline": "Table 7.1.3.1.1-1: Fludioxonil adsorption/desorption study ", - "section": "[474, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 498.4, - 35.48404, - 10.5 - ], - "pageNumber": 262 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 591448, - "endOffset": 591456, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3c85ecf4cde4e84a1091ae7d003b00df", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 520, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[520, 1]: Paragraph: The adsorption/desorption characteristics of", - "color": null, - "positions": [ - { - "rectangle": [ - 335.80203, - 705.04, - 46.17874, - 11.52 - ], - "pageNumber": 286 - } - ], - "textBefore": "Hanford (sandy loam), ", - "textAfter": " Collamer (loam) and", - "startOffset": 651363, - "endOffset": 651371, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "36337645fd9f79724d88fe95ecf87cc0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 424, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[424, 1, 1]: Paragraph: (Reichert, N. 1993)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.9053, - 357.4, - 53.533325, - 11.52 - ], - "pageNumber": 244 - } - ], - "textBefore": "(", - "textAfter": " 1993)", - "startOffset": 556255, - "endOffset": 556267, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4ed49b49385ab4918c47e0ee4f2beccc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Roßdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 436, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[436, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 275.92, - 32.804855, - 10.98 - ], - "pageNumber": 248 - } - ], - "textBefore": "& Co.KG, D-64380, ", - "textAfter": ", Germany. (Syngenta", - "startOffset": 564400, - "endOffset": 564407, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3453def69ce3d7a74ddc4a5a764df2d8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 299, - 2 - ], - "closestHeadline": "CGA339833 ", - "section": "[299, 2]: Paragraph: According to the latest", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 452.2, - 36.129135, - 11.52 - ], - "pageNumber": 178 - } - ], - "textBefore": "were performed by ", - "textAfter": " (2015b, summarised below),", - "startOffset": 421236, - "endOffset": 421243, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "59c7de387035dc56837070559b4a9ac8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1442 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1442]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 342 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928663, - "endOffset": 928671, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f05f8abe98e27a601a111601e92c2782", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 34 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 34]: Table_cell: Reichert (1993b)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.16, - 644.08, - 30.527039, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1993b)", - "startOffset": 480991, - "endOffset": 480999, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "99b358e3824a01b5f0eaa5ea6b0b7952", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1404 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1404]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 304 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926459, - "endOffset": 926467, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3558e91fbde7fb50dd47e8846306f954", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 56 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 56]: Table_cell: Minet (1994a)", - "color": null, - "positions": [ - { - "rectangle": [ - 83.76, - 538.12, - 21.533005, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1994a)", - "startOffset": 410153, - "endOffset": 410158, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9bb5f847bc854e88898135648aea413e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Baumann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 599, - 1, - 3 - ], - "closestHeadline": "Table 7.2.2.1-1: Fludioxonil ready biodegradability study ", - "section": "[599, 1, 3]: Table_cell: Baumann, 1993", - "color": null, - "positions": [ - { - "rectangle": [ - 116.76, - 484.24, - 34.388985, - 10.5 - ], - "pageNumber": 325 - } - ], - "textBefore": "", - "textAfter": ", 1993", - "startOffset": 751010, - "endOffset": 751017, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c37b83cc964599a84460cb054d0e3aaa", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 40, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[40, 3, 0]: Paragraph: 1so–ilm):ethod of of pH", - "color": null, - "positions": [ - { - "rectangle": [ - 427.41766, - 212.79999, - 45.909943, - 10.518 - ], - "pageNumber": 34 - } - ], - "textBefore": "was was conducted ", - "textAfter": " at the the", - "startOffset": 79966, - "endOffset": 79978, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "10020f85288feb9fd33fea60b9395321", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 27 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 27]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.64, - 664.12, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 460627, - "endOffset": 460635, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "18080c86045254387282ec004b2f6e22", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1230 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1230]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 130 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916367, - "endOffset": 916375, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "73b36bc805858003830e6c3bcd441946", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dulin, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 573, - 7 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[573, 7]: Paragraph: Quantum yield represents the", - "color": null, - "positions": [ - { - "rectangle": [ - 167.88, - 541.96, - 41.271988, - 11.52 - ], - "pageNumber": 312 - } - ], - "textBefore": "described in “", - "textAfter": " and T. Mill.", - "startOffset": 715801, - "endOffset": 715810, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d65ecb86781382c20777c1027fad95b3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1373 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1373]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 273 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924661, - "endOffset": 924669, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0dcad25f706d7c5ae56705f96e601630", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 412, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[412, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 224.13669, - 338.44, - 36.65338, - 10.98 - ], - "pageNumber": 240 - } - ], - "textBefore": "Roßdorf, Germany. (", - "textAfter": " File No. CGA173506/0432)", - "startOffset": 548519, - "endOffset": 548527, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5f5f3e429c5d34868afcb3ea2a650ed1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 293, - 1, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.1.2-1: CGA265378 applied aerobic soil degradation laboratory study considered in this assessment ", - "section": "[293, 1, 0, 2]: Table_cell: Adam and Wijntjes, 2015*", - "color": null, - "positions": [ - { - "rectangle": [ - 176.58597, - 486.64, - 30.542984, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "Adam and ", - "textAfter": ", 2015*", - "startOffset": 416030, - "endOffset": 416038, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9e16a81fd5e87783b9774507467c9ebd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 165.16002, - 36.646317, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "6ES, England (", - "textAfter": " file No. CGA173506/0107)", - "startOffset": 592695, - "endOffset": 592703, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2023f0b860d86d1415d1dbd2051bdcd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "STILLMEADOW Inc.", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 502, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-48: KFOC and 1/n (Freundlich exponent) adsorption values of CGA339833 in different soils ", - "section": "[502, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 414.84, - 403.48, - 85.99692, - 10.98 - ], - "pageNumber": 277 - } - ], - "textBefore": "Report Number 2694-96. ", - "textAfter": ", 12852, Park", - "startOffset": 628969, - "endOffset": 628985, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6b82818de6eb5bc998db99568d12f36", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 475, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 1, 0]: Table: #cols: 7, #rows: 9, Soil pH Organic carbon", - "color": null, - "positions": [ - { - "rectangle": [ - 455.88, - 349.84, - 32.013, - 10.5 - ], - "pageNumber": 262 - } - ], - "textBefore": "", - "textAfter": " et al. (1991)", - "startOffset": 591848, - "endOffset": 591855, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "561fc811b675824e3ce633547bc7ef64", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Somersham, Cambridgeshire, UK", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 256, - 1, - 3 - ], - "closestHeadline": "Properties of soil: ", - "section": "[256, 1, 3]: Table_cell: Somersham, Cambridgeshire, UK", - "color": null, - "positions": [ - { - "rectangle": [ - 281.64, - 440.32, - 122.44589, - 10.518 - ], - "pageNumber": 156 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 373640, - "endOffset": 373669, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4dd99bce302dd90a3cda51eaf05f8912", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 5, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 5, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/01. Emburey, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.44, - 438.16, - 49.625793, - 10.98 - ], - "pageNumber": 197 - } - ], - "textBefore": "K-CA 7.1.2.2.1/01. ", - "textAfter": " (2004): Fludioxonil –", - "startOffset": 466954, - "endOffset": 466965, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "810277c5cd19c4fa901d6749ae0d2af9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1218 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1218]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 118 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915671, - "endOffset": 915679, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b08b3cd4b464999357861e1f78d1d014", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1295 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1295]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920137, - "endOffset": 920145, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "819e5732475b8d5d7aea0374aee1ca40", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1476 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1476]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 376 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930635, - "endOffset": 930643, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b69133aebffc24ee5c6a48905ad0e4ae", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 364, - 1, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[364, 1, 0]: Table: #cols: 5, #rows: 15, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 298.32, - 721.84, - 33.041016, - 10.5 - ], - "pageNumber": 218 - } - ], - "textBefore": "", - "textAfter": " (1993c) – Achern-Gamshurst", - "startOffset": 506713, - "endOffset": 506721, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f108ef3b247e408dc42b00ff8e4b99c8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 281, - 8 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 8]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 686.44, - 41.006897, - 11.52 - ], - "pageNumber": 167 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 393759, - "endOffset": 393767, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "70e16efcf0f0d31f3f216526dd894e63", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1359 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1359]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 259 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923849, - "endOffset": 923857, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "524023e8f7b36ef98147d90503b79b03", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 703, - 1, - 3 - ], - "closestHeadline": "Table 7.3-1: Fludioxonil fate and behaviour in air studies ", - "section": "[703, 1, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 459.72, - 282.88, - 35.47702, - 10.5 - ], - "pageNumber": 374 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 867265, - "endOffset": 867273, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d78b460c2f188a57defdcca3f1219da0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Van der Gaauw", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 559, - 3 - ], - "closestHeadline": "CA 7.2.1 Route and rate of degradation in aquatic systems (chemical and photochemical degradation) ", - "section": "[559, 3]: Paragraph: The hydrolysis of metabolite", - "color": null, - "positions": [ - { - "rectangle": [ - 348.96, - 602.8, - 71.56705, - 11.52 - ], - "pageNumber": 306 - } - ], - "textBefore": "was investigated by ", - "textAfter": " (2002) in sterile", - "startOffset": 696957, - "endOffset": 696970, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2d0973b0406a3b010f34c3fcbb51b1cc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adam, D.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 205, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[205, 2, 0, 0, 1]: Paragraph: K-CA.7.1.1.3/02. Adam, D. (2015):", - "color": null, - "positions": [ - { - "rectangle": [ - 212.99835, - 615.28, - 38.978775, - 10.98 - ], - "pageNumber": 130 - } - ], - "textBefore": "K-CA.7.1.1.3/02. ", - "textAfter": " (2015): Fludioxonil -", - "startOffset": 311502, - "endOffset": 311510, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "811470e063683d93fa46a9839e8ec11c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 357, - 1, - 0 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[357, 1, 0]: Table: #cols: 5, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 307.68, - 721.84, - 35.967957, - 10.5 - ], - "pageNumber": 213 - } - ], - "textBefore": "", - "textAfter": " (2004) – Vouvry,", - "startOffset": 496093, - "endOffset": 496100, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a5028ecb999bf1ad90fd0e9865a646fa", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 1, - 0, - 48 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 1, 0, 48]: Table_cell: Emburey (2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 476.4, - 260.8, - 33.06598, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 462410, - "endOffset": 462417, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "56c66708fabb88e0cba3fbf3b457fd10", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 2, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 2, 1]: Paragraph: The study by Emburey", - "color": null, - "positions": [ - { - "rectangle": [ - 131.03189, - 120.16005, - 40.362198, - 11.52 - ], - "pageNumber": 214 - } - ], - "textBefore": "The study by ", - "textAfter": " (2004) included data", - "startOffset": 500434, - "endOffset": 500441, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "325d37714908a41781ee5f5232399101", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "D-8753 Obernburg, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 452, - 2, - 19 - ], - "closestHeadline": "Materials ", - "section": "[452, 2, 19]: Table_cell: D-8753 Obernburg, Germany", - "color": null, - "positions": [ - { - "rectangle": [ - 266.04, - 606.16, - 106.729034, - 10.5 - ], - "pageNumber": 254 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 575054, - "endOffset": 575079, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "deef204a4af43a8787d6e43d60665838", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1429 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1429]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 329 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927909, - "endOffset": 927917, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "913b7c13363f5075cf34e61001877d22", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1127 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1127]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 27 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910393, - "endOffset": 910401, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9177cf625a99bb1194d327df44694ee9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1130 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1130]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 30 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910567, - "endOffset": 910575, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d310efa313a0f9ae6cb70cf1d7112217", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1197 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1197]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 97 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914453, - "endOffset": 914461, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c06cc46822991d59007c4a1ac386f661", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Basel", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 190, - 1, - 1, - 19 - ], - "closestHeadline": "Experimental design ", - "section": "[190, 1, 1, 19]: Table_cell: 66.98, 68.98 and 65.32", - "color": null, - "positions": [ - { - "rectangle": [ - 323.478, - 629.92, - 19.998016, - 10.5 - ], - "pageNumber": 124 - } - ], - "textBefore": "USA (40°N) and ", - "textAfter": ", Switzerland (50°N)", - "startOffset": 292836, - "endOffset": 292841, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cc5342603c779f53d207314219bf9255", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1292 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1292]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 192 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919963, - "endOffset": 919971, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2cf7342c360dce15051da07c8b91cb19", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "D-71723 Winzerhausen, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 404, - 1, - 55 - ], - "closestHeadline": "Materials ", - "section": "[404, 1, 55]: Table_cell: D-71723 Winzerhausen, Germany", - "color": null, - "positions": [ - { - "rectangle": [ - 266.04, - 108.52002, - 123.67288, - 10.5 - ], - "pageNumber": 237 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 543646, - "endOffset": 543675, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "627a5822e126a60d1640e19b42d0c883", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1316 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1316]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 216 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921355, - "endOffset": 921363, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57acd0aed2ddbbe0b223a9454981b3ff", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 28, - 1, - 1 - ], - "closestHeadline": "Materials ", - "section": "[28, 1, 1]: Paragraph: Description: Not reported Lot/Batch", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 566.68, - 24.562866, - 10.518 - ], - "pageNumber": 27 - } - ], - "textBefore": "MBq/mg (54.59 µCi/mg) ", - "textAfter": " 98 3 %", - "startOffset": 64836, - "endOffset": 64843, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bdf0175979e9fe97e3804bc4c6762ec7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 638, - 2, - 0, - 14 - ], - "closestHeadline": "Executive Summary ", - "section": "[638, 2, 0, 14]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.64, - 452.8, - 18.10212, - 10.518 - ], - "pageNumber": 347 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 796145, - "endOffset": 796149, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7a79313d18f19caa4f2e86498ca81c63", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 644, - 1 - ], - "closestHeadline": "CA 7.2.2.3 Water/sediment studies ", - "section": "[644, 1]: Paragraph: The fate and behaviour", - "color": null, - "positions": [ - { - "rectangle": [ - 457.2, - 76.000015, - 33.089996, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "kinetically re-evaluated by ", - "textAfter": " (2015)", - "startOffset": 804309, - "endOffset": 804316, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f59e334742643e1660d3020dee03934", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Ltd.", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 320, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-16: Summary of modelling endpoints ", - "section": "[320, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/0405. Hayes, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 460.688, - 728.2, - 56.32599, - 10.99992 - ], - "pageNumber": 185 - } - ], - "textBefore": "CGA192155 and SYN545245). ", - "textAfter": ", Jealott’s Hill", - "startOffset": 437975, - "endOffset": 437988, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75e1a7f45105ac998cbf3adebb5f58ca", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1112 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1112]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 12 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909523, - "endOffset": 909531, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba750269383b79c0f6d6c20c288ef7f8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1177 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1177]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 77 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913293, - "endOffset": 913301, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b2baafded11b263de2915f9366710608", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Baumann", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 596, - 2 - ], - "closestHeadline": "CA 7.2.2 Route and rate of biological degradation in aquatic systems ", - "section": "[596, 2]: Paragraph: In the prior EU-review", - "color": null, - "positions": [ - { - "rectangle": [ - 332.64, - 262.48, - 45.377533, - 11.52 - ], - "pageNumber": 323 - } - ], - "textBefore": "corresponding study (", - "textAfter": ", 1993), which", - "startOffset": 744683, - "endOffset": 744690, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1cf3c3225819e2b81802aed9cc01c03d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1247 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1247]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 147 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917353, - "endOffset": 917361, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b7b23666c3dbe0b8fdcd1c754bb888d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 400, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[400, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 423.4, - 48.033783, - 10.98 - ], - "pageNumber": 236 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1993b). Field Soil", - "startOffset": 540653, - "endOffset": 540665, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "09e45cfbdd1f34798ba27fcf6a2b0ec0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1148 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1148]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 48 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911611, - "endOffset": 911619, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dae7451b878a1ecf008ba6a745380587", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 448, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[448, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 208.47997, - 48.033783, - 10.98 - ], - "pageNumber": 252 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1994c). Field Soil", - "startOffset": 572142, - "endOffset": 572154, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a226940f22f0ec1ad871c36cc84e6b93", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 117, - 1, - 0, - 5 - ], - "closestHeadline": "Soil information: ", - "section": "[117, 1, 0, 5]: Table_cell: Jealott’s Hill Farm, Bracknell,", - "color": null, - "positions": [ - { - "rectangle": [ - 222.84, - 697.36, - 46.238037, - 10.5 - ], - "pageNumber": 87 - } - ], - "textBefore": "", - "textAfter": " Farm, Bracknell, Berkshire,", - "startOffset": 198751, - "endOffset": 198765, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1644a771f4fc2ce50cf72fe7e7651684", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1234 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1234]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 134 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916599, - "endOffset": 916607, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2e22a1892f4dd8d95425d568189d2da8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 692, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[692, 2, 0, 0]: Table_cell: Report: K-CA 7.2.2.4/01.Pietsch, K.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 598.24, - 37.005707, - 10.98 - ], - "pageNumber": 371 - } - ], - "textBefore": "CGA 192155). (", - "textAfter": " File No. CGA173506_11899)", - "startOffset": 856379, - "endOffset": 856387, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a625daea9f6f9447e1141367b7da234", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "CIBA-Geigy Limited, Division Plant Protection, CH-4002, Basle, Switzerland", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 15, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.1.1-9: ", - "section": "[15, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Abildt, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 326.6188, - 186.52, - 192.73215, - 10.98 - ], - "pageNumber": 17 - }, - { - "rectangle": [ - 140.64, - 174.99998, - 116.626205, - 10.98 - ], - "pageNumber": 17 - } - ], - "textBefore": "Report Number 90UA01. ", - "textAfter": ". (Syngenta file", - "startOffset": 42628, - "endOffset": 42702, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "31a30a73b2beb1a76047e7ff51af436a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1419 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1419]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 319 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927329, - "endOffset": 927337, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d327fe78e04be980f04c87533d0f08b8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1376 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1376]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 276 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924835, - "endOffset": 924843, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6ce27d9152003da623d211c9b80f6a24", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1459 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1459]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 359 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929649, - "endOffset": 929657, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fad551453e721db713efe605e8d1a204", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.2. Kirkpatrick, D.,", - "color": null, - "positions": [ - { - "rectangle": [ - 206.012, - 188.43999, - 60.81067, - 10.98 - ], - "pageNumber": 154 - } - ], - "textBefore": "K-IIA 7.1.1.1.2. ", - "textAfter": ", (1994b), Photolysis", - "startOffset": 370770, - "endOffset": 370785, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "81e45cd65e134775511227d369288f91", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1418 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1418]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 318 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927271, - "endOffset": 927279, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1b19638262ba0e93a71dab1dcdf02137", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1367 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1367]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 267 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924313, - "endOffset": 924321, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "18fd15915602b2a935b6f0b2b64c88d4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 560, - 1, - 3 - ], - "closestHeadline": "Table 7.2.1.1-1: Hydrolytic degradation studies ", - "section": "[560, 1, 3]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 431.52, - 471.28, - 35.48404, - 10.5 - ], - "pageNumber": 306 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 697748, - "endOffset": 697756, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "608a1145be15a554fda5479c648b8ccc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pietsch", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 645, - 1, - 8 - ], - "closestHeadline": "Table 7.2.2.3-1: Laboratory study on the degradation of fludioxonil in aquatic systems under dark conditions ", - "section": "[645, 1, 8]: Table_cell: Pietsch, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 101.04, - 622.72, - 26.102997, - 10.5 - ], - "pageNumber": 351 - } - ], - "textBefore": "", - "textAfter": ", 2015", - "startOffset": 804877, - "endOffset": 804884, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ffce66f6685bbbb99a632540336ea923", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 42 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 42]: Table_cell: Ellgehausen (1992a)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 573.04, - 44.041985, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1992a)", - "startOffset": 411644, - "endOffset": 411655, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d782365d09acd70df0fe639c76710745", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 1, 1]: Table: #cols: 7, #rows: 12, Les Evouettes Silt loam", - "color": null, - "positions": [ - { - "rectangle": [ - 73.92, - 547.6, - 33.554993, - 10.5 - ], - "pageNumber": 171 - } - ], - "textBefore": "", - "textAfter": ", 2015", - "startOffset": 405490, - "endOffset": 405499, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "691a07b1631b4cb98e70a946fcc21520", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 4 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642, 4]: Paragraph: Figure 7.2.2.2-29: Percentage of", - "color": null, - "positions": [ - { - "rectangle": [ - 221.123, - 589.0, - 25.645874, - 10.99992 - ], - "pageNumber": 350 - } - ], - "textBefore": "systems (○) and ", - "textAfter": " systems (●) significantly", - "startOffset": 803168, - "endOffset": 803173, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba179f8b705feeea095ba660584b643a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 400, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[400, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 224.13669, - 400.36, - 36.65338, - 10.98 - ], - "pageNumber": 236 - } - ], - "textBefore": "Roßdorf, Germany. (", - "textAfter": " File No. CGA173506/0431)", - "startOffset": 540812, - "endOffset": 540820, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e5fefb0137d2186dec2438ac25ca0c8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 1, - 0, - 41 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 1, 0, 41]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 475.68, - 275.56, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 462345, - "endOffset": 462353, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1026eae818a82075cbe725448cc79574", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1406 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1406]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 306 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926575, - "endOffset": 926583, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "045cf35fc9f2cbf0e497d215cdb4db2c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 1, - 0, - 2 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 1, 0, 2]: Table_cell: Reichert (1994c) – Obernburg", - "color": null, - "positions": [ - { - "rectangle": [ - 312.12, - 724.0, - 33.041016, - 10.5 - ], - "pageNumber": 227 - } - ], - "textBefore": "", - "textAfter": " (1994c) – Obernburg", - "startOffset": 523978, - "endOffset": 523986, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1affec445f669f3d5c0c5fc305a9d7d0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 59, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[59, 2, 0, 0, 1]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 205.95656, - 465.88, - 38.033783, - 10.98 - ], - "pageNumber": 47 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " (1994b), Degradation of", - "startOffset": 107249, - "endOffset": 107258, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "781fef51989dc96e5d188b68d9d93e93", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1275 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1275]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 175 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918977, - "endOffset": 918985, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1bae1de89bcabda6e565116519ffc919", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1370 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1370]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 270 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924487, - "endOffset": 924495, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "daedf72ac6ce802fa6213e245ec3de7a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon Research Centre Ltd., Cambridgeshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 232, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[232, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.1.2. Kirkpatrick,", - "color": null, - "positions": [ - { - "rectangle": [ - 383.06808, - 622.36, - 138.02493, - 10.98 - ], - "pageNumber": 146 - }, - { - "rectangle": [ - 140.64, - 610.96, - 65.01308, - 10.98 - ], - "pageNumber": 146 - } - ], - "textBefore": "Number CBG 516/901362. ", - "textAfter": ", PE18 6ES,", - "startOffset": 350706, - "endOffset": 350753, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "737bdd2afcb9ff1914d086f4971a98c1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1432 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1432]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 332 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928083, - "endOffset": 928091, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d6c521e00197eca2bc97c351dd6549d9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1450 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1450]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 350 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929127, - "endOffset": 929135, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "49bcda98cb7d77dc8c8e8866774c56f3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 4 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 4]: Paragraph: The TLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 301.68, - 591.16, - 51.971893, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "1994a (reported in ", - "textAfter": ", 1994c) included", - "startOffset": 281224, - "endOffset": 281235, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d975c709c7c6844bd3930e43526e6209", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Roßdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 412, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[412, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 338.44, - 32.804855, - 10.98 - ], - "pageNumber": 240 - } - ], - "textBefore": "& Co.KG, D-64380, ", - "textAfter": ", Germany. (Syngenta", - "startOffset": 548500, - "endOffset": 548507, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "deaf1365342c9a32e0fa369c723571f3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1244 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1244]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 144 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917179, - "endOffset": 917187, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "149af5f0095aeeb7d268718fe02b5da5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 251, - 1, - 13 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 13]: Paragraph: Kirkpatrick, 1994a (CGA173506_0523). In", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 360.16, - 50.7444, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "", - "textAfter": ", 1994a (CGA173506_0523).", - "startOffset": 369947, - "endOffset": 369958, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4552f4192ee3c792823e1efd80788686", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1189 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1189]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 89 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913989, - "endOffset": 913997, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "28aabff2a44eb0fe955bedb6c656c7de", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Innovative Environmental Services (IES) Ltd, Benkenstrasse 260, 4108 Witterswil", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 167, - 2, - 0 - ], - "closestHeadline": "Table 7.1.1.1-89: SYN545245 applied aerobic soil degradation laboratory study ", - "section": "[167, 2, 0]: Table_cell: Report: K-CA 7.1.1.1/03. Caviezel", - "color": null, - "positions": [ - { - "rectangle": [ - 454.60825, - 693.28, - 42.733856, - 10.98 - ], - "pageNumber": 113 - }, - { - "rectangle": [ - 140.64, - 681.76, - 285.7141, - 10.98 - ], - "pageNumber": 113 - } - ], - "textBefore": "Report Number 20150138. ", - "textAfter": ". (Syngenta file", - "startOffset": 261438, - "endOffset": 261517, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6f10da34e40b0f768188a80c283f55b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1237 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1237]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 137 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916773, - "endOffset": 916781, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "63a9f509dd4808f345d5daa3811296b2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 5 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 5]: Table_cell: Kirkpatrick, 1994c", - "color": null, - "positions": [ - { - "rectangle": [ - 73.2, - 611.08, - 41.539986, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": ", 1994c", - "startOffset": 700572, - "endOffset": 700583, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7923c8b9eec5907eedcb8cbe54ad7749", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1443 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1443]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 343 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928721, - "endOffset": 928729, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b22d78f58f08943196ae11f1a6cbb268", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adam, D.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 667, - 5, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.2.4-1: Laboratory study on the degradation of fludioxonil in aquatic systems under light/dark conditions ", - "section": "[667, 5, 0, 0, 1]: Paragraph: K-IIA 7.2.1.3.2. Adam, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 206.01001, - 562.72, - 38.002792, - 10.98 - ], - "pageNumber": 360 - } - ], - "textBefore": "K-IIA 7.2.1.3.2. ", - "textAfter": " (2004). [Pyrrole-414C]-CGA173506: Route", - "startOffset": 827046, - "endOffset": 827054, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "df29254a503dcf555c5267e87aece090", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1209 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1209]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 109 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915149, - "endOffset": 915157, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8ab4a7483e23ae392a489d344bbdb7d4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1184 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1184]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 84 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913699, - "endOffset": 913707, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a36952fde12d5359a4bd8fee266d296f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1216 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1216]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 116 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915555, - "endOffset": 915563, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dba739b698b2e593a5f8e8508d3bd330", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1259 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1259]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 159 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918049, - "endOffset": 918057, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5a2cd8cfc8004f902a772a04445169b8", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 5 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642, 5]: Paragraph: The estimated degradation DegT50", - "color": null, - "positions": [ - { - "rectangle": [ - 399.72726, - 319.12, - 23.234375, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "standard, macrophyte and ", - "textAfter": " systems were 64", - "startOffset": 803320, - "endOffset": 803325, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "85558bc7b2fdff367b64feb3ec2036b8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1, - 10 - ], - "closestHeadline": "Table 7.1.2.2.1-3: Summary of the kinetic evaluation reports for the field soil degradation of fludioxonil ", - "section": "[334, 1, 10]: Table_cell: Ford, 2016", - "color": null, - "positions": [ - { - "rectangle": [ - 396.72, - 392.44, - 19.29898, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " 2016", - "startOffset": 459756, - "endOffset": 459761, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fff23cd09e4548e60c99e79d46368aa4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 4 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 4]: Table_cell: Gentile, 1993", - "color": null, - "positions": [ - { - "rectangle": [ - 87.24, - 698.08, - 26.507996, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1993", - "startOffset": 456894, - "endOffset": 456901, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fe7912c5d4c21321a706974f4556ef3b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 2, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 2, 1]: Paragraph: The study by Emburey", - "color": null, - "positions": [ - { - "rectangle": [ - 131.1749, - 107.44002, - 40.400635, - 11.52 - ], - "pageNumber": 221 - } - ], - "textBefore": "The study by ", - "textAfter": " (2004) included data", - "startOffset": 514229, - "endOffset": 514236, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aafaa36f1c6b6d6f24b44da2c02e4524", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 1, - 0, - 34 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 1, 0, 34]: Table_cell: Reichert (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 475.44, - 290.44, - 30.527039, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 462282, - "endOffset": 462290, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "79fcf580fe895adee7493c97128792fa", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1158 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1158]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 58 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912191, - "endOffset": 912199, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac2a8e7112589cee94194ee221972341", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "NA FOMC Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 1, 0]: Table: #cols: 6, #rows: 6, Syngenta Report Soil Measured", - "color": null, - "positions": [ - { - "rectangle": [ - 431.64, - 373.6, - 12.97699, - 10.5 - ], - "pageNumber": 176 - }, - { - "rectangle": [ - 496.08, - 373.6, - 25.556976, - 10.5 - ], - "pageNumber": 176 - }, - { - "rectangle": [ - 85.68, - 358.36, - 22.007996, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "Acres 0.21 0.23 ", - "textAfter": " and Wijntjes, 2015", - "startOffset": 416512, - "endOffset": 416524, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "465154eb9d22e0d6e435feaca041f6c6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 232, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[232, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.1.2. Kirkpatrick,", - "color": null, - "positions": [ - { - "rectangle": [ - 206.01001, - 633.88, - 60.79663, - 10.98 - ], - "pageNumber": 146 - } - ], - "textBefore": "Report: K-IIA 7.1.1.1.2. ", - "textAfter": ", (1994a), The", - "startOffset": 350584, - "endOffset": 350599, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c1ec3f9e616a5cc31a866ae4bce1da22", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1181 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1181]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 81 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913525, - "endOffset": 913533, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6fba669177127a025d6bc60efba45f25", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burton", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 518, - 1, - 0 - ], - "closestHeadline": "Table 7.1.3.1.2-619: KFOC and 1/n (Freundlich exponent) adsorption values of CGA192155 in different soils ", - "section": "[518, 1, 0]: Table: #cols: 7, #rows: 8, Soil pH Organic carbon", - "color": null, - "positions": [ - { - "rectangle": [ - 471.48, - 397.0, - 25.016998, - 10.5 - ], - "pageNumber": 285 - } - ], - "textBefore": "", - "textAfter": " (1996a)", - "startOffset": 650298, - "endOffset": 650304, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a06bffa63ff8c4c67c9e0dff3f298b59", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/01. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 233.91997, - 37.040665, - 10.98 - ], - "pageNumber": 176 - } - ], - "textBefore": "Mannheim, Germany. (", - "textAfter": " File No. CGA265378_10016)", - "startOffset": 417056, - "endOffset": 417064, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f23d736a4aa87687e1ed7656f1701466", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 184, - 8 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 8]: Paragraph: Fludioxonil (CGA173506) degraded rapidly", - "color": null, - "positions": [ - { - "rectangle": [ - 284.64, - 201.64003, - 51.971893, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "of two replicates; ", - "textAfter": ", 1994c), 13.4", - "startOffset": 283762, - "endOffset": 283773, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "11a10f339387fa761ee2c176c6bbd510", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1137 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1137]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 37 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 910973, - "endOffset": 910981, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7fc80d7bcafe75ce582e073f029f9039", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1334 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1334]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 234 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922399, - "endOffset": 922407, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3eac8441d250a82993da4b8bb1b2c885", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 6 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 6]: Paragraph: Syngenta did not save", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 284.56003, - 40.98587, - 11.52 - ], - "pageNumber": 189 - } - ], - "textBefore": "", - "textAfter": " did not save", - "startOffset": 446327, - "endOffset": 446335, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "478efe2e28e07bb96ed6e2804552ed08", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1268 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1268]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918571, - "endOffset": 918579, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "91c4698a164d0f6167047391e39512e1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1325 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1325]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 225 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921877, - "endOffset": 921885, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7fd23880c0bb987b1c4b246ad4dc5f61", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 62 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 62]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 574.36, - 30.540985, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 481285, - "endOffset": 481293, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5073c216200a99c240700d89c317b648", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 183, - 1, - 0 - ], - "closestHeadline": "Table 7.1.1.2-1: Fludioxonil applied anaerobic soil degradation laboratory studies ", - "section": "[183, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 92.88, - 350.8, - 35.497993, - 10.5 - ], - "pageNumber": 119 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 278988, - "endOffset": 278996, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f0fb7be726e0ce8ef2191e54929c3a1c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1119 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1119]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 19 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909929, - "endOffset": 909937, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c0dbe8a6723cfda9f413f9c9a4773cf1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 694, - 2 - ], - "closestHeadline": "Executive Summary ", - "section": "[694, 2]: Paragraph: The route and rate", - "color": null, - "positions": [ - { - "rectangle": [ - 388.13376, - 308.56003, - 75.1611, - 11.52 - ], - "pageNumber": 371 - } - ], - "textBefore": "not identical. The ", - "textAfter": " study was performed", - "startOffset": 857584, - "endOffset": 857599, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "29cc318b964e96bafa4669205bd3b1dd", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 201, - 2, - 0 - ], - "closestHeadline": "Table 7.1.1.3-8: Observed DT50 and DT90 Values of CGA173506 estimated by linear regression for dark control ", - "section": "[201, 2, 0]: Paragraph: The non-linear regression analyses", - "color": null, - "positions": [ - { - "rectangle": [ - 247.09648, - 542.2, - 33.015, - 11.52 - ], - "pageNumber": 129 - } - ], - "textBefore": "and 50° N ", - "textAfter": " relative to the", - "startOffset": 309034, - "endOffset": 309042, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "86f35f1f51126aa86a615a9df5accbec", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burton S, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 499, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[499, 3]: Paragraph: (Burton S, D., 1996)", - "color": null, - "positions": [ - { - "rectangle": [ - 451.98532, - 271.96, - 55.697205, - 11.52 - ], - "pageNumber": 276 - } - ], - "textBefore": "(", - "textAfter": ", 1996)", - "startOffset": 626905, - "endOffset": 626917, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "016c27457d0b495722089ec2a379fa45", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 597, - 7 - ], - "closestHeadline": "Evaluation of the Potential Impact of Water Treatment Processes on Fludioxonil (CGA173506) and its Metabolites in Water Abstracted for Drinking ", - "section": "[597, 7]: Paragraph: Syngenta therefore conclude that", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 667.12, - 40.908905, - 11.52 - ], - "pageNumber": 325 - } - ], - "textBefore": "", - "textAfter": " therefore conclude that", - "startOffset": 750182, - "endOffset": 750190, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "33d012f96fb68fcce6ef18d0bc9b69ae", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gentile", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 333, - 1, - 0, - 4 - ], - "closestHeadline": "Table 7.1.2.2.1-2: Field dissipation studies with fludioxonil treated seeds (used as supplemental information) ", - "section": "[333, 1, 0, 4]: Table_cell: Gentile, 1991 *", - "color": null, - "positions": [ - { - "rectangle": [ - 83.64, - 697.84, - 26.507996, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": ", 1991 *", - "startOffset": 458390, - "endOffset": 458397, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a0184a2dd7652cc4767c1ea26b7dda80", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schaefer, E.C.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 636, - 6, - 12 - ], - "closestHeadline": "Table 7.2.2.2-25: Summary of Characterisation / Identification of Radioactive Residues: Sterilised 14 Natural Water Phenyl-U-[ C]-Fludioxonil Treated (95 µg/L); Extracted Water Layer ", - "section": "[636, 6, 12]: Paragraph: (Matthews, M.E., Schaefer, E.C.,", - "color": null, - "positions": [ - { - "rectangle": [ - 444.094, - 254.20003, - 63.611023, - 11.52 - ], - "pageNumber": 345 - } - ], - "textBefore": "(Matthews, M.E., ", - "textAfter": ", 2016)", - "startOffset": 793651, - "endOffset": 793665, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ea1397faebe7d455373e784e04c8e2d7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ulbrich. R", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 150, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[150, 5]: Paragraph: (Ulbrich. R, 1999)", - "color": null, - "positions": [ - { - "rectangle": [ - 461.22232, - 420.76, - 46.484894, - 11.52 - ], - "pageNumber": 105 - } - ], - "textBefore": "(", - "textAfter": ", 1999)", - "startOffset": 243943, - "endOffset": 243953, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "921345a74cbcaa52f7b0739eba804f80", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 604, - 3, - 6 - ], - "closestHeadline": "Materials ", - "section": "[604, 3, 6]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 574.0, - 27.48301, - 10.5 - ], - "pageNumber": 329 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 760153, - "endOffset": 760160, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f0a71e4591d0340d0809e352130af936", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Wildlife International, 8598 Commerce Drive, Easton, Maryland 21601", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 1, - 0, - 1 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 1, 0, 1]: Paragraph: K-CA 7.2.2.2/01. Matthews, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 457.8, - 604.84, - 33.238647, - 10.98 - ], - "pageNumber": 326 - }, - { - "rectangle": [ - 140.64, - 593.32, - 251.46004, - 10.98 - ], - "pageNumber": 326 - } - ], - "textBefore": "Report Number 528E-108. ", - "textAfter": ".", - "startOffset": 752982, - "endOffset": 753049, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78f59cb4040cbf1d3977e3f6cb7d060c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 554, - 1, - 0, - 3 - ], - "closestHeadline": "Table 7.1.4.1.1-1: Fludioxonil column leaching studies ", - "section": "[554, 1, 0, 3]: Table_cell: Hawkins et al., 1991c", - "color": null, - "positions": [ - { - "rectangle": [ - 82.8, - 153.76001, - 32.043, - 10.5 - ], - "pageNumber": 302 - } - ], - "textBefore": "", - "textAfter": " et al., 1991c", - "startOffset": 690966, - "endOffset": 690973, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a9e3e8fb699e9c323be21b264117b22b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 517, - 1, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-518: CGA192155 adsorption/desorption study ", - "section": "[517, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 538.0, - 35.48404, - 10.5 - ], - "pageNumber": 285 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 649905, - "endOffset": 649913, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "224f6e27f3b7100e2c0d2843b5522a38", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Grapes Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0]: Table: #cols: 7, #rows: 13, Location Soil texture Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 272.4, - 375.16, - 25.343018, - 10.5 - ], - "pageNumber": 200 - }, - { - "rectangle": [ - 350.28, - 375.16, - 17.547028, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "Silt loam 7.4 ", - "textAfter": " (1995) 347 Yes", - "startOffset": 476052, - "endOffset": 476063, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c47d93a9005759e62f9635070defd8df", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 376, - 2 - ], - "closestHeadline": "Materials and Methods ", - "section": "[376, 2]: Paragraph: The rate of degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 302.36542, - 111.40004, - 20.830566, - 11.52 - ], - "pageNumber": 227 - } - ], - "textBefore": "been calculated by ", - "textAfter": " (2015a). The data", - "startOffset": 525728, - "endOffset": 525732, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75aad12acf5448ffc6a62f04d284062f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1353 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1353]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 253 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923501, - "endOffset": 923509, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ace0886dbfa401b6d7cbbde560f0e231", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-2: Field dissipation studies with fludioxonil treated seeds (used as supplemental information) ", - "section": "[333, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 79.2, - 712.48, - 35.47, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 458323, - "endOffset": 458331, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bd04ed19279d65be7d414368f15c82f5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 320, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-16: Summary of modelling endpoints ", - "section": "[320, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/0405. Hayes, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 230.61801, - 739.72, - 38.121674, - 10.99992 - ], - "pageNumber": 185 - } - ], - "textBefore": "K-CA 7.1.2.1.2/0405. ", - "textAfter": " (2016): Fludioxonil -", - "startOffset": 437837, - "endOffset": 437846, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ae6c812355a3e0a51be6f79fd969ec5a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1219 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1219]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 119 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915729, - "endOffset": 915737, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ead8d7353cd6fd29abe24a89152a5b0a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 299, - 3 - ], - "closestHeadline": "CGA339833 ", - "section": "[299, 3]: Paragraph: Formation fractions of CGA339833", - "color": null, - "positions": [ - { - "rectangle": [ - 214.44, - 402.28, - 28.17517, - 11.52 - ], - "pageNumber": 178 - } - ], - "textBefore": "evaluation performed by ", - "textAfter": " (2016). The evaluation", - "startOffset": 421529, - "endOffset": 421534, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9109a233ffcf5602321a81a04582027b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 700, - 1, - 0 - ], - "closestHeadline": "Table 7.2.2.4-7: Supplementary studies on biological degradation in aquatic systems ", - "section": "[700, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 83.64, - 166.12, - 35.47, - 10.5 - ], - "pageNumber": 373 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 864756, - "endOffset": 864764, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5325595592ed91c02ca8c221afb10851", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1198 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1198]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 98 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914511, - "endOffset": 914519, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bebe557a5b20c668208bf74de5832480", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tavo Di Vigodarzere, PD, Italy", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 463, - 2, - 5 - ], - "closestHeadline": "Materials ", - "section": "[463, 2, 5]: Table_cell: Tavo Di Vigodarzere, PD,", - "color": null, - "positions": [ - { - "rectangle": [ - 267.48, - 712.36, - 113.58807, - 10.5 - ], - "pageNumber": 258 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 582550, - "endOffset": 582580, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "002149d1532ca94e56e69f4d9e3b2246", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Roßdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 388, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[388, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 611.08, - 32.804855, - 10.98 - ], - "pageNumber": 232 - } - ], - "textBefore": "& Co.KG, D-64380, ", - "textAfter": ", Germany. (Syngenta", - "startOffset": 533010, - "endOffset": 533017, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "00d382a3ca4a44b82bf0a63427baa3fd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1, - 22 - ], - "closestHeadline": "Table 7.1.2.2.1-3: Summary of the kinetic evaluation reports for the field soil degradation of fludioxonil ", - "section": "[334, 1, 22]: Table_cell: Ford, 2016b", - "color": null, - "positions": [ - { - "rectangle": [ - 394.44, - 328.84, - 19.29898, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": " 2016b", - "startOffset": 460052, - "endOffset": 460057, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "36e748f3d564bfe720b5d07a2c22e9f7", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "latitude", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 205, - 1, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[205, 1, 0]: Paragraph: This study demonstrated that", - "color": null, - "positions": [ - { - "rectangle": [ - 390.0733, - 679.72, - 33.014954, - 11.52 - ], - "pageNumber": 130 - } - ], - "textBefore": "to 50° N ", - "textAfter": ". Based on", - "startOffset": 311323, - "endOffset": 311331, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "74f73b27683093bd4593f6213d7c7204", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 538, - 2, - 6 - ], - "closestHeadline": "Table 7.1.3.1.2-31: Soil adsorption constants for SYN545245 in three soils ", - "section": "[538, 2, 6]: Paragraph: N Description: White solid", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 580.36, - 24.465004, - 10.5 - ], - "pageNumber": 295 - } - ], - "textBefore": "#: MES 427/1 ", - "textAfter": " 98% Stability of", - "startOffset": 675207, - "endOffset": 675214, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f7c746a8c7cd2ed3685891340bd6b983", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Matthews, M. E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 1, - 0, - 1 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 1, 0, 1]: Paragraph: K-CA 7.2.2.2/01. Matthews, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 213.0, - 616.36, - 66.79822, - 10.98 - ], - "pageNumber": 326 - } - ], - "textBefore": "K-CA 7.2.2.2/01. ", - "textAfter": " and Schaefer, E.", - "startOffset": 752840, - "endOffset": 752855, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2d3b3c8dc94b999e37169db2436915fd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1341 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1341]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 241 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922805, - "endOffset": 922813, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9c094e2ce662559a57cca28eadf46dde", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0]: Table: #cols: 7, #rows: 15, Trial location Soil texture", - "color": null, - "positions": [ - { - "rectangle": [ - 471.12, - 537.28, - 33.06598, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 481417, - "endOffset": 481424, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "39b304e06a871b7d36203a3bf87017fe", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 357, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[357, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/03. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 143.78767, - 702.28, - 37.075684, - 10.98 - ], - "pageNumber": 214 - } - ], - "textBefore": "United Kingdom. (", - "textAfter": " Report No. CGA173506_11902)", - "startOffset": 497914, - "endOffset": 497922, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7a15a8a91f04b52df7d389bab864a8bd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Cheeseman M A", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 177.91983, - 105.999985, - 67.13315, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "Renwick A G, ", - "textAfter": ", Kleiner J,", - "startOffset": 752122, - "endOffset": 752135, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78daae3842955f756fef4f963cbad5a0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1228 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1228]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 128 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916251, - "endOffset": 916259, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0e58a36f9ef10d375d4db748ec442e5b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1395 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1395]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 295 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925937, - "endOffset": 925945, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "731940b753c5dd01ecef7996499d6b8f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 286, - 1, - 9 - ], - "closestHeadline": "Table 7.1.2.1.1-1: Fludioxonil applied aerobic soil degradation laboratory studies considered in this assessment ", - "section": "[286, 1, 9]: Table_cell: Ellgehausen, 1992b", - "color": null, - "positions": [ - { - "rectangle": [ - 110.04, - 481.0, - 44.051994, - 10.5 - ], - "pageNumber": 170 - } - ], - "textBefore": "", - "textAfter": ", 1992b", - "startOffset": 404014, - "endOffset": 404025, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e689c9c198ebcc0631f8e949f50b8ca4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 369, - 1, - 0, - 61 - ], - "closestHeadline": "Table 7.1.2.2.1-14: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[369, 1, 0, 61]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.28, - 221.20001, - 30.492035, - 10.5 - ], - "pageNumber": 221 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 513521, - "endOffset": 513529, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "994c3aff5371339f2c782101e76f0c52", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 137, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1771: CGA339833 applied aerobic soil degradation laboratory study ", - "section": "[137, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 223.41568, - 366.28, - 36.64633, - 10.98 - ], - "pageNumber": 98 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " file No. CGA339833/0002).", - "startOffset": 228000, - "endOffset": 228008, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7603b7f9fe8eabe4783d7c858f6c65f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 1, - 2 - ], - "closestHeadline": "Table 7.1.1.1-963: CGA265378 applied aerobic soil degradation laboratory study ", - "section": "[113, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 411.6, - 550.0, - 35.48404, - 10.5 - ], - "pageNumber": 85 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 193971, - "endOffset": 193979, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4b636d7668c0866004016d1feaaddfa6", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "certificate of analysis", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 141, - 1, - 4 - ], - "closestHeadline": "Materials ", - "section": "[141, 1, 4]: Paragraph: Purity: 91.3 % (as", - "color": null, - "positions": [ - { - "rectangle": [ - 268.56885, - 126.40003, - 77.263, - 10.518 - ], - "pageNumber": 99 - } - ], - "textBefore": "(as described on ", - "textAfter": ") 84.0 %", - "startOffset": 230695, - "endOffset": 230718, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2868ae96cb112bc1f901d6ea6082e9e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1155 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1155]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 55 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912017, - "endOffset": 912025, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af399d9cc7127bd427b132aa93e0a513", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1284 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1284]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 184 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919499, - "endOffset": 919507, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0df1d68eb15facc9513a25a7da66fafa", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1409 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1409]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 309 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 926749, - "endOffset": 926757, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bc37ac3a14b25c6f9c5e0cbba175f602", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 452, - 2, - 26 - ], - "closestHeadline": "Materials ", - "section": "[452, 2, 26]: Table_cell: Sand (2000-60 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.04, - 551.56, - 18.029999, - 10.5 - ], - "pageNumber": 254 - } - ], - "textBefore": "", - "textAfter": " (2000-60 µm)", - "startOffset": 575151, - "endOffset": 575155, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b384c2051613e388bb033c9994aebcc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1439 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1439]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 339 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928489, - "endOffset": 928497, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40be56bdd186eb9b602ca746e71b2ed1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 370, - 2, - 0, - 48 - ], - "closestHeadline": "Results ", - "section": "[370, 2, 0, 48]: Table_cell: Emburey (2004)", - "color": null, - "positions": [ - { - "rectangle": [ - 471.12, - 570.76, - 33.06598, - 10.5 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": " (2004)", - "startOffset": 518403, - "endOffset": 518410, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b6dba0a75a4e1d379de739f1c76f41e0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 2, - 0, - 46 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 2, 0, 46]: Table_cell: Sachers, 2015c", - "color": null, - "positions": [ - { - "rectangle": [ - 384.36, - 266.2, - 28.05597, - 10.5 - ], - "pageNumber": 168 - } - ], - "textBefore": "", - "textAfter": ", 2015c", - "startOffset": 399117, - "endOffset": 399124, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2821586728e549ad133b914dbc4a9601", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dr. Knoell Consult GmbH, Mannheim, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/01. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 403.14, - 259.95993, - 108.63559, - 10.98 - ], - "pageNumber": 176 - }, - { - "rectangle": [ - 140.64, - 248.43999, - 85.421814, - 10.98 - ], - "pageNumber": 176 - } - ], - "textBefore": "Report Number 103705-2. ", - "textAfter": ". (Syngenta File", - "startOffset": 417011, - "endOffset": 417053, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "13188fbc57e99f8f2dcf8952736537d3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "NA FOMC Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 1, 0]: Table: #cols: 6, #rows: 6, Syngenta Report Soil Measured", - "color": null, - "positions": [ - { - "rectangle": [ - 431.64, - 358.48, - 12.97699, - 10.5 - ], - "pageNumber": 176 - }, - { - "rectangle": [ - 496.08, - 358.48, - 25.556976, - 10.5 - ], - "pageNumber": 176 - }, - { - "rectangle": [ - 85.68, - 343.36, - 22.007996, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "Gartenacker 0.09 0.10 ", - "textAfter": " and Wijntjes, 2015", - "startOffset": 416566, - "endOffset": 416578, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e93f17b46516721b97da2fb5ff5588d9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon Research Centre Ltd.", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 179.67998, - 135.59361, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "Number HRC/CBG 489/901104. ", - "textAfter": ", P.O. Box", - "startOffset": 592619, - "endOffset": 592650, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "65f43582bd7262e5803ffce08d8e8e29", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Meißner-Vockerode Geographical region/ Global co-ordinates Hessen, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 428, - 1 - ], - "closestHeadline": "Materials ", - "section": "[428, 1]: Table: #cols: 2, #rows: 26, Test item: CGA97170F Formulation:", - "color": null, - "positions": [ - { - "rectangle": [ - 295.82996, - 366.52, - 73.08511, - 10.5 - ], - "pageNumber": 245 - }, - { - "rectangle": [ - 70.44, - 351.64, - 149.786, - 10.5 - ], - "pageNumber": 245 - }, - { - "rectangle": [ - 266.04, - 351.64, - 63.89691, - 10.5 - ], - "pageNumber": 245 - } - ], - "textBefore": "Trial location D-3447 ", - "textAfter": " (GPS coordinates not", - "startOffset": 558453, - "endOffset": 558527, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60ba67326b77256762b1b310f59ad14b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 651, - 1, - 1 - ], - "closestHeadline": "Lot/Batch #: Le-84.2A ", - "section": "[651, 1, 1]: Paragraph: Radiochemical Purity: 99.2 %", - "color": null, - "positions": [ - { - "rectangle": [ - 130.67664, - 121.35999, - 27.713394, - 10.518 - ], - "pageNumber": 352 - } - ], - "textBefore": "Radiochemical ", - "textAfter": " 99.2 % Stability", - "startOffset": 809064, - "endOffset": 809071, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "855357c6ae700d3dc5a5f1494c9f7788", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1286 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1286]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 186 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919615, - "endOffset": 919623, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f71ddd0cad64075a1786b29bc8535c48", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Renwick A G", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 117.96179, - 105.999985, - 54.93004, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "11 Kroes R, ", - "textAfter": ", Cheeseman M", - "startOffset": 752109, - "endOffset": 752120, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e02e8e3617c27cd5856dfd0dc5eb2677", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 3 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 3]: Table_cell: Mair, 1996a §", - "color": null, - "positions": [ - { - "rectangle": [ - 80.4, - 699.04, - 17.501999, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 1996a §", - "startOffset": 588506, - "endOffset": 588510, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "53ab404d71a8ece34ed943ebe502a1d6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1255 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1255]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 155 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917817, - "endOffset": 917825, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9fee6198f27a0b621e142b8f4d0236cc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hawkins", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 485, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[485, 3]: Paragraph: (Hawkins et al., 1991)", - "color": null, - "positions": [ - { - "rectangle": [ - 443.82632, - 213.16005, - 39.187195, - 11.52 - ], - "pageNumber": 269 - } - ], - "textBefore": "(", - "textAfter": " et al., 1991)", - "startOffset": 612731, - "endOffset": 612738, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "db151b924de262774056fff20af0228b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1337 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1337]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 237 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922573, - "endOffset": 922581, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "867fd954a1bc28e63b0674797bf631d3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[80, 1, 5]: Paragraph: Minet 1994a, 1994b, 1994c,", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 432.76, - 26.318558, - 11.52 - ], - "pageNumber": 62 - } - ], - "textBefore": "", - "textAfter": " 1994a, 1994b, 1994c,", - "startOffset": 139058, - "endOffset": 139063, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "202c083d86b178936ed8150c803c8c93", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Giddings", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 596, - 8 - ], - "closestHeadline": "CA 7.2.2 Route and rate of biological degradation in aquatic systems ", - "section": "[596, 8]: Paragraph: A supplemental aquatic outdoor", - "color": null, - "positions": [ - { - "rectangle": [ - 296.52, - 528.64, - 41.003937, - 11.52 - ], - "pageNumber": 324 - } - ], - "textBefore": "microcosm study (", - "textAfter": ", 1993) indicated", - "startOffset": 747298, - "endOffset": 747306, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b04b6cfa1bc18ca1f2daea0dad1c33f8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1298 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1298]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 198 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920311, - "endOffset": 920319, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "401ca0cc7d5a4a210346372761eb2b66", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1320 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1320]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 220 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921587, - "endOffset": 921595, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78d6a946c3824d8c468a3b7833843a74", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 167, - 1, - 0 - ], - "closestHeadline": "Table 7.1.1.1-89: SYN545245 applied aerobic soil degradation laboratory study ", - "section": "[167, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 112.8, - 103.359985, - 35.47, - 10.5 - ], - "pageNumber": 112 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 261137, - "endOffset": 261145, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d3aff6b894ca131bf2fbc200669795c6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1366 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1366]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 266 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924255, - "endOffset": 924263, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d619bf8d099d7ab49c11fa7a64a5b905", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0, - 35 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0, 35]: Table_cell: Ellgehausen (1992a)", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 598.24, - 44.041985, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1992a)", - "startOffset": 411574, - "endOffset": 411585, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40f66405ff44f158afd52fef5c2c68ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 315, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-14: Summary of modelling degradation rates of SYN545245 in aerobic soils ", - "section": "[315, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 99.6, - 645.88, - 35.47001, - 10.5 - ], - "pageNumber": 183 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 433322, - "endOffset": 433330, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2982e07b8c2af02dd49e43ac32488c8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1465 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1465]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 365 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929997, - "endOffset": 930005, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fd2898bac70c2ed77812c5f529c88003", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dulin, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 590, - 2, - 2 - ], - "closestHeadline": "Table 7.2.1.2-17: DT50 and DT90 Values of CGA173506 obtained by linear regression using the SFO Model ", - "section": "[590, 2, 2]: Paragraph: The quantum yield represents", - "color": null, - "positions": [ - { - "rectangle": [ - 385.2, - 274.84, - 41.23999, - 11.52 - ], - "pageNumber": 322 - } - ], - "textBefore": "described in “", - "textAfter": " and T. Mill.", - "startOffset": 742220, - "endOffset": 742229, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06059b4f39088a1d445856063813510d", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 694, - 6 - ], - "closestHeadline": "Executive Summary ", - "section": "[694, 6]: Paragraph: All studies were conducted", - "color": null, - "positions": [ - { - "rectangle": [ - 145.17397, - 629.2, - 55.940323, - 11.52 - ], - "pageNumber": 372 - } - ], - "textBefore": "All studies were ", - "textAfter": " 20± 1°C. Therefore,", - "startOffset": 859937, - "endOffset": 859949, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2738b371f53f6404c27de6a494b587ee", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1264 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1264]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 164 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 918339, - "endOffset": 918347, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1c5ba52b4c637302e345f954c5974dd8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1427 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1427]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 327 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927793, - "endOffset": 927801, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cbbcc240a00cdd15b821476023146d2d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 70 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 70]: Table_cell: Minet (1994b)", - "color": null, - "positions": [ - { - "rectangle": [ - 83.52, - 487.72, - 21.524994, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1994b)", - "startOffset": 410285, - "endOffset": 410290, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f023f52d682efcccd11e9bc95f0f888e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[374, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/05. Patterson, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 408.6, - 327.76, - 37.134186, - 10.98 - ], - "pageNumber": 227 - } - ], - "textBefore": "Report Number RAJ1136B. ", - "textAfter": " Ltd, Jealott’s Hill", - "startOffset": 524993, - "endOffset": 525001, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6436b4bb16c05414443e0e57eb37027", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Name Lakeland Hanford Collamer Niagara Sampling location Georgia, USA California", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 522, - 2, - 0 - ], - "closestHeadline": "Materials ", - "section": "[522, 2, 0]: Table: #cols: 5, #rows: 15, Name Lakeland Hanford Collamer", - "color": null, - "positions": [ - { - "rectangle": [ - 71.16, - 508.72, - 22.445427, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 215.28, - 508.72, - 36.525513, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 304.68, - 508.72, - 33.032623, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 390.72, - 508.72, - 36.04361, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 483.0, - 508.72, - 30.987427, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 71.16, - 494.2, - 66.08128, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 207.72, - 494.2, - 51.694946, - 10.518 - ], - "pageNumber": 287 - }, - { - "rectangle": [ - 291.6, - 494.2, - 36.677094, - 10.518 - ], - "pageNumber": 287 - } - ], - "textBefore": "", - "textAfter": ", USA New", - "startOffset": 654583, - "endOffset": 654663, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "249ffb36028ab0f85eee1a946d3f4f23", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1251 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1251]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 151 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917585, - "endOffset": 917593, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f7bd93aa4f4ba2b95747d059de01b956", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 330, - 10 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 10]: Paragraph:  Endpoints from Kirkpatrick", - "color": null, - "positions": [ - { - "rectangle": [ - 178.44, - 127.96004, - 50.73439, - 11.52 - ], - "pageNumber": 189 - } - ], - "textBefore": " Endpoints from ", - "textAfter": " 1994b: the formation", - "startOffset": 447018, - "endOffset": 447029, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "420cf5b9249b724464ba9dd97f706b82", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kiffe", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 1, - 0, - 8 - ], - "closestHeadline": "Table 7.1.2.2.1-2: Field dissipation studies with fludioxonil treated seeds (used as supplemental information) ", - "section": "[333, 1, 0, 8]: Table_cell: Kiffe, 1997 #", - "color": null, - "positions": [ - { - "rectangle": [ - 88.2, - 649.96, - 19.042007, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": ", 1997 #", - "startOffset": 458552, - "endOffset": 458557, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fad841d6a4d933aa9f90849b002f09ab", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Innovative Environmental Services (IES) Ltd, Benkenstrasse 260, 4108 Witterswil", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 205, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[205, 2, 0, 0, 1]: Paragraph: K-CA.7.1.1.3/02. Adam, D. (2015):", - "color": null, - "positions": [ - { - "rectangle": [ - 225.89188, - 603.76, - 286.34372, - 10.98 - ], - "pageNumber": 130 - }, - { - "rectangle": [ - 140.64, - 592.24, - 42.177124, - 10.98 - ], - "pageNumber": 130 - } - ], - "textBefore": "Number 20130117. . ", - "textAfter": ", Switzerland. (Syngenta", - "startOffset": 311595, - "endOffset": 311674, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cd0ade63b90c54e038f816f951935d44", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piersma A", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 353.39377, - 105.999985, - 41.90027, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "J, Mangelsdorf I, ", - "textAfter": ", Schilter B,", - "startOffset": 752163, - "endOffset": 752172, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6dcb70be19e4f6860b59ddc4a63c26b7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 416, - 2, - 10 - ], - "closestHeadline": "Materials ", - "section": "[416, 2, 10]: Table_cell: Sand (2000-60 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 92.04, - 672.28, - 18.029999, - 10.5 - ], - "pageNumber": 242 - } - ], - "textBefore": "", - "textAfter": " (2000-60 µm)", - "startOffset": 551626, - "endOffset": 551630, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "09cc19e7c1ae77717c9e813e788bc1ec", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "18 Acres and East Anglia", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 111, - 4 - ], - "closestHeadline": "Conclusions ", - "section": "[111, 4]: Paragraph:  The DegT50 values", - "color": null, - "positions": [ - { - "rectangle": [ - 219.69684, - 591.52, - 112.459015, - 11.52 - ], - "pageNumber": 84 - } - ], - "textBefore": "days in Gartenacker, ", - "textAfter": ", respectively.", - "startOffset": 190845, - "endOffset": 190869, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "257acd25111317a459535cf1d58ee74e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Baden-Württemberg", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 392, - 2, - 9 - ], - "closestHeadline": "Materials ", - "section": "[392, 2, 9]: Table_cell: Baden-Württemberg (GPS coordinates not", - "color": null, - "positions": [ - { - "rectangle": [ - 266.04, - 684.28, - 73.8779, - 10.5 - ], - "pageNumber": 233 - } - ], - "textBefore": "", - "textAfter": " (GPS coordinates not", - "startOffset": 534971, - "endOffset": 534988, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "eaa158216af0934592c1a1f30f24fab3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1346 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1346]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 246 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923095, - "endOffset": 923103, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84c13dcf9a4fcc2d4bb1ff823970c006", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1336 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1336]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 236 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922515, - "endOffset": 922523, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d11dc491a3b0a9695755ea7d0ef7dce4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 412, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[412, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 208.56, - 361.48, - 48.033783, - 10.98 - ], - "pageNumber": 240 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.2 ", - "textAfter": " (1993c). Field Soil", - "startOffset": 548360, - "endOffset": 548372, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b406d1204e9e6adaab090cc864fed4b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1435 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1435]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 335 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 928257, - "endOffset": 928265, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6f38ac92ae49c904de237c6452f59c13", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dr. Knoell Consult GmbH, Mannheim, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 308, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-10: Summary of modelling degradation rates of CGA192155 in aerobic soils ", - "section": "[308, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/03. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 403.14, - 540.76, - 108.63559, - 10.98 - ], - "pageNumber": 181 - }, - { - "rectangle": [ - 140.64, - 529.24, - 85.421814, - 10.98 - ], - "pageNumber": 181 - } - ], - "textBefore": "Report Number 103705-4. ", - "textAfter": ".", - "startOffset": 428349, - "endOffset": 428391, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a007b58d8aafbbbc1aec1d4f3930427f", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 274, - 1, - 8 - ], - "closestHeadline": "Materials ", - "section": "[274, 1, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 186.52002, - 27.592941, - 10.518 - ], - "pageNumber": 163 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 387388, - "endOffset": 387395, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "435eb7ff645f3020665347c081bf137f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1172 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1172]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 72 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913003, - "endOffset": 913011, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a215ae5d1283a5f374714f209708a251", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 562, - 1, - 0, - 15 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 1, 0, 15]: Table_cell: Kirkpatrick, 1994e", - "color": null, - "positions": [ - { - "rectangle": [ - 73.2, - 581.44, - 41.539986, - 10.5 - ], - "pageNumber": 307 - } - ], - "textBefore": "", - "textAfter": ", 1994e", - "startOffset": 700857, - "endOffset": 700868, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7ff39af53cfde8bb93f983b28cc0506b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 293, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-1: CGA265378 applied aerobic soil degradation laboratory study considered in this assessment ", - "section": "[293, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 153.12, - 501.16, - 35.46997, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 415979, - "endOffset": 415987, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "46967fc3ca59021e9b8f61c7985f6c25", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 346, - 1, - 0, - 27 - ], - "closestHeadline": "Table 7.1.2.2.1-9: Summary of trigger endpoint DT50 and DT90 values for fludioxonil ", - "section": "[346, 1, 0, 27]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 664.12, - 30.540985, - 10.5 - ], - "pageNumber": 202 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 480925, - "endOffset": 480933, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c6cd46e74bfc2f2dc95204bf66903107", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hand L", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 643, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[643, 2]: Paragraph: (Thomas K, Hand L,", - "color": null, - "positions": [ - { - "rectangle": [ - 474.6, - 187.96004, - 33.26544, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "(Thomas K, ", - "textAfter": ", 2011)", - "startOffset": 803879, - "endOffset": 803885, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0c97fab538128f2b37796f5a1e93687c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ellgehausen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 290, - 1, - 42 - ], - "closestHeadline": "Table 7.1.2.1.1-3: Summary of persistence endpoints for fludioxonil ", - "section": "[290, 1, 42]: Table_cell: Ellgehausen (1992a)", - "color": null, - "positions": [ - { - "rectangle": [ - 87.6, - 593.68, - 44.041985, - 10.5 - ], - "pageNumber": 173 - } - ], - "textBefore": "", - "textAfter": " (1992a)", - "startOffset": 410013, - "endOffset": 410024, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f0e449fec9f3ec07c4f8ae266edd3021", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burton S, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 515, - 4 - ], - "closestHeadline": "Conclusions ", - "section": "[515, 4]: Paragraph: (Burton S, D., 1996)", - "color": null, - "positions": [ - { - "rectangle": [ - 451.98532, - 77.32002, - 55.697205, - 11.52 - ], - "pageNumber": 284 - } - ], - "textBefore": "(", - "textAfter": ", 1996)", - "startOffset": 649017, - "endOffset": 649029, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e38fc7caff22f7919b6edae242b9f314", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Huntingdon Research Centre", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 264, - 4 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[264, 4]: Paragraph: The DegT50 values for", - "color": null, - "positions": [ - { - "rectangle": [ - 275.6663, - 629.8, - 127.78833, - 11.52 - ], - "pageNumber": 159 - } - ], - "textBefore": "KIN v5.1 (", - "textAfter": "), was used", - "startOffset": 381228, - "endOffset": 381254, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9f03303ee862746da8c00b9eb9086e9f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sand", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 19, - 2, - 0, - 24 - ], - "closestHeadline": "Materials ", - "section": "[19, 2, 0, 24]: Table_cell: Sand (2000-50 µm)", - "color": null, - "positions": [ - { - "rectangle": [ - 94.08, - 356.56, - 18.10212, - 10.518 - ], - "pageNumber": 19 - } - ], - "textBefore": "", - "textAfter": " (2000-50 µm)", - "startOffset": 46324, - "endOffset": 46328, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d2e7ac17ba301063962900ba1bb8c7b", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "12852, Park One Drive, Sugar Land, Texas, USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 488, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-2: KFOC and 1/n (Freundlich exponent) adsorption values of CGA265378 in different soils ", - "section": "[488, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 473.39893, - 475.84, - 27.565063, - 10.98 - ], - "pageNumber": 271 - }, - { - "rectangle": [ - 140.64, - 464.32, - 167.47603, - 10.98 - ], - "pageNumber": 271 - } - ], - "textBefore": "2481-95. STILLMEADOW Inc., ", - "textAfter": ".", - "startOffset": 616509, - "endOffset": 616554, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f75f7c68195ce2fe29a93776f1ef0a54", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Abildt", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0]: Table: #cols: 7, #rows: 22, Reference Soil name Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 643.48, - 23.033997, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (1991)", - "startOffset": 411361, - "endOffset": 411367, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2dd488ece3c4773d15376fdcd1a68a27", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 488, - 3, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-2: KFOC and 1/n (Freundlich exponent) adsorption values of CGA265378 in different soils ", - "section": "[488, 3, 0, 0, 2]: Paragraph: (Syngenta file No. CGA265378/003)", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 449.8, - 36.646317, - 10.98 - ], - "pageNumber": 271 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA265378/003)", - "startOffset": 616557, - "endOffset": 616565, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f6288f21014d8fc4ca1f432a9958987", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1377 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1377]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 277 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924893, - "endOffset": 924901, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "16b83454ab78357f5435a29b929408f4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 269, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[269, 1, 3]: Paragraph: (Kirkpatrick, D., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 440.70532, - 466.6, - 66.99118, - 11.52 - ], - "pageNumber": 161 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 385090, - "endOffset": 385105, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3932caa14456615e76de7e935d84b555", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1174 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1174]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 74 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 913119, - "endOffset": 913127, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8c40396d8d163d63d03af3ad6523f89b", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "12852, Park One Drive, Sugar Land, Texas, USA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 502, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.3.1.2-48: KFOC and 1/n (Freundlich exponent) adsorption values of CGA339833 in different soils ", - "section": "[502, 3, 0, 0, 1]: Paragraph: K-IIA 7.1.2. Burton S.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 391.96, - 197.61412, - 10.98 - ], - "pageNumber": 277 - } - ], - "textBefore": "2694-96. STILLMEADOW Inc., ", - "textAfter": ". (Syngenta file", - "startOffset": 628987, - "endOffset": 629032, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "db498b4c7e7ff44efd7d9283ac8e7d1e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1211 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1211]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 111 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915265, - "endOffset": 915273, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3f8e5e775d1e75efeffffd432d49f703", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 32 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 32]: Table_cell: Reichert (1993b)", - "color": null, - "positions": [ - { - "rectangle": [ - 341.64, - 330.64, - 30.527039, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1993b)", - "startOffset": 476232, - "endOffset": 476240, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b963365c613062f6503d40d919d59796", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1386 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1386]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 286 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925415, - "endOffset": 925423, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7211b4d57ba983466606a15f2d72ec9d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ulbrich. R", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 165, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[165, 3]: Paragraph: (Ulbrich. R, 1998)", - "color": null, - "positions": [ - { - "rectangle": [ - 461.22232, - 307.72, - 46.484894, - 11.52 - ], - "pageNumber": 112 - } - ], - "textBefore": "(", - "textAfter": ", 1998)", - "startOffset": 260329, - "endOffset": 260339, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "441edcbd6b729efbd9471333413ed0f0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1118 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1118]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 18 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909871, - "endOffset": 909879, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "47dcb99d5626100e556d4fd17e573cde", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 1, - 0, - 33 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 1, 0, 33]: Table_cell: Reichert (1993b)", - "color": null, - "positions": [ - { - "rectangle": [ - 401.04, - 334.6, - 30.527039, - 10.5 - ], - "pageNumber": 214 - } - ], - "textBefore": "", - "textAfter": " (1993b)", - "startOffset": 499365, - "endOffset": 499373, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e724129f40902988fdadcb6609f9272c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 18 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 18]: Paragraph: Syngenta agrees with the", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 215.32002, - 40.985863, - 11.52 - ], - "pageNumber": 190 - } - ], - "textBefore": "", - "textAfter": " agrees with the", - "startOffset": 448948, - "endOffset": 448956, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f62e29f0c9d54fddc791accde29a1175", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 3, - 0, - 20 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 3, 0, 20]: Table_cell: Reichert (1993c)", - "color": null, - "positions": [ - { - "rectangle": [ - 470.4, - 645.64, - 30.540985, - 10.5 - ], - "pageNumber": 196 - } - ], - "textBefore": "", - "textAfter": " (1993c)", - "startOffset": 462996, - "endOffset": 463004, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "559d95428a01369683e76a043ad32260", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1477 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1477]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 377 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930693, - "endOffset": 930701, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2306fbb59ce3f71fae267c67347f25cb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ford, S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 341, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[341, 2, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/02. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.51399, - 739.84, - 31.871185, - 10.98 - ], - "pageNumber": 200 - } - ], - "textBefore": "K-CA 7.1.2.2.1/02. ", - "textAfter": " (2016): Fludioxonil –", - "startOffset": 474671, - "endOffset": 474679, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9383a2ac3df1e8dd97c044dec57e4182", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 205, - 2, - 0, - 0, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[205, 2, 0, 0, 1]: Paragraph: K-CA.7.1.1.3/02. Adam, D. (2015):", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 577.72, - 37.05066, - 10.98 - ], - "pageNumber": 130 - } - ], - "textBefore": "Witterswil, Switzerland. (", - "textAfter": " File No. CGA173506_11806).", - "startOffset": 311690, - "endOffset": 311698, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4e9ba7bb7a93f954d55bcd39dfb35bf9", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 116, - 10 - ], - "closestHeadline": "Materials ", - "section": "[116, 10]: Paragraph: Purity: 97.1 %", - "color": null, - "positions": [ - { - "rectangle": [ - 76.2, - 130.96002, - 24.465012, - 10.5 - ], - "pageNumber": 86 - } - ], - "textBefore": "", - "textAfter": " 97.1 %", - "startOffset": 198546, - "endOffset": 198553, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "02eedc4983f596a8c7062959f5088e52", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 14 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 14]: Paragraph: Syngenta response:", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 593.8, - 40.978874, - 11.52 - ], - "pageNumber": 190 - } - ], - "textBefore": "", - "textAfter": " response:", - "startOffset": 447716, - "endOffset": 447724, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e5cddde511570e1ebe3093eae21c2a9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1105 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1105]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 5 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909117, - "endOffset": 909125, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2a2fc16e389368bb7df4e39bc13b696d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkpatrick D.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 254.32867, - 202.59996, - 58.304688, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "Hawkins D. R., ", - "textAfter": ", Shaw D.", - "startOffset": 592491, - "endOffset": 592505, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b964f7df03e5991982bbf3a97cfd4c6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 320, - 3, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.1.2-16: Summary of modelling endpoints ", - "section": "[320, 3, 0, 0, 2]: Paragraph: (Syngenta File No. CGA173506_11894)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.16122, - 702.16, - 37.188843, - 10.99992 - ], - "pageNumber": 185 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA173506_11894)", - "startOffset": 438051, - "endOffset": 438059, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cde558ecd3abc4252780610bdfa42f79", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tummon", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 8 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 8]: Paragraph: Soil residue accumulation studies", - "color": null, - "positions": [ - { - "rectangle": [ - 393.36, - 71.8, - 41.620148, - 11.52 - ], - "pageNumber": 191 - } - ], - "textBefore": "ten years (", - "textAfter": ", 2004a; 2004b).", - "startOffset": 453520, - "endOffset": 453526, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4b997973f270c96d83c9f97ceac78ec3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1191 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1191]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 91 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914105, - "endOffset": 914113, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b221fd1a71cf0fb286143d41969ad1d3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1166 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1166]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 66 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912655, - "endOffset": 912663, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2afdbf4d6efe7d1f9fad836b1a697d81", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Minet, U.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 48, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-31: DegT50 and DegT90 values for CGA173506 ", - "section": "[48, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.1.1.1. Minet, U.", - "color": null, - "positions": [ - { - "rectangle": [ - 205.95656, - 189.64, - 38.033783, - 10.98 - ], - "pageNumber": 39 - } - ], - "textBefore": "K-IIA 7.1.1.1.1. ", - "textAfter": " (1994a), Degradation and", - "startOffset": 89883, - "endOffset": 89892, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bf97091fd7139993f941d5ba9e2f1bd2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 4, - 0, - 4 - ], - "closestHeadline": "CA 7.1.2 Rate of Degradation in Soil ", - "section": "[282, 4, 0, 4]: Table_cell: Syngenta report", - "color": null, - "positions": [ - { - "rectangle": [ - 380.4, - 741.28, - 35.46292, - 10.5 - ], - "pageNumber": 169 - } - ], - "textBefore": "", - "textAfter": " report", - "startOffset": 400145, - "endOffset": 400153, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d466e55e1349c1e0a174b9c0694fca06", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1381 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1381]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 281 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925125, - "endOffset": 925133, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9548773aae16f8a5008f5809bd555702", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1479 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1479]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 379 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 930809, - "endOffset": 930817, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "576269a2fe0cb134c3f10a33ccfd345e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ulbrich, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 152, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.1.1-1880: CGA192155 applied aerobic soil degradation laboratory study ", - "section": "[152, 3, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.1. Ulbrich,", - "color": null, - "positions": [ - { - "rectangle": [ - 206.012, - 677.2, - 44.701126, - 10.98 - ], - "pageNumber": 106 - } - ], - "textBefore": "Report: K-IIA 7.1.1.2.1. ", - "textAfter": " (1998), Rate of", - "startOffset": 245515, - "endOffset": 245526, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d82cc215090512ef5fe244c0281d2276", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "T. Mill", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 590, - 2, - 2 - ], - "closestHeadline": "Table 7.2.1.2-17: DT50 and DT90 Values of CGA173506 obtained by linear regression using the SFO Model ", - "section": "[590, 2, 2]: Paragraph: The quantum yield represents", - "color": null, - "positions": [ - { - "rectangle": [ - 447.78174, - 274.84, - 31.167358, - 11.52 - ], - "pageNumber": 322 - } - ], - "textBefore": "“Dulin, D. and ", - "textAfter": ". 1982. Development", - "startOffset": 742234, - "endOffset": 742241, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40fccd837fd8f1b728c0c869b85a2bc9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1461 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1461]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 361 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929765, - "endOffset": 929773, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87ff4f773a6865def01ceb70c0fc7789", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 30 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 30]: Table_cell: Walser, 1999b *", - "color": null, - "positions": [ - { - "rectangle": [ - 75.36, - 565.36, - 25.493004, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 1999b *", - "startOffset": 589311, - "endOffset": 589317, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4af540d1d1dc32c39b070c6a2b91c306", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 506, - 1, - 1 - ], - "closestHeadline": "Materials ", - "section": "[506, 1, 1]: Paragraph: * denotes position of", - "color": null, - "positions": [ - { - "rectangle": [ - 127.68972, - 199.71997, - 24.074913, - 10.518 - ], - "pageNumber": 278 - } - ], - "textBefore": "41.7 µCi/mg Radiochemical ", - "textAfter": " 94.6 % (determined", - "startOffset": 632842, - "endOffset": 632849, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "eeea814a41dc393b1cd816667bbced23", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1169 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1169]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 69 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 912829, - "endOffset": 912837, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a753db8657d4303d70ce5e8725317bea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1281 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1281]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 181 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 919325, - "endOffset": 919333, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2a3b16677a4afaa56efbbbabf880c280", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "conducted at", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 28, - 3, - 0 - ], - "closestHeadline": "Materials ", - "section": "[28, 3, 0]: Paragraph: 1 – – method", - "color": null, - "positions": [ - { - "rectangle": [ - 427.61765, - 138.16003, - 45.909943, - 10.518 - ], - "pageNumber": 27 - } - ], - "textBefore": "was was conducted ", - "textAfter": " at the the", - "startOffset": 66634, - "endOffset": 66646, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dd118e5021bac912cbbe088ed51ef5de", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 356, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[356, 1]: Table: #cols: 5, #rows: 13, Study reference - Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 388.8, - 721.84, - 35.967957, - 10.5 - ], - "pageNumber": 212 - } - ], - "textBefore": "", - "textAfter": " (2004) – Vouvry,", - "startOffset": 494701, - "endOffset": 494708, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "751c1965ab2dd3bf0d3fb897e2d7bba7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chan S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 475, - 3, - 0, - 0, - 0 - ], - "closestHeadline": "Table 7.1.3.1.1-2: KFOC and 1/n (Freundlich exponent) adsorption values of fludioxonil in different soils ", - "section": "[475, 3, 0, 0, 0]: Paragraph: K-IIA 7.1.2. Hawkins D.", - "color": null, - "positions": [ - { - "rectangle": [ - 371.52792, - 202.59996, - 31.639343, - 10.98 - ], - "pageNumber": 262 - } - ], - "textBefore": "Shaw D. and ", - "textAfter": " C. (1991). Adsorption/Desorption", - "startOffset": 592519, - "endOffset": 592526, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a5ac34b05e4eae2486663c43a2361d7f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 3, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 3, 0, 0, 2]: Paragraph: (Syngenta File No. CGA173506_11900)", - "color": null, - "positions": [ - { - "rectangle": [ - 144.02768, - 702.28, - 37.040665, - 10.98 - ], - "pageNumber": 172 - } - ], - "textBefore": "(", - "textAfter": " File No. CGA173506_11900)", - "startOffset": 406726, - "endOffset": 406734, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f05c8469d787b55078812fe111060845", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 332, - 1, - 0, - 24 - ], - "closestHeadline": "Table 7.1.2.2.1-1: Broadcast fludioxonil applied field dissipation studies and evaluation reports ", - "section": "[332, 1, 0, 24]: Table_cell: Reichert, 1994a", - "color": null, - "positions": [ - { - "rectangle": [ - 83.28, - 526.36, - 30.576012, - 10.5 - ], - "pageNumber": 193 - } - ], - "textBefore": "", - "textAfter": ", 1994a", - "startOffset": 457579, - "endOffset": 457587, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fb759737034c034df2fe7a60c1688714", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1150 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1150]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 50 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911727, - "endOffset": 911735, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e25a25f031bf3c9e1adfeaf9522f1a17", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 301, - 1, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-6: Summary of modelling degradation rates of CGA339833 in aerobic soils ", - "section": "[301, 1, 0, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 99.6, - 268.47998, - 35.47001, - 10.5 - ], - "pageNumber": 178 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 421962, - "endOffset": 421970, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d8c1989d956817b26f1d13443f714852", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1301 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1301]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 201 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920485, - "endOffset": 920493, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "950e36683b8a9427593bb6c4f26d2459", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 25 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 25]: Table_cell: Reichert (1993a)", - "color": null, - "positions": [ - { - "rectangle": [ - 341.88, - 355.84, - 30.540985, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1993a)", - "startOffset": 476150, - "endOffset": 476158, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "35bbab8de94f8272b3b7681f0f06ff1b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 19, - 1, - 2 - ], - "closestHeadline": "Materials ", - "section": "[19, 1, 2]: Paragraph: Lot/Batch #: Le-84.2A Specific", - "color": null, - "positions": [ - { - "rectangle": [ - 72.48, - 570.64, - 24.562866, - 10.518 - ], - "pageNumber": 19 - } - ], - "textBefore": "MBq/mg (54.59 µCi/mg) ", - "textAfter": " 98.3 % Stability", - "startOffset": 45409, - "endOffset": 45416, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c68e3177735d3b4891e5ae95359d27f0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schaefer", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 0, - 3 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 0, 3]: Table_cell: Matthews and Schaefer, 2016", - "color": null, - "positions": [ - { - "rectangle": [ - 144.72699, - 652.24, - 31.446976, - 10.5 - ], - "pageNumber": 326 - } - ], - "textBefore": "Matthews and ", - "textAfter": ", 2016", - "startOffset": 752755, - "endOffset": 752763, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "de8a2a3122cae91b0f8fd4d85f85d9ca", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick, D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 3]: Paragraph: (Kirkpatrick, D., 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 440.70532, - 185.08003, - 66.99118, - 11.52 - ], - "pageNumber": 153 - } - ], - "textBefore": "(", - "textAfter": ", 1994)", - "startOffset": 367969, - "endOffset": 367984, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e1ed835b720be40fe66c7836b3809063", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 596, - 4 - ], - "closestHeadline": "CA 7.2.2 Route and rate of biological degradation in aquatic systems ", - "section": "[596, 4]: Paragraph: The previously submitted water/sediment", - "color": null, - "positions": [ - { - "rectangle": [ - 501.96, - 175.24, - 26.911774, - 11.52 - ], - "pageNumber": 323 - } - ], - "textBefore": "submitted study of ", - "textAfter": " (2004) provided information", - "startOffset": 745195, - "endOffset": 745199, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e3858b30f6abe4b13742941fa7420c26", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Adam", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 698, - 0 - ], - "closestHeadline": "Table 7.2.2.4-6: Summary of modelling endpoints, Adam (2004), light exposed ", - "section": "[698, 0]: Headline: Table 7.2.2.4-6: Summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 312.12, - 616.6, - 27.611206, - 10.98 - ], - "pageNumber": 373 - } - ], - "textBefore": "of modelling endpoints, ", - "textAfter": " (2004), light exposed", - "startOffset": 862556, - "endOffset": 862560, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5c771737ff725f57158d324224bd3bf", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 171, - 1, - 6 - ], - "closestHeadline": "Test Material: SYN545245 ", - "section": "[171, 1, 6]: Paragraph: Description: White solid Lot/Batch", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 451.48, - 24.465004, - 10.5 - ], - "pageNumber": 114 - } - ], - "textBefore": "#: MES 427/1 ", - "textAfter": " 98% Application vehicle:", - "startOffset": 264268, - "endOffset": 264275, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e3dacca7e60a4fc8c0004a4393b7e28", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tribolet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 15 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 15]: Table_cell: Tribolet, 2001a", - "color": null, - "positions": [ - { - "rectangle": [ - 77.28, - 639.64, - 29.047005, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": ", 2001a", - "startOffset": 588824, - "endOffset": 588832, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "19d51ff843ef4a8cc5ca56ca14c27b54", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 700, - 1, - 2 - ], - "closestHeadline": "Table 7.2.2.4-7: Supplementary studies on biological degradation in aquatic systems ", - "section": "[700, 1, 2]: Table_cell: Syngenta Report Reference", - "color": null, - "positions": [ - { - "rectangle": [ - 431.04, - 166.12, - 35.490997, - 10.5 - ], - "pageNumber": 373 - } - ], - "textBefore": "", - "textAfter": " Report Reference", - "startOffset": 864780, - "endOffset": 864788, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87535fcb8b02b9f3abb5a68733545dd2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1246 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1246]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 146 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 917295, - "endOffset": 917303, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5e4cb9340cf22ea6ed2d1e14f45c2cf", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ford, S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 357, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-10: Trigger endpoints for fludioxonil – field studies ", - "section": "[357, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.2.1/03. Ford, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 220.27399, - 739.84, - 31.871185, - 10.98 - ], - "pageNumber": 214 - } - ], - "textBefore": "K-CA 7.1.2.2.1/03. ", - "textAfter": " (2016a): Fludioxonil –", - "startOffset": 497701, - "endOffset": 497709, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d47c7cd1f31f84e3b44b2faf9279cca9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wijntjes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 294, - 1, - 0, - 18 - ], - "closestHeadline": "Table 7.1.2.1.2-2: Summary of modelling degradation rates of GGA265378 in aerobic soils ", - "section": "[294, 1, 0, 18]: Table_cell: Adam and Wijntjes, 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 125.207985, - 358.36, - 30.528984, - 10.5 - ], - "pageNumber": 176 - } - ], - "textBefore": "Adam and ", - "textAfter": ", 2015", - "startOffset": 416529, - "endOffset": 416537, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "49e9b5bb71d4b34f2ef23c822bc2bf8d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 292, - 1 - ], - "closestHeadline": "CGA265378 ", - "section": "[292, 1]: Paragraph: The degradation rate of", - "color": null, - "positions": [ - { - "rectangle": [ - 407.76, - 656.2, - 36.207092, - 11.52 - ], - "pageNumber": 176 - } - ], - "textBefore": "was performed by ", - "textAfter": " (2015a). The study", - "startOffset": 415250, - "endOffset": 415257, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "841a9ce4f4d6aa9432896f93978ba658", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 281, - 7 - ], - "closestHeadline": "Conclusions ", - "section": "[281, 7]: Paragraph: ANSES (Dec. 2016). Yes,", - "color": null, - "positions": [ - { - "rectangle": [ - 257.17767, - 742.36, - 50.744324, - 11.52 - ], - "pageNumber": 167 - } - ], - "textBefore": "Yes, ANSES meant ", - "textAfter": " 1994c (519), Table", - "startOffset": 393694, - "endOffset": 393705, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4e9101ecf21c7598ba93d70d76a425af", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 485, - 6 - ], - "closestHeadline": "Conclusions ", - "section": "[485, 6]: Paragraph: Syngenta asked the following", - "color": null, - "positions": [ - { - "rectangle": [ - 462.74222, - 106.59999, - 40.98587, - 11.52 - ], - "pageNumber": 269 - } - ], - "textBefore": "clarify this comment? ", - "textAfter": " does not believe", - "startOffset": 612965, - "endOffset": 612973, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a489f27574b1cd3de31e52a436f75313", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Van der Gaauw", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 560, - 1, - 8 - ], - "closestHeadline": "Table 7.2.1.1-1: Hydrolytic degradation studies ", - "section": "[560, 1, 8]: Table_cell: Van der Gaauw, 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 85.8, - 431.44, - 56.53499, - 10.5 - ], - "pageNumber": 306 - } - ], - "textBefore": "", - "textAfter": ", 2002", - "startOffset": 697866, - "endOffset": 697879, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "38fd822107b83b3b3feeef6aa8079f0b", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1452 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1452]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 352 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929243, - "endOffset": 929251, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "694757af783a99d22f9258b8dd778814", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 3 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642, 3]: Paragraph: The HPLC analysis of", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 641.08, - 23.246407, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "in macrophyte and ", - "textAfter": " systems, respectively", - "startOffset": 802936, - "endOffset": 802941, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c0334abd018b21cf0f5e4fbf44250876", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1208 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1208]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 108 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 915091, - "endOffset": 915099, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "491cd8d12e1b89960c31300aee902bba", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walker", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 2, - 5 - ], - "closestHeadline": "Table 7.1.2.2.1-11: Details of field dissipation studies for fludioxonil used to calculate modelling endpoints ", - "section": "[360, 2, 5]: Paragraph: Timestep normalisation of the", - "color": null, - "positions": [ - { - "rectangle": [ - 150.4519, - 541.96, - 32.4207, - 11.52 - ], - "pageNumber": 215 - } - ], - "textBefore": "PERSIST model (", - "textAfter": " & Barnes, 1981),", - "startOffset": 502106, - "endOffset": 502112, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "147bc6e9ccaee91d3479210467b4653d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 70, - 3, - 0, - 0, - 2 - ], - "closestHeadline": "Table 7.1.1.1-43: DegT50 and DegT90 values for CGA173506 ", - "section": "[70, 3, 0, 0, 2]: Paragraph: (Syngenta file No. CGA173506/0462).", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97568, - 702.28, - 36.646317, - 10.98 - ], - "pageNumber": 55 - } - ], - "textBefore": "(", - "textAfter": " file No. CGA173506/0462).", - "startOffset": 121983, - "endOffset": 121991, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c1772b5a6535c2d5872d12424f41796c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ellgehausen, H.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 36, - 1, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[36, 1, 3]: Paragraph: (Ellgehausen, H., 1992)", - "color": null, - "positions": [ - { - "rectangle": [ - 437.70233, - 470.2, - 70.01843, - 11.52 - ], - "pageNumber": 32 - } - ], - "textBefore": "(", - "textAfter": ", 1992)", - "startOffset": 76432, - "endOffset": 76447, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "72648f27d3d2fe6a6438bc5115cbcbb2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1239 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1239]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 139 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916889, - "endOffset": 916897, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b5d07453bf75b5f070ee556d9a10210d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1205 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1205]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 105 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 914917, - "endOffset": 914925, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7e0ab85346ec9061741845444ee2ac3a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 331, - 4 - ], - "closestHeadline": "CA 7.1.2.2 Field Studies ", - "section": "[331, 4]: Paragraph: An additional field dissipation", - "color": null, - "positions": [ - { - "rectangle": [ - 237.48, - 423.4, - 41.640335, - 11.52 - ], - "pageNumber": 191 - } - ], - "textBefore": "dissipation study (", - "textAfter": ", 2004) provided", - "startOffset": 451205, - "endOffset": 451212, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3983b7311be52d493e868803f94d289c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert, N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 448, - 1, - 1 - ], - "closestHeadline": "Conclusions ", - "section": "[448, 1, 1]: Paragraph: (Reichert, N. 1994)", - "color": null, - "positions": [ - { - "rectangle": [ - 456.9053, - 254.32002, - 53.533325, - 11.52 - ], - "pageNumber": 252 - } - ], - "textBefore": "(", - "textAfter": " 1994)", - "startOffset": 572099, - "endOffset": 572111, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "26492fe72819f5d649d95c31646dc07e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 472, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.2.2.2-1: Fludioxonil applied soil accumulation studies ", - "section": "[472, 1, 0, 12]: Table_cell: Mair, 1998", - "color": null, - "positions": [ - { - "rectangle": [ - 85.08, - 654.52, - 19.753998, - 10.5 - ], - "pageNumber": 261 - } - ], - "textBefore": "", - "textAfter": " 1998", - "startOffset": 588746, - "endOffset": 588751, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "674e9127399b9a2786ec2c441f124500", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1151 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1151]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 51 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911785, - "endOffset": 911793, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "408f4503e608026e3f0c92be505a66d4", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 522, - 1, - 4 - ], - "closestHeadline": "Test Material: Carboxyl14C-CGA192155 ", - "section": "[522, 1, 4]: Paragraph: Radiochemical purity: 98.3 %", - "color": null, - "positions": [ - { - "rectangle": [ - 127.569725, - 582.04, - 24.074913, - 10.518 - ], - "pageNumber": 287 - } - ], - "textBefore": "Radiochemical ", - "textAfter": " 98.3 %", - "startOffset": 654343, - "endOffset": 654350, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb75a05cd5c3af14d81d1430467e198a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1240 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1240]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 140 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 916947, - "endOffset": 916955, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "46d54a4ce6aabe980db2a8382f3b5644", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1393 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1393]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 293 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925821, - "endOffset": 925829, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ccdbad4f61ea264a6a629b5e4358aa21", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mair", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 20 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 20]: Table_cell: Mair (1995)", - "color": null, - "positions": [ - { - "rectangle": [ - 482.16, - 684.16, - 17.547028, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1995)", - "startOffset": 460552, - "endOffset": 460556, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "44b69b0a91ef20a8fbf136eb8b0db994", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ford", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 4, - 8 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 4, 8]: Paragraph: - The reports cite", - "color": null, - "positions": [ - { - "rectangle": [ - 398.78867, - 145.24, - 20.80954, - 11.52 - ], - "pageNumber": 196 - } - ], - "textBefore": "the data (", - "textAfter": " 2016a and 2016b)", - "startOffset": 465272, - "endOffset": 465276, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "88a7b8a7dc6883e668b24bd173809907", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 1, - 0, - 60 - ], - "closestHeadline": "Table 7.1.2.2.1-8: Details of field dissipation studies for fludioxonil used to calculate trigger endpoints ", - "section": "[344, 1, 0, 60]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 341.88, - 229.83997, - 30.540985, - 10.5 - ], - "pageNumber": 200 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 476592, - "endOffset": 476600, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b9159fa4a7135f6065a20963aebee9cf", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "T. Mill", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 573, - 7 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[573, 7]: Paragraph: Quantum yield represents the", - "color": null, - "positions": [ - { - "rectangle": [ - 231.136, - 541.96, - 29.965927, - 11.52 - ], - "pageNumber": 312 - } - ], - "textBefore": "“Dulin, D. and ", - "textAfter": ". 1982. Development", - "startOffset": 715815, - "endOffset": 715822, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "94f61e6148009eeb4f1deeea8ddc6260", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ricerca Biosciences", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 562, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.2.1.2-1: Direct photolysis studies ", - "section": "[562, 3, 0, 0, 1]: Paragraph: K-CA 7.2.1.2/01 Miner, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 192.285, - 340.96, - 80.756744, - 10.98 - ], - "pageNumber": 307 - } - ], - "textBefore": "Report Number 023916-1-1. ", - "textAfter": ", LLC Environmental", - "startOffset": 701784, - "endOffset": 701803, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c10624e0604c7c4bed88c113d7317c45", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1305 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1305]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 205 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920717, - "endOffset": 920725, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8b7409afd9d5ac486cd03dec383e72b3", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dr. Knoell Consult GmbH, Mannheim, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.1-2: Modelling degradation rates of Fludioxonil in aerobic soils ", - "section": "[287, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.1/01. Sachers, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 403.14, - 728.32, - 108.63559, - 10.98 - ], - "pageNumber": 172 - }, - { - "rectangle": [ - 140.64, - 716.8, - 85.421814, - 10.98 - ], - "pageNumber": 172 - } - ], - "textBefore": "Report Number 103705-1. ", - "textAfter": ".", - "startOffset": 406681, - "endOffset": 406723, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac692b8492a1944c4189eb7721c5e7cf", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1154 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1154]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 54 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 911959, - "endOffset": 911967, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1f31883ed75692750f3a7d1f55493b31", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1323 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1323]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 223 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 921761, - "endOffset": 921769, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ce1f2ea3d02da3c39cc12dc6c1db396a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 460, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[460, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Mair", - "color": null, - "positions": [ - { - "rectangle": [ - 143.97968, - 154.23997, - 36.674377, - 10.98 - ], - "pageNumber": 256 - } - ], - "textBefore": "Basle, Switzerland. (", - "textAfter": " File No. CGA173506/0633)", - "startOffset": 579987, - "endOffset": 579995, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "abbd09316450963dc5ed0a6581a35cf7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schaefer, E. C.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 2, - 1, - 0, - 1 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 2, 1, 0, 1]: Paragraph: K-CA 7.2.2.2/01. Matthews, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 299.21448, - 616.36, - 60.14496, - 10.98 - ], - "pageNumber": 326 - } - ], - "textBefore": "M. E. and ", - "textAfter": " (2016): Fludioxonil –", - "startOffset": 752860, - "endOffset": 752875, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f692fe043f51bfd8cc173c1f2233cb1b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 1, - 0, - 12 - ], - "closestHeadline": "Table 7.1.2.2.1-2: Field dissipation studies with fludioxonil treated seeds (used as supplemental information) ", - "section": "[333, 1, 0, 12]: Table_cell: Walser, 1999a §", - "color": null, - "positions": [ - { - "rectangle": [ - 82.92, - 612.4, - 25.523003, - 10.5 - ], - "pageNumber": 194 - } - ], - "textBefore": "", - "textAfter": ", 1999a §", - "startOffset": 458699, - "endOffset": 458705, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3ecbc85f042958f7ed14eaa7ecfbae46", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1340 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1340]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 240 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922747, - "endOffset": 922755, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3287ab64da50aabf2b6143dc664ba4c9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 251, - 1, - 11 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 11]: Paragraph: ROI 8 does not", - "color": null, - "positions": [ - { - "rectangle": [ - 421.56, - 485.32, - 28.15921, - 11.52 - ], - "pageNumber": 154 - } - ], - "textBefore": "the metabolites (", - "textAfter": ", 2016). The", - "startOffset": 369589, - "endOffset": 369594, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f3b43c8f3a423a0f25d10a99228c5df2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1306 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1306]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 206 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 920775, - "endOffset": 920783, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "76580656a8ca527807ca9669750808d3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill Research Station, Bracknell", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 320, - 3, - 0, - 0, - 1 - ], - "closestHeadline": "Table 7.1.2.1.2-16: Summary of modelling endpoints ", - "section": "[320, 3, 0, 0, 1]: Paragraph: K-CA 7.1.2.1.2/0405. Hayes, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 140.76, - 716.68, - 165.83354, - 10.99992 - ], - "pageNumber": 185 - } - ], - "textBefore": "SYN545245). Syngenta Ltd., ", - "textAfter": ", United Kingdom.", - "startOffset": 437990, - "endOffset": 438032, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "15427f48eceb4889bd20442ad41c9dc9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Roßdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 424, - 2, - 0, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[424, 2, 0, 0]: Table_cell: Report: K-IIA 7.1.1.2.2 Reichert,", - "color": null, - "positions": [ - { - "rectangle": [ - 140.64, - 288.52, - 32.804855, - 10.98 - ], - "pageNumber": 244 - } - ], - "textBefore": "& Co.KG, D-64380, ", - "textAfter": ", Germany. (Syngenta", - "startOffset": 556438, - "endOffset": 556445, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7eea49860c80dc9059891b1ba24e52d5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Les Barges", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 117, - 1, - 0, - 6 - ], - "closestHeadline": "Soil information: ", - "section": "[117, 1, 0, 6]: Table_cell: Vouvry, Les Barges, Switzerland", - "color": null, - "positions": [ - { - "rectangle": [ - 357.403, - 697.36, - 40.203033, - 10.5 - ], - "pageNumber": 87 - } - ], - "textBefore": "Vouvry, ", - "textAfter": ", Switzerland (46º19", - "startOffset": 198822, - "endOffset": 198832, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dc75b4dfa3a33c852c2ea2f538eab75e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1331 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1331]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 231 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 922225, - "endOffset": 922233, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "79c84aed3d928d241245d05d1f72b7c2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schlatter J", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 600, - 1, - 4 - ], - "closestHeadline": "CA 7.2.2.2 Aerobic mineralisation in surface water ", - "section": "[600, 1, 4]: Paragraph: 11 Kroes R, Renwick", - "color": null, - "positions": [ - { - "rectangle": [ - 445.61298, - 105.999985, - 41.93225, - 10.98 - ], - "pageNumber": 325 - } - ], - "textBefore": "A, Schilter B, ", - "textAfter": ", van Schothorst", - "startOffset": 752186, - "endOffset": 752197, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f62f370c9d26f30a13a62723d9b86fb9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 12 - ], - "closestHeadline": "Conclusion ", - "section": "[330, 12]: Paragraph: Syngenta asked the following", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 693.64, - 40.992867, - 11.52 - ], - "pageNumber": 190 - } - ], - "textBefore": "", - "textAfter": " asked the following", - "startOffset": 447353, - "endOffset": 447361, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "27b5f2cedd662b469785485acaab820a", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 236, - 1, - 8 - ], - "closestHeadline": "Materials ", - "section": "[236, 1, 8]: Table_cell: Purity:", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 468.4, - 27.592941, - 10.518 - ], - "pageNumber": 147 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 353634, - "endOffset": 353641, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f26b517cf25b4ee6d07319443aa64b28", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1, - 0 - ], - "closestHeadline": "Table 7.1.2.1.1-4: Summary of modelling endpoints for fludioxonil ", - "section": "[291, 1, 0]: Table: #cols: 7, #rows: 22, Reference Soil name Soil", - "color": null, - "positions": [ - { - "rectangle": [ - 76.32, - 278.07996, - 33.571014, - 10.5 - ], - "pageNumber": 174 - } - ], - "textBefore": "", - "textAfter": " (2015)", - "startOffset": 412304, - "endOffset": 412313, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "023e805484888896436c092b514d1ba6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Miner", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 561, - 3 - ], - "closestHeadline": "CA 7.2.1.2 Direct photochemical degradation ", - "section": "[561, 3]: Paragraph: In the new study", - "color": null, - "positions": [ - { - "rectangle": [ - 207.48, - 97.36, - 28.186234, - 11.52 - ], - "pageNumber": 306 - } - ], - "textBefore": "used whilst the ", - "textAfter": " (2013) study was", - "startOffset": 699801, - "endOffset": 699806, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "15d9f6ec377c19cd47d18bed0f92ecb0", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gartenacker, 18 Acres and East Anglia", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 103, - 5 - ], - "closestHeadline": "Transformation of Parent Material ", - "section": "[103, 5]: Paragraph: CGA 173506 slowly degraded", - "color": null, - "positions": [ - { - "rectangle": [ - 293.19357, - 271.96, - 171.67838, - 11.52 - ], - "pageNumber": 74 - } - ], - "textBefore": "of AR for ", - "textAfter": ", respectively. On", - "startOffset": 168946, - "endOffset": 168983, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1f2d89d819166f7d576700e731e4d8d3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Patterson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 336, - 4, - 14 - ], - "closestHeadline": "Table 7.1.2.2.1-5: Summary of the re-evaluated field DegT50 matrix values for fludioxonil normalised to standard temperature for environmental risk assessment and modelling purposes ", - "section": "[336, 4, 14]: Paragraph: - Syngenta followed the", - "color": null, - "positions": [ - { - "rectangle": [ - 106.92, - 503.92, - 40.986877, - 11.52 - ], - "pageNumber": 197 - } - ], - "textBefore": "The study by ", - "textAfter": ", 2016 concluded", - "startOffset": 466782, - "endOffset": 466791, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c3828d64fd26900e5b7deea21a7a0eb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1390 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1390]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 290 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 925647, - "endOffset": 925655, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "376dd1b662efab47f19ca18a9e3bead9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Emburey", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 366, - 1, - 0, - 3 - ], - "closestHeadline": "Continued… Table 7.1.2.2.1-13: Modelling endpoints for fludioxonil – field studies ", - "section": "[366, 1, 0, 3]: Table_cell: Emburey (2004) – Vouvry", - "color": null, - "positions": [ - { - "rectangle": [ - 474.72, - 724.0, - 35.967957, - 10.5 - ], - "pageNumber": 220 - } - ], - "textBefore": "", - "textAfter": " (2004) – Vouvry", - "startOffset": 510621, - "endOffset": 510628, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "080d89bf8fade43a2d00786170b5430c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Thomas K", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 643, - 2 - ], - "closestHeadline": "Conclusions ", - "section": "[643, 2]: Paragraph: (Thomas K, Hand L,", - "color": null, - "positions": [ - { - "rectangle": [ - 422.88, - 187.96004, - 46.23178, - 11.52 - ], - "pageNumber": 350 - } - ], - "textBefore": "(", - "textAfter": ", Hand L,", - "startOffset": 803869, - "endOffset": 803877, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1dc68b00cb5690bb080ba20390871296", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hayes", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 184, - 3 - ], - "closestHeadline": "CA 7.1.1.3 Soil photolysis ", - "section": "[184, 3]: Paragraph: The HPLC data from", - "color": null, - "positions": [ - { - "rectangle": [ - 340.92, - 704.44, - 28.15921, - 11.52 - ], - "pageNumber": 120 - } - ], - "textBefore": "the metabolites (", - "textAfter": ", 2016). The", - "startOffset": 280449, - "endOffset": 280454, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2dc6ced9501053416e5855c1b8c1eb4", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1424 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1424]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 324 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 927619, - "endOffset": 927627, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "972b1346f2726763fa6689a21401f512", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1456 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1456]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 356 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 929475, - "endOffset": 929483, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e592546b92f6d104a997028a90ccd4b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Sachers", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 298, - 2, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-4: Summary of modelling endpoints for CGA265378 ", - "section": "[298, 2, 0]: Paragraph: (Sachers, 2015a)", - "color": null, - "positions": [ - { - "rectangle": [ - 468.5443, - 575.56, - 34.26242, - 11.52 - ], - "pageNumber": 178 - } - ], - "textBefore": "(", - "textAfter": ", 2015a)", - "startOffset": 420739, - "endOffset": 420746, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "12d06e68a8a2f51fa2f4e9229348fdbf", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "minnow", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 711, - 1, - 1, - 14, - 3 - ], - "closestHeadline": "Criteria for Classification of a Compound as a PBT ", - "section": "[711, 1, 1, 14, 3]: Paragraph: Fish full life cycle", - "color": null, - "positions": [ - { - "rectangle": [ - 369.36, - 266.2, - 29.421997, - 10.5 - ], - "pageNumber": 378 - } - ], - "textBefore": "cycle (FFLC) Fathead ", - "textAfter": "; NOEC =", - "startOffset": 875452, - "endOffset": 875458, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f09521d5d831a7259248dd21f87b991b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Piskorski", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 1 - ], - "closestHeadline": "CA 7.1.1.1 Aerobic degradation ", - "section": "[5, 1]: Paragraph: The aerobic soil degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 377.28, - 149.68001, - 42.14334, - 11.52 - ], - "pageNumber": 7 - } - ], - "textBefore": "been conducted (", - "textAfter": ", 2015) to", - "startOffset": 15927, - "endOffset": 15936, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7c7c4bd14fe1eea4c220f590eeae6855", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 315, - 3, - 0, - 0 - ], - "closestHeadline": "Table 7.1.2.1.2-14: Summary of modelling degradation rates of SYN545245 in aerobic soils ", - "section": "[315, 3, 0, 0]: Table_cell: Report: K-CA 7.1.2.1.2/04. Pietsch.", - "color": null, - "positions": [ - { - "rectangle": [ - 234.45367, - 464.08, - 37.190125, - 10.98 - ], - "pageNumber": 183 - } - ], - "textBefore": "Mannheim, Germany. (", - "textAfter": " File No. SYN545245_10017)", - "startOffset": 434125, - "endOffset": 434133, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0903c9c78625943fed99462be99f25a3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 560, - 1, - 0 - ], - "closestHeadline": "Table 7.2.1.1-1: Hydrolytic degradation studies ", - "section": "[560, 1, 0]: Table_cell: Syngenta Report", - "color": null, - "positions": [ - { - "rectangle": [ - 92.88, - 471.28, - 35.47001, - 10.5 - ], - "pageNumber": 306 - } - ], - "textBefore": "", - "textAfter": " Report", - "startOffset": 697715, - "endOffset": 697723, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da25de4643b8b7f414e0a27ee175883c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1374 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1374]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 274 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 924719, - "endOffset": 924727, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f23b2bfae47f087cbfea9470535c61a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkpatrick", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 251, - 1, - 0 - ], - "closestHeadline": "Conclusions ", - "section": "[251, 1, 0]: Paragraph: CGA173506 degraded rapidly under", - "color": null, - "positions": [ - { - "rectangle": [ - 175.41599, - 347.56, - 50.73439, - 11.52 - ], - "pageNumber": 153 - } - ], - "textBefore": "photolytic metabolites (", - "textAfter": " 1994c) concluded that", - "startOffset": 367229, - "endOffset": 367240, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aa0be7fc6c07417953457b5b319d283f", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "algae", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 1 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642, 1]: Paragraph: Within the standard system,", - "color": null, - "positions": [ - { - "rectangle": [ - 314.62347, - 455.2, - 23.238403, - 11.52 - ], - "pageNumber": 349 - } - ], - "textBefore": "the macrophyte and ", - "textAfter": " system, was lower", - "startOffset": 801418, - "endOffset": 801423, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f5af0114c43f04d5f8f4e75086435c96", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "New York", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 490, - 1 - ], - "closestHeadline": "Executive Summary ", - "section": "[490, 1]: Paragraph: An attempt was made", - "color": null, - "positions": [ - { - "rectangle": [ - 121.63839, - 298.00003, - 46.178734, - 11.52 - ], - "pageNumber": 271 - } - ], - "textBefore": "Collamer (loam) and ", - "textAfter": " Niagara (loam). The", - "startOffset": 616918, - "endOffset": 616926, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "19fcaa59b7cba0758e61cdf2dd568545", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 371, - 1, - 1 - ], - "closestHeadline": "Table 7.1.2.2.1-16: Modelling endpoints for fludioxonil – field studies ", - "section": "[371, 1, 1]: Table_cell: Reichert (1993a) – EuskirchenWeideshim", - "color": null, - "positions": [ - { - "rectangle": [ - 187.92, - 724.0, - 33.034027, - 10.5 - ], - "pageNumber": 224 - } - ], - "textBefore": "", - "textAfter": " (1993a) – EuskirchenWeideshim", - "startOffset": 518673, - "endOffset": 518681, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3b088c93e350912e86c9870d8eafaa29", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1111 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1111]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 71.04, - 35.32, - 34.006493, - 10.036079 - ], - "pageNumber": 11 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 909465, - "endOffset": 909473, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0deefab503eb036a2eabf7355257bbed", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reichert", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 335, - 1, - 0, - 62 - ], - "closestHeadline": "Table 7.1.2.2.1-4: Summary of trigger endpoints DT50 and DT90 values for fludioxonil ", - "section": "[335, 1, 0, 62]: Table_cell: Reichert (1994c)", - "color": null, - "positions": [ - { - "rectangle": [ - 473.64, - 574.36, - 30.540985, - 10.5 - ], - "pageNumber": 195 - } - ], - "textBefore": "", - "textAfter": " (1994c)", - "startOffset": 460987, - "endOffset": 460995, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3cfa6905f4a91b54712a68acc9e302d4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tribolet", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 471, - 5 - ], - "closestHeadline": "Conclusions ", - "section": "[471, 5]: Paragraph: Nonetheless, long term field", - "color": null, - "positions": [ - { - "rectangle": [ - 367.2, - 334.12, - 36.140167, - 11.52 - ], - "pageNumber": 260 - } - ], - "textBefore": "trials investigated by ", - "textAfter": " (2001a, 2001b) are", - "startOffset": 587466, - "endOffset": 587474, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f1356eaa464059877b8aa080fd56e1df", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1357 - ], - "closestHeadline": "NOTIFICATION OF AN ACTIVE SUBSTANCE UNDER COMMISSION REGULATION (EU) 844/2012 ", - "section": "[1357]: Footer: Syngenta/ – 11 April", - "color": null, - "positions": [ - { - "rectangle": [ - 70.92, - 35.44002, - 33.870987, - 10.02 - ], - "pageNumber": 257 - } - ], - "textBefore": "", - "textAfter": "/ – 11", - "startOffset": 923733, - "endOffset": 923741, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "127a1761f64bc5b9b2756fb42201a66d", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 4, - 3 - ], - "closestHeadline": "14C-labelled Table 7.1.1-1: Label positions of fludioxonil ", - "section": "[4]: Section: 14C-labelled Table 7.1.1-1: Label", - "color": null, - "positions": [ - { - "rectangle": [ - 71.0, - 316.0, - 439.0, - 326.0 - ], - "pageNumber": 7 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62b3da03558d57552df953af157bcb71", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 9, - 5 - ], - "closestHeadline": "Materials ", - "section": "[9]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 180.0, - 620.0, - 113.0, - 87.0 - ], - "pageNumber": 11 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4a06edb6bea4a38885811ed7df83622d", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 19, - 5 - ], - "closestHeadline": "Materials ", - "section": "[19]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 209.0, - 630.0, - 114.0, - 88.0 - ], - "pageNumber": 19 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f08ec3f8ed71ae500e12c66f2d50503", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 28, - 5 - ], - "closestHeadline": "Materials ", - "section": "[28]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 187.0, - 630.0, - 113.0, - 88.0 - ], - "pageNumber": 27 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fca00dd3b963cb3994c290de184014ea", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 40, - 5 - ], - "closestHeadline": "Materials ", - "section": "[40]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 209.0, - 630.0, - 114.0, - 88.0 - ], - "pageNumber": 34 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b84d2a008eb944e65eb89064d666ccb1", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 5 - ], - "closestHeadline": "Materials ", - "section": "[51]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 205.0, - 630.0, - 114.0, - 88.0 - ], - "pageNumber": 41 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50b491f1a6fda954f03c9277cdfb7ad5", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 62, - 5 - ], - "closestHeadline": "Materials ", - "section": "[62]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 187.0, - 630.0, - 113.0, - 88.0 - ], - "pageNumber": 49 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9485fa41d36e1a54c59b835e959f19bb", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 73, - 5 - ], - "closestHeadline": "Materials ", - "section": "[73]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 185.0, - 608.0, - 124.0, - 110.0 - ], - "pageNumber": 56 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b19596b803aceb63c423d28da86bf1a9", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 82, - 10 - ], - "closestHeadline": "Executive Summary ", - "section": "[82]: Section: Executive Summary The degradation", - "color": null, - "positions": [ - { - "rectangle": [ - 185.0, - 296.0, - 124.0, - 110.0 - ], - "pageNumber": 63 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b19596b803aceb63c423d28da86bf1a9", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 84, - 5 - ], - "closestHeadline": "Materials ", - "section": "[84]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 185.0, - 296.0, - 124.0, - 110.0 - ], - "pageNumber": 63 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1995fe91fc0b3cb1ab517f8592b47062", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 139, - 10 - ], - "closestHeadline": "Executive Summary ", - "section": "[139]: Section: Executive Summary CGA339833 represents", - "color": null, - "positions": [ - { - "rectangle": [ - 180.0, - 189.0, - 108.0, - 88.0 - ], - "pageNumber": 99 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bf4f625649ab62b3fa6f53d6651bb8ab", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 156, - 3 - ], - "closestHeadline": "Materials ", - "section": "[156]: Section: Materials Test Material 1:", - "color": null, - "positions": [ - { - "rectangle": [ - 180.0, - 639.0, - 98.0, - 73.0 - ], - "pageNumber": 107 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32dfa00c13b006047f3fba2c8a89f740", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 236, - 2 - ], - "closestHeadline": "Materials ", - "section": "[236]: Section: Materials Test Material: [4-pyrrole14C]", - "color": null, - "positions": [ - { - "rectangle": [ - 281.0, - 528.0, - 103.0, - 108.0 - ], - "pageNumber": 147 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62f5fa9e2522cdf7a598ee990ce0d8c5", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 255, - 2 - ], - "closestHeadline": "Materials ", - "section": "[255]: Section: Materials Test Material: [phenyl-U14C]", - "color": null, - "positions": [ - { - "rectangle": [ - 281.0, - 598.0, - 98.0, - 113.0 - ], - "pageNumber": 156 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62f5fa9e2522cdf7a598ee990ce0d8c5", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 257, - 2 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[257]: Section: Study Design and Methods", - "color": null, - "positions": [ - { - "rectangle": [ - 281.0, - 598.0, - 98.0, - 113.0 - ], - "pageNumber": 156 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "86cf88fb4ee4d90d5928f6f26823af03", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 272, - 3 - ], - "closestHeadline": "Table 7.1.1.3-34: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 in water ", - "section": "[272]: Section: Table 7.1.1.3-34: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 179.0, - 398.0, - 45.0, - 75.0 - ], - "pageNumber": 162 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "090b7570e20f8db3d7bd59cfb0104200", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 272, - 4 - ], - "closestHeadline": "Table 7.1.1.3-34: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 in water ", - "section": "[272]: Section: Table 7.1.1.3-34: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 189.0, - 540.0, - 203.0, - 40.0 - ], - "pageNumber": 162 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7ce687672ce8156d3a8715841f6217a8", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 272, - 5 - ], - "closestHeadline": "Table 7.1.1.3-34: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 in water ", - "section": "[272]: Section: Table 7.1.1.3-34: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 189.0, - 585.0, - 204.0, - 40.0 - ], - "pageNumber": 162 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1fb18e416bc00e80cb2def27467e560c", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 272, - 6 - ], - "closestHeadline": "Table 7.1.1.3-34: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 in water ", - "section": "[272]: Section: Table 7.1.1.3-34: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 194.0, - 629.0, - 193.0, - 52.0 - ], - "pageNumber": 162 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7755809252b6453ee71a69d9d28d890", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 272, - 7 - ], - "closestHeadline": "Table 7.1.1.3-34: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 in water ", - "section": "[272]: Section: Table 7.1.1.3-34: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 256.0, - 476.0, - 69.0, - 59.0 - ], - "pageNumber": 162 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f38c56ab78196f77c12972aba7b8e6f9", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 3 - ], - "closestHeadline": "Table 7.1.1.3-35: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[273]: Section: Table 7.1.1.3-35: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 179.0, - 468.0, - 45.0, - 75.0 - ], - "pageNumber": 163 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3c6052cab6999e6b87816e6be19d2a50", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 4 - ], - "closestHeadline": "Table 7.1.1.3-35: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[273]: Section: Table 7.1.1.3-35: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 188.0, - 629.0, - 205.0, - 52.0 - ], - "pageNumber": 163 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b3e82e033f36c68409a2ffd57c6b550e", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 5 - ], - "closestHeadline": "Table 7.1.1.3-35: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[273]: Section: Table 7.1.1.3-35: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 256.0, - 546.0, - 69.0, - 64.0 - ], - "pageNumber": 163 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "044072dd453e31137df8af4d33dd4302", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 6 - ], - "closestHeadline": "Table 7.1.1.3-35: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[273]: Section: Table 7.1.1.3-35: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 281.0, - 246.0, - 88.0, - 91.0 - ], - "pageNumber": 163 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f38c56ab78196f77c12972aba7b8e6f9", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 274, - 2 - ], - "closestHeadline": "Materials ", - "section": "[274]: Section: Materials Test Material: [pyrrole-414C]", - "color": null, - "positions": [ - { - "rectangle": [ - 179.0, - 468.0, - 45.0, - 75.0 - ], - "pageNumber": 163 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "044072dd453e31137df8af4d33dd4302", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 274, - 3 - ], - "closestHeadline": "Materials ", - "section": "[274]: Section: Materials Test Material: [pyrrole-414C]", - "color": null, - "positions": [ - { - "rectangle": [ - 281.0, - 246.0, - 88.0, - 91.0 - ], - "pageNumber": 163 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "29e44a60c891d0243a919d02d18d31cc", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 277, - 8 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[277]: Section: Description of analytical procedures", - "color": null, - "positions": [ - { - "rectangle": [ - 179.0, - 108.0, - 45.0, - 75.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "70189b532f6f452e49fc9916b24c7fa9", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 277, - 9 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[277]: Section: Description of analytical procedures", - "color": null, - "positions": [ - { - "rectangle": [ - 189.0, - 250.0, - 203.0, - 40.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "25d302f1ac81cdc5dfbbbaea57f140ff", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 277, - 10 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[277]: Section: Description of analytical procedures", - "color": null, - "positions": [ - { - "rectangle": [ - 256.0, - 186.0, - 69.0, - 60.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "067dc774f7fe43d85f428072a666147f", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 278, - 3 - ], - "closestHeadline": "Results and Discussion ", - "section": "[278]: Section: Results and Discussion Aqueous", - "color": null, - "positions": [ - { - "rectangle": [ - 189.0, - 295.0, - 204.0, - 40.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "72816b2d4a2cf009f815e837c6bdf3bf", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 278, - 4 - ], - "closestHeadline": "Results and Discussion ", - "section": "[278]: Section: Results and Discussion Aqueous", - "color": null, - "positions": [ - { - "rectangle": [ - 194.0, - 339.0, - 193.0, - 53.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "70189b532f6f452e49fc9916b24c7fa9", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 279, - 3 - ], - "closestHeadline": "of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions ", - "section": "[279]: Section: of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions Product", - "color": null, - "positions": [ - { - "rectangle": [ - 189.0, - 250.0, - 203.0, - 40.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "067dc774f7fe43d85f428072a666147f", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 279, - 4 - ], - "closestHeadline": "of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions ", - "section": "[279]: Section: of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions Product", - "color": null, - "positions": [ - { - "rectangle": [ - 189.0, - 295.0, - 204.0, - 40.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "72816b2d4a2cf009f815e837c6bdf3bf", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 279, - 5 - ], - "closestHeadline": "of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions ", - "section": "[279]: Section: of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions Product", - "color": null, - "positions": [ - { - "rectangle": [ - 194.0, - 339.0, - 193.0, - 53.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "25d302f1ac81cdc5dfbbbaea57f140ff", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 279, - 6 - ], - "closestHeadline": "of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions ", - "section": "[279]: Section: of photoproducts rTeasbulleti7n.g1.f1r.o3m36t:hePprohpotoosdeedgsrtarduacttiuornesofa[npdyrmroalxeim1u4mC]oCbGsAer1v7e3d50c6oinncewnattreartions Product", - "color": null, - "positions": [ - { - "rectangle": [ - 256.0, - 186.0, - 69.0, - 60.0 - ], - "pageNumber": 165 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "88c843ee8b9857796f7736ace93c3c0a", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 280, - 3 - ], - "closestHeadline": "Table 7.1.1.3-37: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[280]: Section: Table 7.1.1.3-37: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 179.0, - 391.0, - 45.0, - 76.0 - ], - "pageNumber": 166 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dd04b2db260471557209cd0550d31916", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 280, - 4 - ], - "closestHeadline": "Table 7.1.1.3-37: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[280]: Section: Table 7.1.1.3-37: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 188.0, - 552.0, - 205.0, - 53.0 - ], - "pageNumber": 166 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40f1a499457b2904362457f3cb40e1f8", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 280, - 5 - ], - "closestHeadline": "Table 7.1.1.3-37: Proposed structures and maxim observed concentrations of photoproducts 1u4m resulting from the photodegradation of [pyrrole-4- C]CGA173506 on soil ", - "section": "[280]: Section: Table 7.1.1.3-37: Proposed structures", - "color": null, - "positions": [ - { - "rectangle": [ - 256.0, - 469.0, - 69.0, - 64.0 - ], - "pageNumber": 166 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dd04b2db260471557209cd0550d31916", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 281, - 11 - ], - "closestHeadline": "Conclusions ", - "section": "[281]: Section: Conclusions Major photoproducts formed", - "color": null, - "positions": [ - { - "rectangle": [ - 188.0, - 552.0, - 205.0, - 53.0 - ], - "pageNumber": 166 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5c10c0fdb612be43fdbb0cb6622c10c1", - "type": "ocr", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Ocr", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 320, - 4 - ], - "closestHeadline": "Table 7.1.2.1.2-16: Summary of modelling endpoints ", - "section": "[320]: Section: Table 7.1.2.1.2-16: Summary of", - "color": null, - "positions": [ - { - "rectangle": [ - 71.0, - 166.0, - 448.0, - 196.0 - ], - "pageNumber": 185 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "835115eb1b9525369a77a049547ad616", - "type": "image", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Other", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 330, - 23 - ], - "closestHeadline": "Conclusion ", - "section": "[330]: Section: Conclusion In all cases,", - "color": null, - "positions": [ - { - "rectangle": [ - 71.0, - 252.0, - 236.0, - 110.0 - ], - "pageNumber": 190 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f3adbb06452e9ae34712542120d545cc", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 478, - 5 - ], - "closestHeadline": "Table 7.1.3.1.1-3: Soil adsorption constants for CGA173506 in 5 Soils ", - "section": "[478]: Section: Table 7.1.3.1.1-3: Soil adsorption", - "color": null, - "positions": [ - { - "rectangle": [ - 168.0, - 526.0, - 77.0, - 72.0 - ], - "pageNumber": 264 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c6603d9edd091721d135236f2992153e", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 491, - 4 - ], - "closestHeadline": "Materials ", - "section": "[491]: Section: Materials Test Material: Pyrroloe14C-CGA265378", - "color": null, - "positions": [ - { - "rectangle": [ - 196.0, - 610.0, - 113.0, - 74.0 - ], - "pageNumber": 272 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb22c09621bb3a1f5361b5c30d286e11", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 505, - 2 - ], - "closestHeadline": "Table 7.1.3.1.2-9: Soil adsorption constants for CGA339833 in 4 Soils ", - "section": "[505]: Section: Table 7.1.3.1.2-9: Soil adsorption", - "color": null, - "positions": [ - { - "rectangle": [ - 196.0, - 259.0, - 129.0, - 88.0 - ], - "pageNumber": 278 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb22c09621bb3a1f5361b5c30d286e11", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 506, - 4 - ], - "closestHeadline": "Materials ", - "section": "[506]: Section: Materials Test Material: (Oxirane-314C)", - "color": null, - "positions": [ - { - "rectangle": [ - 196.0, - 259.0, - 129.0, - 88.0 - ], - "pageNumber": 278 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "11ddce715130dc4e12eb272359d095b3", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 523, - 3 - ], - "closestHeadline": "Experimental design ", - "section": "[523]: Section: Experimental design Preliminary adsorption", - "color": null, - "positions": [ - { - "rectangle": [ - 195.0, - 640.0, - 94.0, - 82.0 - ], - "pageNumber": 287 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06aaec5efdf91193f5af71355472b86b", - "type": "ocr", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Ocr", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 558, - 3 - ], - "closestHeadline": "14C-labelled Table 7.2-1: Label positions of fludioxonil ", - "section": "[558]: Section: 14C-labelled Table 7.2-1: Label", - "color": null, - "positions": [ - { - "rectangle": [ - 124.0, - 231.0, - 361.0, - 524.0 - ], - "pageNumber": 305 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57e7f8ca54181fe1582405c675d08370", - "type": "image", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Other", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 558, - 4 - ], - "closestHeadline": "14C-labelled Table 7.2-1: Label positions of fludioxonil ", - "section": "[558]: Section: 14C-labelled Table 7.2-1: Label", - "color": null, - "positions": [ - { - "rectangle": [ - 150.0, - 453.0, - 75.0, - 18.0 - ], - "pageNumber": 305 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9bcadc1608978ccddb3bda7cf7546c23", - "type": "image", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Other", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 558, - 5 - ], - "closestHeadline": "14C-labelled Table 7.2-1: Label positions of fludioxonil ", - "section": "[558]: Section: 14C-labelled Table 7.2-1: Label", - "color": null, - "positions": [ - { - "rectangle": [ - 342.0, - 453.0, - 68.0, - 16.0 - ], - "pageNumber": 305 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc90733c377f8da2cd58c5af8f1385b7", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 604, - 5 - ], - "closestHeadline": "Materials ", - "section": "[604]: Section: Materials Company code: Fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 201.0, - 330.0, - 112.0, - 94.0 - ], - "pageNumber": 328 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "adda8b228acfda3e820378240eb537c7", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 604, - 6 - ], - "closestHeadline": "Materials ", - "section": "[604]: Section: Materials Company code: Fludioxonil", - "color": null, - "positions": [ - { - "rectangle": [ - 188.0, - 644.0, - 112.0, - 95.0 - ], - "pageNumber": 329 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cb16c6ba139add623457f2f7e601a236", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 638, - 3 - ], - "closestHeadline": "Executive Summary ", - "section": "[638]: Section: Executive Summary The rate", - "color": null, - "positions": [ - { - "rectangle": [ - 433.0, - 659.0, - 92.0, - 75.0 - ], - "pageNumber": 347 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fd1047567a113c984eb2c7d84409d94", - "type": "image", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Other", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 641, - 9 - ], - "closestHeadline": "Description of analytical procedures ", - "section": "[641]: Section: Description of analytical procedures", - "color": null, - "positions": [ - { - "rectangle": [ - 142.0, - 104.0, - 228.0, - 213.0 - ], - "pageNumber": 349 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dad0131f7c37aed7dc18d3fc48c7d108", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 642, - 6 - ], - "closestHeadline": "Results and Discussion ", - "section": "[642]: Section: Results and Discussion Within", - "color": null, - "positions": [ - { - "rectangle": [ - 191.0, - 343.0, - 228.0, - 222.0 - ], - "pageNumber": 350 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4e7308564660fc246ca6bb241a7561db", - "type": "image", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Other", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 643, - 3 - ], - "closestHeadline": "Conclusions ", - "section": "[643]: Section: Conclusions Degradation in water-sediment", - "color": null, - "positions": [ - { - "rectangle": [ - 158.0, - 608.0, - 15.0, - 1.0 - ], - "pageNumber": 350 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "835ae2980eaa910b11782a1c169526d0", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 648, - 5 - ], - "closestHeadline": "Executive Summary ", - "section": "[648]: Section: Executive Summary The rate", - "color": null, - "positions": [ - { - "rectangle": [ - 210.0, - 180.0, - 92.0, - 67.0 - ], - "pageNumber": 352 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5593c8e95326134f04a4a83b64f17811", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 670, - 3 - ], - "closestHeadline": "Table 7.2.2.4-3: Dissipation and degradation rates of CGA173506 in two water/sediment systems ", - "section": "[670]: Section: Table 7.2.2.4-3: Dissipation and", - "color": null, - "positions": [ - { - "rectangle": [ - 210.0, - 287.0, - 71.0, - 61.0 - ], - "pageNumber": 361 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5593c8e95326134f04a4a83b64f17811", - "type": "formula", - "entryType": "IMAGE_HINT", - "state": "SKIPPED", - "value": "Image:Formula", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 674, - 3 - ], - "closestHeadline": "Application vehicle: Acetonitrile ", - "section": "[674]: Section: Application vehicle: Acetonitrile Water/sediment:", - "color": null, - "positions": [ - { - "rectangle": [ - 210.0, - 287.0, - 71.0, - 61.0 - ], - "pageNumber": 361 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-21T16:35:37.712531696Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - } - ], - "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": 21, - "dossierDictionaryVersion": 6, - "rulesVersion": 1, - "legalBasisVersion": 2 -} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/b2cbdd4dca0aa1aa0ebbfc5cc1462df0.ENTITY_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/b2cbdd4dca0aa1aa0ebbfc5cc1462df0.ENTITY_LOG.json deleted file mode 100644 index f0cb5c8a..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/b2cbdd4dca0aa1aa0ebbfc5cc1462df0.ENTITY_LOG.json +++ /dev/null @@ -1,30537 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 5, - "entityLogEntry": [ - { - "id": "09a6573e608e19a22452222255d15bad", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Analytik GmbH, Kupferstraße 6, 04827 Machern OT Gerichshain, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 350, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.13 Analytical method 13 - fenpropidin residues in sucrose solution ", - "section": "[350, 2, 1]: Paragraph: Report: Ruhland S. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 158.10005, - 337.3089, - 11.017679 - ], - "pageNumber": 131 - } - ], - "textBefore": "biologische und chemische, ", - "textAfter": " (Syngenta File No.", - "startOffset": 275281, - "endOffset": 275349, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "396e8a2f8ac786489e4f7ec09b53094b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Zampakou M.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 8, - 1, - 5 - ], - "closestHeadline": "Table 5.2-1: Methods suitable for the determination of the active substances Azoxystrobin and Fenpropidin in plant protection product A23317A ", - "section": "[8, 1, 5]: Table_cell: Zampakou M., 2020", - "color": null, - "positions": [ - { - "rectangle": [ - 422.59, - 687.86, - 59.28, - 10.526819 - ], - "pageNumber": 8 - } - ], - "textBefore": "", - "textAfter": " 2020", - "startOffset": 14379, - "endOffset": 14391, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0cdc7dd2204645819844c9416a0ec02e", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 339, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[339, 1]: Paragraph: Water samples are analysed", - "color": null, - "positions": [ - { - "rectangle": [ - 423.13248, - 329.13, - 85.97949, - 11.017679 - ], - "pageNumber": 128 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The analytical", - "startOffset": 268499, - "endOffset": 268516, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "405091596fc965dd75118b4d28f06329", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 54 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 54]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 233.81998, - 44.461487, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "1999 Report RJ2770B ", - "textAfter": ", 2004 Report", - "startOffset": 68405, - "endOffset": 68415, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4bf591a8e8dd9a35401a84112a0e4c80", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 311, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.7 Analytical method 7 - fenpropidin residues in water ", - "section": "[311, 2, 1]: Paragraph: Report: Kirkwood A. (2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 228.158, - 521.63, - 41.013626, - 11.017679 - ], - "pageNumber": 120 - } - ], - "textBefore": "02571-1037 USA (", - "textAfter": " File No. VV-469411)", - "startOffset": 250274, - "endOffset": 250282, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1009d8cb3c2b850da4ca26b245ae4222", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 39, - 0 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 39, 0]: Paragraph: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 255.41995, - 32.957703, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "RAM 305/03 Validation: ", - "textAfter": ".J., 1999 Report", - "startOffset": 71838, - "endOffset": 71846, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3a81ea1151309dcfc18b8dceb08ab60a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 9 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 716.18, - 31.03537, - 10.44714 - ], - "pageNumber": 34 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 70998, - "endOffset": 71004, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a04ae2647970bb496a35f31ae53a7825", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 200, - 3, - 1 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 1]: Paragraph: Report: Link T., Poperechna", - "color": null, - "positions": [ - { - "rectangle": [ - 308.58444, - 496.43, - 39.1037, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "T., Poperechna N., ", - "textAfter": "", - "startOffset": 167856, - "endOffset": 167864, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d70c9ea6b443ea579998c6129da6195b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 7, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 53 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 106520, - "endOffset": 106526, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "01a9650e33fbcff0d19d895f1a3887b4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Obert-Rauser", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 271, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.2 Analytical method 2 - A23317A - fenpropidin residues water ", - "section": "[271, 2, 1]: Paragraph: Report Azoxystrobin/Fenpropidin SE (A23317A)", - "color": null, - "positions": [ - { - "rectangle": [ - 230.21, - 289.14005, - 59.227676, - 11.017679 - ], - "pageNumber": 105 - } - ], - "textBefore": "under Laboratory Conditions, ", - "textAfter": " P. (2021) Report", - "startOffset": 214997, - "endOffset": 215009, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0db168824138401b8a610a79c3a901d8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Bracknell, Berkshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 380, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[380, 3, 1]: Paragraph: Report: Richardson M. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 390.2252, - 156.42, - 90.52405, - 11.017679 - ], - "pageNumber": 138 - } - ], - "textBefore": "Inernational Research Centre, ", - "textAfter": ", RG42 6EY,", - "startOffset": 289890, - "endOffset": 289910, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "379772acbabe07b74ea0ea5db06757f3", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 299, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[299, 1]: Paragraph: Test facility: BioChem agrar,", - "color": null, - "positions": [ - { - "rectangle": [ - 70.824, - 296.49002, - 52.881622, - 11.017679 - ], - "pageNumber": 115 - } - ], - "textBefore": "", - "textAfter": ": BioChem agrar,", - "startOffset": 238543, - "endOffset": 238556, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "feb8bee293e71bffde709d806b3da544", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 14 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 14]: Table_cell: Method & Validation: Schuler", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 387.57, - 41.67267, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": ", 2020 Report", - "startOffset": 58478, - "endOffset": 58488, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c9f0425fedc77006093bed59fdc9995f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4, - 9, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4, 9, 0]: Paragraph: Method Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 632.66, - 32.957703, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "RAM 305/02 Validation ", - "textAfter": ".J., 1999 Report", - "startOffset": 31492, - "endOffset": 31500, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32bb60a47b8f504ec1f40484ba4355b7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 418, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[418, 2]: Paragraph: (Robinson N J, 2006)", - "color": null, - "positions": [ - { - "rectangle": [ - 447.80945, - 745.22, - 52.936768, - 11.017679 - ], - "pageNumber": 147 - } - ], - "textBefore": "(", - "textAfter": " J, 2006)", - "startOffset": 310491, - "endOffset": 310501, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c23bd96cd22ba6bc451903c4aa924d0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burke S.R.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 3 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 3]: Table: #cols: 5, #rows: 8, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 658.7, - 46.641083, - 10.526819 - ], - "pageNumber": 16 - } - ], - "textBefore": "Validation: ", - "textAfter": " 1997 Report RJ2385B", - "startOffset": 29469, - "endOffset": 29480, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc4e0e18df31e0309fd99396cffbec40", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 21]: Table_cell: Fenpropidin - Residue Method", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 218.97, - 50.09886, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "VV-124469 , CGA114900/4910 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 110253, - "endOffset": 110266, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "700928008d8de32c96876c8501c865ed", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 11, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 57 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 111834, - "endOffset": 111840, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f8ed546d079cb2bc57cd1da454e76790", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "ibacon GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 105, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[105, 1]: Paragraph: Test facility: ibacon GmbH,", - "color": null, - "positions": [ - { - "rectangle": [ - 129.5, - 424.53, - 62.08899, - 11.017679 - ], - "pageNumber": 65 - } - ], - "textBefore": "Test facility: ", - "textAfter": ", Arheilger Weg", - "startOffset": 125782, - "endOffset": 125793, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ff1d7ac06c4ac77444ab1c5364c6be6c", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 1, - 1 - ], - "closestHeadline": "Table A 11: Recovery results from method validation of azoxystrobin using the analytical method (quantification transition m/z 404 → 372) ", - "section": "[152, 1, 1]: Table: #cols: 6, #rows: 10, Matrix Fortification Level (mg/kg)", - "color": null, - "positions": [ - { - "rectangle": [ - 73.944, - 186.89993, - 28.874046, - 10.526819 - ], - "pageNumber": 77 - } - ], - "textBefore": "", - "textAfter": " muscle", - "startOffset": 150671, - "endOffset": 150677, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "df72f417a6434e5e38c18cbbb0e31fec", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta, Jealott’s Hill International Research Centre, Bracknell, Berkshire, RG42 6EY", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 409, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.6 Description of Methods for the Analysis of Air (KCP 5.2.6) ", - "section": "[409, 3, 1]: Paragraph: Report: Robinson N.J. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 417.1737, - 509.15, - 119.94556, - 11.017679 - ], - "pageNumber": 145 - }, - { - "rectangle": [ - 199.73, - 496.55, - 269.71832, - 11.017679 - ], - "pageNumber": 145 - } - ], - "textBefore": "Report Number GRM024.01A. ", - "textAfter": ", UK (Syngenta", - "startOffset": 305465, - "endOffset": 305551, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e0ddaffd00b9ae6449ef3d97ee69a2d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection Munchwilen AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 27]: Table_cell: Statement on Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9476, - 143.82, - 173.34409, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "VV-887260 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 101239, - "endOffset": 101277, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5cbb8c7fe2c9208d29dc94259118f1d4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Weeren R.D.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 3, - 1 - ], - "closestHeadline": "A 2.1.2 Methods for post-authorization control and monitoring purposes (KCP 5.2) ", - "section": "[113, 3, 1]: Paragraph: Report: Validation of the", - "color": null, - "positions": [ - { - "rectangle": [ - 432.1551, - 438.93, - 57.81653, - 11.017679 - ], - "pageNumber": 68 - } - ], - "textBefore": "in Plant Materials, ", - "textAfter": ", Pelz S.,", - "startOffset": 131530, - "endOffset": 131541, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "42971847124f79431b9276f626b85987", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gentle W", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 14 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 14]: Table_cell: Method Burke S.R. and", - "color": null, - "positions": [ - { - "rectangle": [ - 463.6317, - 536.99, - 38.545258, - 10.526819 - ], - "pageNumber": 15 - } - ], - "textBefore": "Burke S.R. and ", - "textAfter": "., 1995 Report", - "startOffset": 28290, - "endOffset": 28298, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "66e1bf5d804ec56e8393b1aea489f783", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 57, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.3-7: Validated methods for soil ", - "section": "[57, 1, 0, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 420.09, - 31.03537, - 10.44714 - ], - "pageNumber": 39 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 80975, - "endOffset": 80981, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c5808ba0a3a8dbf41c86ab008ddaa98", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 1, - 24, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 1, 24, 0]: Paragraph: Method: Burke S.R., 1996", - "color": null, - "positions": [ - { - "rectangle": [ - 449.14, - 483.71, - 40.985443, - 10.526819 - ], - "pageNumber": 14 - } - ], - "textBefore": "RJ1557B Burke S.R., ", - "textAfter": ", 1995 Report", - "startOffset": 27726, - "endOffset": 27736, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2eabb3f299377fa350e4bd01595866d4", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "hen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 170, - 1 - ], - "closestHeadline": "Conclusion ", - "section": "[170, 1]: Paragraph: Analytical method RAM 399/01", - "color": null, - "positions": [ - { - "rectangle": [ - 492.73972, - 351.09, - 15.941742, - 11.017679 - ], - "pageNumber": 80 - } - ], - "textBefore": "and liver and ", - "textAfter": "’s egg. Results", - "startOffset": 156056, - "endOffset": 156059, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b22dccd751a100c6f62dac41c1ebd1b4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "De Benedictis, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 13]: Table_cell: De Benedictis, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 245.60999, - 69.31164, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 99784, - "endOffset": 99801, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "29907c482345eb171ee6988f3804e776", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 21]: Table_cell: Fenpropidin (CGA114900) - Residue", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 196.04999, - 95.422, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "CGA114900/4912 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 112919, - "endOffset": 112944, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "564f03a344136a591af087614b551a50", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 173, - 2, - 2 - ], - "closestHeadline": "A 2.1.2.2.2 Analytical method 2: DFG S19 ", - "section": "[173, 2, 2]: Paragraph: Validation of DFG Method", - "color": null, - "positions": [ - { - "rectangle": [ - 428.7014, - 579.35, - 40.89212, - 11.017679 - ], - "pageNumber": 81 - } - ], - "textBefore": "Report No. ZEN-9505V, ", - "textAfter": " File No. VV323618", - "startOffset": 157310, - "endOffset": 157318, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "062f037d60e360acf262eb7c2333817c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 8, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 54 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 107936, - "endOffset": 107942, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60f023a4321436271939b135ee023387", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tilkes, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 173, - 2, - 1 - ], - "closestHeadline": "A 2.1.2.2.2 Analytical method 2: DFG S19 ", - "section": "[173, 2, 1]: Paragraph: Report: Tilkes, M. (1997)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 623.18, - 45.551025, - 11.017679 - ], - "pageNumber": 81 - } - ], - "textBefore": "Report: ", - "textAfter": " (1997)", - "startOffset": 157103, - "endOffset": 157113, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "38ee7f774e3b5df272ae2d6a37c2b43d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4]: Table: #cols: 5, #rows: 13, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 384.93, - 32.957703, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "RAM 305/03 Validation: ", - "textAfter": ".J., 1999 Report", - "startOffset": 31777, - "endOffset": 31785, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84118ba615b5f710b99196363b408a8e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 74, - 1, - 1, - 7 - ], - "closestHeadline": "Table 5.3-15: Validated methods for soil ", - "section": "[74, 1, 1, 7]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 425.11, - 582.83, - 31.03537, - 10.44714 - ], - "pageNumber": 44 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 94839, - "endOffset": 94845, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "270a94a02f6a66974064fb5b924bf374", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kleebaum K.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 321, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.8 Analytical method 8 - fenpropidin residues in royal jelly/ASS ", - "section": "[321, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 559.67, - 58.534103, - 11.017679 - ], - "pageNumber": 122 - } - ], - "textBefore": "Report: ", - "textAfter": " (2018), Fenpropidin –", - "startOffset": 254286, - "endOffset": 254297, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "871f5b50b2ecad38b3edecabde5fb3eb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 299, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[299, 1]: Paragraph: Test facility: BioChem agrar,", - "color": null, - "positions": [ - { - "rectangle": [ - 129.5789, - 296.49002, - 67.37712, - 11.017679 - ], - "pageNumber": 115 - } - ], - "textBefore": "Test facility: ", - "textAfter": ", Labor für", - "startOffset": 238558, - "endOffset": 238571, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ad4327c1d07f692fbc5c1358929b44c7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kravchuk, O. Link, T.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 25]: Table_cell: Kravchuk, O. Link, T.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 178.28998, - 54.142555, - 10.526819 - ], - "pageNumber": 55 - }, - { - "rectangle": [ - 121.1, - 166.77002, - 32.539314, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 110329, - "endOffset": 110350, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "872a0bf9afd992169532475075db70be", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Clarke D.M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 0]: Table: #cols: 5, #rows: 6, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 159.41995, - 50.188416, - 10.526819 - ], - "pageNumber": 13 - } - ], - "textBefore": "RAM 243/02 Validation: ", - "textAfter": ", Sapiets A.,", - "startOffset": 25409, - "endOffset": 25420, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "124588e06ec1f60c057d3f112cf58059", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "goat", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 45, - 2, - 0 - ], - "closestHeadline": "Table 5.3-1: Relevant residue definitions for monitoring/enforcement and levels for which compliance is required ", - "section": "[45, 2, 0]: Paragraph: *The RMS, following evaluation", - "color": null, - "positions": [ - { - "rectangle": [ - 135.954, - 192.17996, - 16.046997, - 10.095 - ], - "pageNumber": 30 - } - ], - "textBefore": "‘the group of ", - "textAfter": " metabolites referred to", - "startOffset": 63718, - "endOffset": 63722, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "27f3ffdb595a249851b89c1166c71a9d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kleebaum, K.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 13]: Table_cell: Kleebaum, K.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 55.825798, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 104369, - "endOffset": 104381, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3deace17d4b9919c215c35a9582bb96b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Stahl F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 49 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 49]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 166.61996, - 31.03534, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "ZEN-0002V New data ", - "textAfter": ", 2017 Report", - "startOffset": 66574, - "endOffset": 66582, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef9e2223e3c72058ae92eca20fc22b14", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection Munchwilen AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 15]: Table_cell: SF-1057/1 - Determination of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 305.75, - 173.34409, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "VV-889362 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 100755, - "endOffset": 100793, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "86dfb5c9e1e3832ffe8be22128facfe0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Pelz S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 34 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 34]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 441.12848, - 364.77, - 27.69873, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "Validation: Weeren R., ", - "textAfter": ", 2001 Report", - "startOffset": 66224, - "endOffset": 66231, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fbe8e66ce35d2ff320610491fe30d4b3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Adolph, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 7]: Table_cell: Adolph, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 320.87, - 43.126793, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 99555, - "endOffset": 99565, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b6c5c986df80959b6270e243b13eacb0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "GLP Testing Facility WMU", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 21]: Table_cell: A23317A – Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 230.48999, - 112.41699, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "VV-889304 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 100965, - "endOffset": 100989, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f4df951b8129c816a322fa152245893f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Author", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 83, - 1, - 7 - ], - "closestHeadline": "List of data relied on not submitted by the applicant but necessary for evaluation ", - "section": "[83, 1, 7]: Table_cell: Author", - "color": null, - "positions": [ - { - "rectangle": [ - 110.42, - 237.45001, - 28.366089, - 10.526819 - ], - "pageNumber": 59 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 114631, - "endOffset": 114637, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "318201ab4289280c698f993b90e077de", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 170, - 1 - ], - "closestHeadline": "Conclusion ", - "section": "[170, 1]: Paragraph: Analytical method RAM 399/01", - "color": null, - "positions": [ - { - "rectangle": [ - 234.49205, - 351.09, - 29.852188, - 11.017679 - ], - "pageNumber": 80 - } - ], - "textBefore": "animal matrices, including ", - "textAfter": " milk, fat and", - "startOffset": 155999, - "endOffset": 156005, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "880ec53d5bdcb08fc2d49bd4a5f4ef56", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "hen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 150, - 1, - 0, - 1, - 2 - ], - "closestHeadline": "A 2.1.2.2.1.1 Method validation ", - "section": "[150, 1, 0, 1, 2]: Paragraph: and milk, lamb’s kidney", - "color": null, - "positions": [ - { - "rectangle": [ - 343.83878, - 687.62, - 15.842377, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "and liver and ", - "textAfter": "’s egg (LOQ", - "startOffset": 149254, - "endOffset": 149257, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b4ba52c50bd03c51c7e81df59cd31a60", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2]: Table: #cols: 5, #rows: 11, Component of residue definition:", - "color": null, - "positions": [ - { - "rectangle": [ - 74.29056, - 660.98, - 27.30037, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "Muscle (", - "textAfter": ")", - "startOffset": 76540, - "endOffset": 76546, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3ddda945d7b8a750e8c3e45e231604d4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richardson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 75, - 1, - 2, - 24 - ], - "closestHeadline": "Table 5.3-16: Validated methods for water ", - "section": "[75, 1, 2, 24]: Table_cell: GRM024.03A Richardson, 2007 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 412.75, - 626.06, - 45.507324, - 10.526819 - ], - "pageNumber": 45 - } - ], - "textBefore": "GRM024.03A ", - "textAfter": ", 2007 Report", - "startOffset": 96489, - "endOffset": 96499, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "41f75c0e7c024ff283116e31b2c99535", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Fenpropidin EFSA", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 78 - ], - "closestHeadline": "5.4 References ", - "section": "[78]: Section: 5.4 References SANCO/3029/99 rev.4.", - "color": null, - "positions": [ - { - "rectangle": [ - 70.944, - 588.71, - 56.999985, - 10.929359 - ], - "pageNumber": 46 - }, - { - "rectangle": [ - 70.944, - 570.23, - 26.948631, - 11.017679 - ], - "pageNumber": 46 - } - ], - "textBefore": "EFSA, December, 2009. ", - "textAfter": ", 2007. Conclusion", - "startOffset": 98549, - "endOffset": 98565, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "948554f29f82db4bfdaf51909c67b491", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 49 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 49]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 363.57, - 46.06775, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 75729, - "endOffset": 75740, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "47211d8d30763bc83cb90c138c3f1736", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Weeren R.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 49 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 49]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 213.17996, - 42.658722, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "Validation: ", - "textAfter": ", Pelz S.,", - "startOffset": 66523, - "endOffset": 66532, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87e3ce7446c911250302fd0754afaa7e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 24]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 490.07, - 44.461487, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "RAM 305/03 Validation: ", - "textAfter": ", 2004 Report", - "startOffset": 71356, - "endOffset": 71366, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "043887aa60f5603ae8cf2568f3889573", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 21]: Table_cell: Fenpropidin - Chronic Toxicity", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 218.97, - 50.09886, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "VV-471136 , CGA114900_10975 ", - "textAfter": " BioChem agrar GmbH", - "startOffset": 106148, - "endOffset": 106161, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4df7c011f989b04010510f200bf47cf4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gasser, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0, - 59 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0, 59]: Table_cell: Validation: Gasser, A., 2002a", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 200.1, - 41.812134, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Gasser, A., 2002c ", - "textAfter": ", 2002d Reports:", - "startOffset": 45779, - "endOffset": 45789, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "28cde9e0533a583ada72da5020fe0b64", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 27 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 27]: Table_cell: Zampakou M. (2020). Statement", - "color": null, - "positions": [ - { - "rectangle": [ - 241.76059, - 203.57999, - 103.52438, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "azoxystrobin/fenpropidin SE (150/280). ", - "textAfter": ", Muenchwilen AG,", - "startOffset": 17572, - "endOffset": 17596, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7527bca15c58ef7ed9a601e5bf648f09", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 5, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 51 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 103957, - "endOffset": 103963, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bd63f0acb8d2fe2d2132261b341c5e36", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dreßler K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 29, - 1, - 24 - ], - "closestHeadline": "Table 5.2-9: Validated methods for the generation of pre-authorization data in support of A23317A in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[29, 1, 24]: Table_cell: Method: Dreßler K., 2020", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 491.27, - 42.7583, - 10.526819 - ], - "pageNumber": 21 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2020 Report", - "startOffset": 41644, - "endOffset": 41654, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "866657184e3a33bbc0eec24ad05b507a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kleebaum, K.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 7]: Table_cell: Kleebaum, K.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 55.825798, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 104109, - "endOffset": 104121, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "85dd18214ce2f38237c875c4c5f8972e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Bocksch, S", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 88, - 3, - 2 - ], - "closestHeadline": "A 2.1.1.5 Description of analytical methods for the determination of residues in support of residues studies (KCP1 5.1.2.5) ", - "section": "[88, 3, 2]: Paragraph: Bocksch, S (2008)", - "color": null, - "positions": [ - { - "rectangle": [ - 198.53, - 698.42, - 49.668976, - 11.017679 - ], - "pageNumber": 61 - } - ], - "textBefore": "", - "textAfter": " (2008)", - "startOffset": 116414, - "endOffset": 116424, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "09c45bcc5e6ea350478c94627c817927", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 15]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 294.23, - 61.43332, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "VV-890581 Test Facility ", - "textAfter": " GmbH GLP Unpublished", - "startOffset": 103420, - "endOffset": 103433, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b618197b1ee7abe2e33128c3e4b18cc6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ryan J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4]: Table: #cols: 5, #rows: 13, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 190.49997, - 29.970001, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": ", Sapiets A.", - "startOffset": 33863, - "endOffset": 33870, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "147ecf461d880cf2a2f5fd3b52bb58b8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 2, - 1, - 3 - ], - "closestHeadline": "5.2 Methods used for the generation of pre-authorization data (KCP 5.1) ", - "section": "[5, 2, 1, 3]: Table_cell: Zampakou, M. 2021. SF-1057/1", - "color": null, - "positions": [ - { - "rectangle": [ - 200.09, - 684.62, - 37.27031, - 10.526819 - ], - "pageNumber": 7 - } - ], - "textBefore": "Issued date 04.01.2021, ", - "textAfter": " File No. VV-889362", - "startOffset": 12533, - "endOffset": 12541, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d16d287a7a550ae9cddab4e349d34e89", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4, 4]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 404.83, - 726.86, - 31.03537, - 10.44714 - ], - "pageNumber": 17 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 30914, - "endOffset": 30920, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "846f3383fd1ba13ace9a8f91e82912dd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 3 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 3]: Table_cell: Kettner R. (2011). Analytical", - "color": null, - "positions": [ - { - "rectangle": [ - 293.08444, - 475.55, - 121.3367, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "Formulation by HPLC. ", - "textAfter": ", Muenchwilen, Switzerland.", - "startOffset": 20787, - "endOffset": 20814, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0c36e5c9a3e41ebb9c62d5c44190f981", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 54 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 54]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 256.85995, - 32.957703, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "RAM 305/03 Validation: ", - "textAfter": ".J., 1999 Report", - "startOffset": 68372, - "endOffset": 68380, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d75327594a6c2e13013b1c1b89705bf4", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 150, - 2, - 2 - ], - "closestHeadline": "A 2.1.2.2.1.1 Method validation ", - "section": "[150, 2, 2]: Paragraph: Azoxystrobin and R230310: Validation", - "color": null, - "positions": [ - { - "rectangle": [ - 366.22427, - 566.15, - 31.773102, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "of Residues in ", - "textAfter": " Muscle, Fat and", - "startOffset": 149606, - "endOffset": 149612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a95e3f254459330a388c178a223b8774", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 21]: Table_cell: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 196.04999, - 95.422, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "ICI5504/1651 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 108954, - "endOffset": 108979, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9ce7cf9aa4527e019a1e0fc31dad95f6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Link T., Poperechna N., Crook S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 7]: Table_cell: Link T., Poperechna N.,", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 32.539314, - 10.526819 - ], - "pageNumber": 56 - }, - { - "rectangle": [ - 121.1, - 415.46, - 61.34365, - 10.526819 - ], - "pageNumber": 56 - }, - { - "rectangle": [ - 121.1, - 403.91, - 35.577126, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 110794, - "endOffset": 110826, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "39abb1af62421bb08f8b52f0ff271627", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Niefern-Öschelbronn", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[273, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 467.17142, - 720.74, - 71.785736, - 11.017679 - ], - "pageNumber": 106 - }, - { - "rectangle": [ - 70.824, - 707.9, - 25.789429, - 11.017679 - ], - "pageNumber": 106 - } - ], - "textBefore": "Strasse 24, 75223 ", - "textAfter": ", Germany", - "startOffset": 215990, - "endOffset": 216009, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "92455c46b2729a205f03cb7961c04dc9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "SGS Institut Fresenius GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 27]: Table_cell: Azoxystrobin - Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 132.29999, - 119.769135, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "ICI5504_12486 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 110583, - "endOffset": 110610, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "df542e3e7001bfc3b917962471447f37", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 16 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 16]: Table_cell: Milk (bovine)", - "color": null, - "positions": [ - { - "rectangle": [ - 156.36656, - 530.75, - 27.300354, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Milk (", - "textAfter": ")", - "startOffset": 35102, - "endOffset": 35108, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fdc65152c0570966b39d0d83e9f7d259", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.10 Analytical method 10 – ECO_029_03A ", - "section": "[333, 2, 1]: Paragraph: Report: Kovacevic E. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 214.62001, - 59.74852, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "Report: ", - "textAfter": " (2018), Fenpropidin –", - "startOffset": 262219, - "endOffset": 262231, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7298ba0c6d703659deac45c4c651098d", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "livestock", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 3, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 3, 0]: Paragraph: (a): Residue definition for", - "color": null, - "positions": [ - { - "rectangle": [ - 249.60306, - 308.73, - 31.642944, - 10.095 - ], - "pageNumber": 18 - } - ], - "textBefore": "potentially fed to ", - "textAfter": " as assessed in", - "startOffset": 37034, - "endOffset": 37043, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d930d8ac10a64f3d0c42e124df2b850d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Richards, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 25]: Table_cell: Richards, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 155.37, - 48.545036, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 109016, - "endOffset": 109028, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef5b4d1886bc140d15388b840e0722cc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Crawford, N.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 25]: Table_cell: Crawford, N.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 155.37, - 53.046944, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 112981, - "endOffset": 112993, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "200a913baa9b8285cd86a0775e19e7c7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 29 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 29]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 399.33, - 46.06775, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 76951, - "endOffset": 76962, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1b6d0a9b7d7b1b3acd7497bc44b19008", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4]: Table: #cols: 5, #rows: 13, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 422.49, - 44.461487, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 2004", - "startOffset": 31723, - "endOffset": 31733, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b7b2dddd5617615f55c6adce72364ab9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 623.78, - 31.03537, - 10.44714 - ], - "pageNumber": 31 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 65496, - "endOffset": 65502, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "12ecbefcaacc5a95dc8201ada19b7d93", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5]: Table: #cols: 5, #rows: 9, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 530.75, - 35.609985, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 35138, - "endOffset": 35146, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6de0f491ae7d315b5b684cb4c97bc034", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 21]: Table_cell: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 196.04999, - 50.09886, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "VV-124385 , ICI5504/1651 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 108940, - "endOffset": 108953, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "063ce0a25fac74ff428ec0376a6fcfff", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kang J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 14 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 14]: Table_cell: ILV: Kang J., 2003", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 660.98, - 30.547363, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "ILV: ", - "textAfter": ", 2003 Report", - "startOffset": 71068, - "endOffset": 71075, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ce1ec20466d9b93675b7ae09b23d66c6", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 163, - 1 - ], - "closestHeadline": "Table A 12: Recovery results from independent laboratory validation of azoxystrobin using the analytical method ", - "section": "[163, 1]: Table: #cols: 6, #rows: 8, Matrix Fortification Level (mg/kg)", - "color": null, - "positions": [ - { - "rectangle": [ - 73.944, - 188.81998, - 28.874046, - 10.526819 - ], - "pageNumber": 79 - } - ], - "textBefore": "", - "textAfter": " milk", - "startOffset": 154327, - "endOffset": 154333, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "49e97431989725daa28b0a0ed362d340", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Schuler, L.", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 7, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 13]: Table_cell: Schuler, L.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 328.67, - 44.249977, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 106982, - "endOffset": 106993, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef0c20de5db9f1d8c977fc7641376d66", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "D-04827 Gerichshain", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 2]: Paragraph: BioChem agrar GmbH, Kupferstr.", - "color": null, - "positions": [ - { - "rectangle": [ - 395.51294, - 532.91, - 95.10358, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "GmbH, Kupferstr. 6, ", - "textAfter": ", Germany Field", - "startOffset": 119050, - "endOffset": 119069, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "376214d20da348e880c03c88edad3a7b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Atkinson, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 13]: Table_cell: Atkinson, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 49.730278, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 108407, - "endOffset": 108419, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c77de07fa6646fde040969a22c36de6a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Hargreaves, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 19]: Table_cell: Hargreaves, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 253.53, - 58.604652, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 110078, - "endOffset": 110092, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d26a0be2e59135960cdeb36b815a1c2e", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 27]: Table_cell: Azoxystrobin : Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 109.26002, - 50.09886, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "VV-321041 , ICI5504/0011 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 113167, - "endOffset": 113180, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32bae9c945b7f74aebef40e10f1516cb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Tillkes M", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 29 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 29]: Table_cell: Validation: Tillkes M., 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 555.83, - 39.053223, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "Validation: ", - "textAfter": "., 1997 Report", - "startOffset": 75309, - "endOffset": 75318, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e0427583e5173aca28873c4b72d81cee", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dieterle, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0]: Table: #cols: 5, #rows: 14, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 319.28998, - 46.320007, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "REM 164.04 Validation: ", - "textAfter": ", 1993 Report:", - "startOffset": 45076, - "endOffset": 45088, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a79f477fbf1b072364a2945190ce198", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Wydra V.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 14 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 14]: Table_cell: Method & Validation: Pupp", - "color": null, - "positions": [ - { - "rectangle": [ - 459.958, - 584.15, - 39.282288, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Validation: Pupp A., ", - "textAfter": ", 2008 Report", - "startOffset": 56922, - "endOffset": 56930, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e8d9ebb051589ae2a7bbbf5160baed2", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2]: Table: #cols: 5, #rows: 11, Component of residue definition:", - "color": null, - "positions": [ - { - "rectangle": [ - 74.29056, - 457.31, - 27.30037, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "Fat (", - "textAfter": ")", - "startOffset": 76854, - "endOffset": 76860, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6a5bafe4bd2183bdde560a4ab5f6f3c3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 407.59, - 567.95, - 31.0542, - 10.44714 - ], - "pageNumber": 22 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 44019, - "endOffset": 44025, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b480426478a87a09e483f5431bda19e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dieterle R .", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 1 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 1]: Table: #cols: 5, #rows: 4, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 657.98, - 46.26422, - 10.526819 - ], - "pageNumber": 23 - } - ], - "textBefore": "", - "textAfter": ", 1992 Report:", - "startOffset": 46622, - "endOffset": 46634, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4e6c1203b4700ef76d800e1344cdd9c0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eutinger Str. 24, 75223 Niefern-Öschelbronn", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[291, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 337.0299, - 460.31, - 199.07892, - 11.017679 - ], - "pageNumber": 112 - } - ], - "textBefore": "Services Ecotox GmbH, ", - "textAfter": ", Germany", - "startOffset": 230918, - "endOffset": 230961, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3a59f22391440a7f7782435f2e8fa6cc", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 15]: Table_cell: SF-1057/1 - Determination of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 305.75, - 50.09886, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "Document No. VV-889362 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 100741, - "endOffset": 100754, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e64a2aac127dc82bedea517c826ce05d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 39, - 0 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 39, 0]: Paragraph: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 315.92996, - 56.91153, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 1999", - "startOffset": 71739, - "endOffset": 71752, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78482f19179c5f2cf566e92a2448d855", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 4, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 50 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 102758, - "endOffset": 102764, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4ed5e3bcc9b09c6201698b47fad21df4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 38, - 1 - ], - "closestHeadline": "Table 5.2-15: Validated methods for the generation of pre-authorization data for CGA289267 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[38, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 421.27, - 615.14, - 43.23645, - 10.526819 - ], - "pageNumber": 25 - } - ], - "textBefore": "Method: ", - "textAfter": " 2005 Report: REM", - "startOffset": 53533, - "endOffset": 53545, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5c450d7136d72ba7f74abc003e89a4e7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 70, - 1, - 9 - ], - "closestHeadline": "Table 5.3-13: Validated methods for fenpropidin in food of animal origin ", - "section": "[70, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 443.11, - 710.42, - 31.03537, - 10.44714 - ], - "pageNumber": 43 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 90548, - "endOffset": 90554, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1a67c3ba1bd870d8d068a0b36d169079", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 15 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 15]: Table_cell: De Benedictis S. (2011).", - "color": null, - "positions": [ - { - "rectangle": [ - 482.4445, - 399.45, - 37.160736, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "Issued date 24.11.2011, ", - "textAfter": " File No. VV-400661", - "startOffset": 17275, - "endOffset": 17283, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "24b977c0317d07eeb9bd9229dd601440", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 409, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.6 Description of Methods for the Analysis of Air (KCP 5.2.6) ", - "section": "[409, 3, 1]: Paragraph: Report: Robinson N.J. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 495.99957, - 496.55, - 40.89215, - 11.017679 - ], - "pageNumber": 145 - } - ], - "textBefore": "6EY, UK (", - "textAfter": " File No. VV-125646)", - "startOffset": 305557, - "endOffset": 305565, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3c62ac08110298d4a6af753a7780a040", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richardson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 75, - 1, - 1, - 14 - ], - "closestHeadline": "Table 5.3-16: Validated methods for water ", - "section": "[75, 1, 1, 14]: Table_cell: GRM024.03A Richardson, 2007 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 412.75, - 237.17996, - 45.507324, - 10.526819 - ], - "pageNumber": 44 - } - ], - "textBefore": "GRM024.03A ", - "textAfter": ", 2007 Report", - "startOffset": 95653, - "endOffset": 95663, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f04edc6ddfcfe250b98f124c7964d088", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 27 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 27]: Table_cell: Zampakou M. (2020). Statement", - "color": null, - "positions": [ - { - "rectangle": [ - 199.85, - 75.75999, - 118.91113, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "(azoxystrobin/fenpropidin SE (150/280)). ", - "textAfter": ", Muenchwilen, Switzerland,", - "startOffset": 21493, - "endOffset": 21520, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9060203917597f361ca31e1739a759ee", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 29 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 29]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 457.31, - 35.610016, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 76898, - "endOffset": 76906, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5c3505ce74ac84d55745cd48b9b5d647", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 1, - 2 - ], - "closestHeadline": "Table 5.2-2: Methods suitable for the determination of Toluene in plant protection product (PPP) A23317A ", - "section": "[14, 1, 2]: Table_cell: Author(s), year", - "color": null, - "positions": [ - { - "rectangle": [ - 74.064, - 479.75, - 31.035362, - 10.44714 - ], - "pageNumber": 10 - } - ], - "textBefore": "", - "textAfter": "(s), year", - "startOffset": 18755, - "endOffset": 18761, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "41f7254dbd3c4e05709f3d1436eb09e5", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 306, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[306, 1]: Paragraph: Water samples are analysed", - "color": null, - "positions": [ - { - "rectangle": [ - 423.13248, - 279.78, - 85.97949, - 11.017679 - ], - "pageNumber": 118 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The analytical", - "startOffset": 246121, - "endOffset": 246138, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4dea593cc607c62da03bb433cae517fa", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "livestock", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 45, - 2, - 0 - ], - "closestHeadline": "Table 5.3-1: Relevant residue definitions for monitoring/enforcement and levels for which compliance is required ", - "section": "[45, 2, 0]: Paragraph: *The RMS, following evaluation", - "color": null, - "positions": [ - { - "rectangle": [ - 235.89603, - 150.77994, - 31.669952, - 10.095 - ], - "pageNumber": 30 - } - ], - "textBefore": "potentially fed to ", - "textAfter": " as assessed in", - "startOffset": 64255, - "endOffset": 64264, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4b7dce18e6165de5274113dfd2f80481", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pupp A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.12 Analytical method 12 - fenpropidin residues in water ", - "section": "[344, 2, 1]: Paragraph: Report: Pupp A., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 100.00002, - 35.515686, - 11.017679 - ], - "pageNumber": 129 - } - ], - "textBefore": "Report: ", - "textAfter": ", Wydra V.", - "startOffset": 271489, - "endOffset": 271496, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "96eacccd68b32c1433620e442332b0d0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 27]: Table_cell: Azoxystrobin : Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 109.26002, - 95.422, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "ICI5504/0011 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 113181, - "endOffset": 113206, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d6d112b238ded7b80b1e05babe82af9", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 149, - 1, - 3 - ], - "closestHeadline": "A 2.1.2.2.1 Analytical method 1: RAM 399/01 ", - "section": "[149, 1, 3]: Paragraph: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 339.33075, - 373.17, - 31.773102, - 11.017679 - ], - "pageNumber": 76 - } - ], - "textBefore": "and R230310 in ", - "textAfter": " Muscle Tissue, Fat", - "startOffset": 148761, - "endOffset": 148767, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b638a01980faf798da8a3bef48001ba8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gasser, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0, - 59 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0, 59]: Table_cell: Validation: Gasser, A., 2002a", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 223.13998, - 41.880005, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Gasser, A., 2002a ", - "textAfter": ", 2002b Gasser,", - "startOffset": 45743, - "endOffset": 45753, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f7065a12bbffa9fed01105a1b0aa4072", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Report Zampakou, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 2, - 1 - ], - "closestHeadline": "5.2 Methods used for the generation of pre-authorization data (KCP 5.1) ", - "section": "[5, 2, 1]: Table: #cols: 2, #rows: 12, Reference: KCP 5.1.1 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 76.824, - 719.18, - 27.22068, - 10.526819 - ], - "pageNumber": 7 - }, - { - "rectangle": [ - 200.09, - 719.18, - 59.25, - 10.526819 - ], - "pageNumber": 7 - } - ], - "textBefore": "Reference: KCP 5.1.1 ", - "textAfter": " 2021. SF-1057/1 –", - "startOffset": 12308, - "endOffset": 12327, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5c2f2afd3f63f7c6ac545bcba113a816", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 90, - 4 - ], - "closestHeadline": "I. MATERIAL AND METHODS ", - "section": "[90, 4]: Paragraph: Content 252 g/L Source:", - "color": null, - "positions": [ - { - "rectangle": [ - 76.224, - 707.42, - 30.06192, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "Reference: ASJ10008-03 (Batch) ", - "textAfter": " 99.7% Storage Conditions:", - "startOffset": 118647, - "endOffset": 118654, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ccfd1e22dbf15a1f4d291782ff918a00", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gizler A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 24]: Table_cell: ILV: Lakaschus S., Gizler", - "color": null, - "positions": [ - { - "rectangle": [ - 451.19806, - 452.15, - 37.14087, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "ILV: Lakaschus S., ", - "textAfter": ", 2017 Report", - "startOffset": 65990, - "endOffset": 65999, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "16e3abc1b2408b0fcfd79825f33b1fb5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Zampakou M.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 8, - 1, - 4 - ], - "closestHeadline": "Table 5.2-1: Methods suitable for the determination of the active substances Azoxystrobin and Fenpropidin in plant protection product A23317A ", - "section": "[8, 1, 4]: Table_cell: Zampakou M., 2020", - "color": null, - "positions": [ - { - "rectangle": [ - 272.33, - 687.86, - 59.26999, - 10.526819 - ], - "pageNumber": 8 - } - ], - "textBefore": "", - "textAfter": " 2020", - "startOffset": 14361, - "endOffset": 14373, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6728cef6d434b3eb1e5ca0d0a29998a7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hargreaves", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 74, - 1, - 1, - 11 - ], - "closestHeadline": "Table 5.3-15: Validated methods for soil ", - "section": "[74, 1, 1, 11]: Table_cell: Method: GRM024.02A Hargreaves, 2007", - "color": null, - "positions": [ - { - "rectangle": [ - 423.07, - 527.63, - 45.567047, - 10.526819 - ], - "pageNumber": 44 - } - ], - "textBefore": "Method: GRM024.02A ", - "textAfter": ", 2007 Report", - "startOffset": 94912, - "endOffset": 94922, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ead84b9d658cc56e17cc596eabc08a5e", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 168, - 1 - ], - "closestHeadline": "Limit of Quantification ", - "section": "[168, 1]: Paragraph: The limit of quantification", - "color": null, - "positions": [ - { - "rectangle": [ - 276.38882, - 466.79, - 29.852142, - 11.017679 - ], - "pageNumber": 80 - } - ], - "textBefore": "for azoxystrobin in ", - "textAfter": " milk and muscle", - "startOffset": 155617, - "endOffset": 155623, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "45006b76cb062aa9a7482de3a1669705", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Amic, S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 70, - 1 - ], - "closestHeadline": "Table 5.3-13: Validated methods for fenpropidin in food of animal origin ", - "section": "[70, 1]: Table: #cols: 5, #rows: 16, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 423.91, - 616.34, - 35.238464, - 10.526819 - ], - "pageNumber": 43 - } - ], - "textBefore": "Report: RJ3636B ILV: ", - "textAfter": " (2006) Report: SYN/FEN/05001", - "startOffset": 90702, - "endOffset": 90710, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0ef53d695dd5322deafed61751610168", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "livestock", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 37, - 1, - 5, - 1 - ], - "closestHeadline": "Table 5.2-14: Statement on extraction efficiency ", - "section": "[37, 1, 5, 1]: Paragraph: Due to differences in", - "color": null, - "positions": [ - { - "rectangle": [ - 355.18127, - 244.37997, - 36.01544, - 10.526819 - ], - "pageNumber": 24 - } - ], - "textBefore": "systems used between ", - "textAfter": " metabolism studies and", - "startOffset": 52055, - "endOffset": 52064, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bf9dc8b5876574a2f4c60c029231fd73", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 27]: Table_cell: Azoxystrobin/fenpropidin SE (A23317A) –", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 132.29999, - 61.43332, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "VV-891648 Test Facility ", - "textAfter": " GmbH GLP Unpublished", - "startOffset": 106468, - "endOffset": 106481, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6ad03ccd66aa5f946a475afc9dd4a9c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 44, - 0 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 44, 0]: Paragraph: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 254.69998, - 56.91153, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 1999", - "startOffset": 70457, - "endOffset": 70470, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e029fa4718f76224cef648f39d956167", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 44, - 0 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 44, 0]: Paragraph: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 231.77994, - 44.461487, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Report RAM 305/02 ", - "textAfter": " et al., 2004", - "startOffset": 70502, - "endOffset": 70512, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2234c245e2939815431456ec7f971455", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 9 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 9]: Table_cell: Method: Burke S.R., 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 449.14, - 606.71, - 40.985443, - 10.526819 - ], - "pageNumber": 15 - } - ], - "textBefore": "RJ1557B Burke S.R., ", - "textAfter": ", 1995 /Report", - "startOffset": 28130, - "endOffset": 28140, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f456fb4491b4476fa10d98ba5530892a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 39, - 1 - ], - "closestHeadline": "Table 5.2-16: Validated methods for the generation of pre-authorization data for CGA289268 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[39, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 405.67, - 430.41, - 44.561066, - 10.526819 - ], - "pageNumber": 26 - } - ], - "textBefore": "REM 164.06 Validation: ", - "textAfter": " (1999d) Report: 201/99", - "startOffset": 55767, - "endOffset": 55777, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9865e3ed079273bb50edfb3a811e0338", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 226, - 2, - 1 - ], - "closestHeadline": "A 2.1.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[226, 2, 1]: Paragraph: Report: Azoxystrobin - Residue", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 309.57004, - 41.013626, - 11.017679 - ], - "pageNumber": 93 - } - ], - "textBefore": "Report No. GRM057.01A, ", - "textAfter": " File No. ICI5504_11505", - "startOffset": 182642, - "endOffset": 182650, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3baf1f3625f152cb08e898ca2b885785", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[360, 3, 1]: Paragraph: Report: Hargreaves S. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 232.11032, - 623.3, - 59.538696, - 11.017679 - ], - "pageNumber": 134 - } - ], - "textBefore": "Number GRM024.02A. Syngenta, ", - "textAfter": " Inernational Research Centre,", - "startOffset": 280133, - "endOffset": 280147, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95110ec2384f392f7c5b0c5452012827", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eutinger Str. 24", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 1 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 1]: Paragraph: Field Phase Eurofins-GAB GmbH,", - "color": null, - "positions": [ - { - "rectangle": [ - 334.15, - 558.23, - 69.92737, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "Phase Eurofins-GAB GmbH, ", - "textAfter": ", 75223 Niefern", - "startOffset": 118915, - "endOffset": 118931, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "35bf322b10ca0161db638bb6980f3e04", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schmidt, K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 297, - 2, - 0 - ], - "closestHeadline": "A 2.2.1.6.5 Analytical method 5 - A23317A - fenpropidin residues in bee larval diet ", - "section": "[297, 2, 0]: Paragraph: Reference: KCP 5.1.2.6 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 415.15, - 548.87, - 53.13553, - 11.017679 - ], - "pageNumber": 115 - } - ], - "textBefore": "- Final Report. ", - "textAfter": " (2021) Report no.", - "startOffset": 238107, - "endOffset": 238118, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21282bac387116ed770e5474c8de275c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkwood A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 311, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.7 Analytical method 7 - fenpropidin residues in water ", - "section": "[311, 2, 1]: Paragraph: Report: Kirkwood A. (2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 559.67, - 58.158737, - 11.017679 - ], - "pageNumber": 120 - } - ], - "textBefore": "Report: ", - "textAfter": " (2018) Fenpropidin -", - "startOffset": 250061, - "endOffset": 250072, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e4792d8af1d179776fa4b81df005481", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services Ecotox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[282, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 131.18, - 593.51, - 205.34402, - 11.017679 - ], - "pageNumber": 109 - } - ], - "textBefore": "Test facility: ", - "textAfter": ", Eutinger Strasse", - "startOffset": 223238, - "endOffset": 223279, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cee3ac4b98c07e4284bae89fad3d4b5d", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 9]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) –", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "Document No VV-899655 ", - "textAfter": " Eurofins Agroscience Services", - "startOffset": 105605, - "endOffset": 105618, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "070738305a36595048e10168c7adffde", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 21]: Table_cell: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 196.04999, - 95.422, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "ICI5504/1651 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 102364, - "endOffset": 102389, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "25f0f11bb803112de06b22720bd6531b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 3, - 14 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 3, 14]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 602.99, - 46.035156, - 10.526819 - ], - "pageNumber": 38 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 77827, - "endOffset": 77838, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "414abd4bdc44fa9031aa20d2adb01012", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 321, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.8 Analytical method 8 - fenpropidin residues in royal jelly/ASS ", - "section": "[321, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 516.1824, - 521.75, - 20.71112, - 11.017679 - ], - "pageNumber": 122 - }, - { - "rectangle": [ - 199.73, - 508.91, - 23.967865, - 11.017679 - ], - "pageNumber": 122 - } - ], - "textBefore": "Gerichshain, Germany (", - "textAfter": " File No. VV-471037)", - "startOffset": 254558, - "endOffset": 254566, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "36b0378d1343a078579f1501cd41a58b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Author", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 82, - 1, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and not relied on ", - "section": "[82, 1, 7]: Table_cell: Author", - "color": null, - "positions": [ - { - "rectangle": [ - 110.42, - 66.66398, - 28.366089, - 10.526819 - ], - "pageNumber": 58 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 114141, - "endOffset": 114147, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "11d9d712871dff3d276f35d90330135c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gasser, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0, - 59 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0, 59]: Table_cell: Validation: Gasser, A., 2002a", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 234.65994, - 41.880005, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Validation: ", - "textAfter": ", 2002a Gasser,", - "startOffset": 45725, - "endOffset": 45735, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1a5abbe274962d5621868166c75e3fc0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 200, - 3, - 4 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 4]: Paragraph: Syngenta File No. ICI5504_12487", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 427.77, - 41.013626, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "", - "textAfter": " File No. ICI5504_12487", - "startOffset": 168017, - "endOffset": 168025, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f94e93e3fc43a097e93ba13c877768a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richardson M", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 393, - 3 - ], - "closestHeadline": "Conclusion ", - "section": "[393, 3]: Paragraph: (Richardson M, 2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 445.01944, - 136.96004, - 62.696136, - 11.017679 - ], - "pageNumber": 140 - } - ], - "textBefore": "(", - "textAfter": ", 2007)", - "startOffset": 294823, - "endOffset": 294835, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "611bcc200d2ad6da40010ee810fed380", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Marini J.P.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 9]: Table_cell: Method & Validation: Marini", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 647.9, - 44.092896, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": ", 2016 Report", - "startOffset": 56803, - "endOffset": 56814, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c30af97d61b1ff98061a7be9459ee18a", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 27]: Table_cell: Azoxystrobin/fenpropidin SE (A23317A) –", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 132.29999, - 50.09886, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "Document No. VV-891648 ", - "textAfter": " BioChem agrar GmbH", - "startOffset": 106454, - "endOffset": 106467, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c50c50cd397df6f531966a61a1da14df", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 2, - 1, - 15 - ], - "closestHeadline": "5.2 Methods used for the generation of pre-authorization data (KCP 5.1) ", - "section": "[5, 2, 1, 15]: Table_cell: Zampakou, M. 2020. Azoxystrobin/", - "color": null, - "positions": [ - { - "rectangle": [ - 325.1403, - 495.47, - 120.227325, - 10.526819 - ], - "pageNumber": 7 - } - ], - "textBefore": "Analytical Method SF-1057/1. ", - "textAfter": ", Muenchwilen, Switzerland.", - "startOffset": 12750, - "endOffset": 12777, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6da624d4a745b307a25ba1aec333080b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Amic S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 59, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-8: Validated methods for water ", - "section": "[59, 1, 0, 19]: Table_cell: Method: Amic S., 2012", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 544.07, - 32.728546, - 10.526819 - ], - "pageNumber": 40 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2012a /", - "startOffset": 82474, - "endOffset": 82481, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21eeaf4f2c82be9325f6c5c792d9b0d3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 14 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 14]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 637.94, - 44.461487, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Report RAM 305/02 ", - "textAfter": " et al., 2004", - "startOffset": 69410, - "endOffset": 69420, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8ce903fd2e0ef0a12524bb133b7c49a3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Tillkes M", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 14 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 14]: Table_cell: Validation: Tillkes M., 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 660.98, - 39.053223, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "Validation: ", - "textAfter": "., 1997 Report", - "startOffset": 75127, - "endOffset": 75136, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2cbc529c50d82034f9663c9c0220900e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services Ecotox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[273, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 131.18, - 720.74, - 205.34402, - 11.017679 - ], - "pageNumber": 106 - } - ], - "textBefore": "Test facility: ", - "textAfter": ", Eutinger Strasse", - "startOffset": 215920, - "endOffset": 215961, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "07ca4382be0ee499f5a0c239c7501941", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kettner R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 3 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 3]: Table_cell: Kettner R. (2011). Analytical", - "color": null, - "positions": [ - { - "rectangle": [ - 197.09, - 487.07, - 42.539154, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "", - "textAfter": " (2011). Analytical Method", - "startOffset": 20689, - "endOffset": 20699, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a59ed7c6442de4c21ba4b14362d5b6ec", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Royer, A.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 13]: Table_cell: Royer, A.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 39.152763, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 111047, - "endOffset": 111056, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b1e23aa86fbe5120bd46a1efd8eb4dcc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 29 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 29]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 371.37, - 44.461487, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "1999 Report RJ2770B ", - "textAfter": ", 2004 Report", - "startOffset": 70034, - "endOffset": 70044, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6af93c14d4608d0a2f3cb485ddf8e471", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 70, - 1 - ], - "closestHeadline": "Table 5.3-13: Validated methods for fenpropidin in food of animal origin ", - "section": "[70, 1]: Table: #cols: 5, #rows: 16, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 423.91, - 662.3, - 43.23645, - 10.526819 - ], - "pageNumber": 43 - } - ], - "textBefore": "REM 164.10 Validation: ", - "textAfter": " 2005 Report: RJ3636B", - "startOffset": 90663, - "endOffset": 90675, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22764425acf8d86ca4d66548b5614375", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 21]: Table_cell: Fenpropidin - Residue Method", - "color": null, - "positions": [ - { - "rectangle": [ - 304.97, - 218.97, - 95.390594, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "CGA114900/4910 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 110267, - "endOffset": 110292, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d09154ed22574db93f765b1f0635d98c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 2, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 48 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 100231, - "endOffset": 100237, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bca6d3cb15af0492f89f613148c039a5", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "hen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 21 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 21]: Table_cell: Eggs (hen)", - "color": null, - "positions": [ - { - "rectangle": [ - 156.36656, - 501.59, - 14.432037, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Eggs (", - "textAfter": ")", - "startOffset": 35317, - "endOffset": 35320, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "732e8c3491e6831bdf1181de08e13246", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ehmke A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 111, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[111, 2]: Paragraph: (Ehmke A., 2015)", - "color": null, - "positions": [ - { - "rectangle": [ - 463.06, - 462.95, - 44.667847, - 11.017679 - ], - "pageNumber": 67 - } - ], - "textBefore": "(", - "textAfter": ", 2015)", - "startOffset": 129771, - "endOffset": 129779, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b38ccc09694165d6cf9ad810fee42da", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.12 Analytical method 12 - fenpropidin residues in water ", - "section": "[344, 2, 1]: Paragraph: Report: Pupp A., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 475.07864, - 74.680016, - 40.89212, - 11.017679 - ], - "pageNumber": 129 - } - ], - "textBefore": "Rossdorf Germany (", - "textAfter": " File", - "startOffset": 271687, - "endOffset": 271695, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f451668d0e04c6b880d68d6577fe174b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 27]: Table_cell: Validation of the DFG", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 109.26002, - 50.09886, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "VV-327232 , ICI5504/1368 ", - "textAfter": " Dr. Specht &", - "startOffset": 107844, - "endOffset": 107857, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "306efc30c69af5bfab1a6b1d5ef9236f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Amic, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 25]: Table_cell: Amic, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 166.77002, - 35.238503, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 111557, - "endOffset": 111565, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40d33cfcab2c4982cc6d36fe4ac47b84", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Croucher A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 59 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 59]: Table_cell: ILV: Kang J., 2003", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 141.17996, - 49.461426, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "2003 Report CEMR-1708 ", - "textAfter": ", 2002 Report", - "startOffset": 68651, - "endOffset": 68662, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f45af46acefca2f3df633b98b0c0dfef", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burke S.R.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 1, - 24, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 1, 24, 0]: Paragraph: Method: Burke S.R., 1996", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 550.19, - 46.679993, - 10.526819 - ], - "pageNumber": 14 - } - ], - "textBefore": "Method: ", - "textAfter": " 1996 Report No.", - "startOffset": 27618, - "endOffset": 27629, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b17a7e36a4ef0fdfcfbf27eba522404", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "CEM Analytical Services", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 15]: Table_cell: Fenpropidin (CGA114900) - Independent", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 282.71, - 102.17975, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "CGA114900_10695 Test Facility ", - "textAfter": ", Ltd. GLP", - "startOffset": 112609, - "endOffset": 112632, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "474697a4892ada35eed43b2cf1f66340", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 15]: Table_cell: Fenpropidin - Repeated Exposure", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 294.23, - 50.09886, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "VV-470837 , CGA114900_10971 ", - "textAfter": " BioChem agrar GmbH", - "startOffset": 104595, - "endOffset": 104608, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c377f17356dc00553ca3b6bafe3c54fe", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Royer A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.1.2 Independent laboratory validation ", - "section": "[374, 2, 1]: Paragraph: Report: Royer A. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 485.51, - 41.13504, - 11.017679 - ], - "pageNumber": 136 - } - ], - "textBefore": "Report: ", - "textAfter": " (2007) Validation of", - "startOffset": 285440, - "endOffset": 285448, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "74703ef7a6753a3c94c7f30e11ec5243", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Brown D", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 241, - 2, - 1 - ], - "closestHeadline": "A 2.1.2.5.1.2 Independent laboratory validation ", - "section": "[241, 2, 1]: Paragraph: Report: Brown D (2019).", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 172.26003, - 40.71553, - 11.017679 - ], - "pageNumber": 97 - } - ], - "textBefore": "Report: ", - "textAfter": " (2019).", - "startOffset": 191965, - "endOffset": 191972, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "be30293aa0b0a211489400dc44912b5c", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schmidt K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 304, - 1, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[304, 1, 2]: Paragraph: (Schmidt K., 2021)", - "color": null, - "positions": [ - { - "rectangle": [ - 457.52945, - 91.36001, - 50.13266, - 11.017679 - ], - "pageNumber": 117 - } - ], - "textBefore": "(", - "textAfter": ", 2021)", - "startOffset": 242451, - "endOffset": 242461, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "febc0d1ec6fe9ec13530c1f2cc73e270", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 122, - 3, - 1 - ], - "closestHeadline": "Conclusion ", - "section": "[122, 3, 1]: Paragraph: Report Analytical Method Development", - "color": null, - "positions": [ - { - "rectangle": [ - 476.38, - 436.05, - 40.89209, - 11.017679 - ], - "pageNumber": 70 - } - ], - "textBefore": "Report No. IF-04/00192716, ", - "textAfter": " File No. VV-379800", - "startOffset": 135762, - "endOffset": 135770, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2004e448ef8625ee33a9fc0806bbdbf5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 149, - 1, - 5 - ], - "closestHeadline": "A 2.1.2.2.1 Analytical method 1: RAM 399/01 ", - "section": "[149, 1, 5]: Paragraph: Syngenta File No. VV-124385", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 323.13, - 41.013626, - 11.017679 - ], - "pageNumber": 76 - } - ], - "textBefore": "", - "textAfter": " File No. VV-124385", - "startOffset": 148865, - "endOffset": 148873, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac4411313763140f46da321139a825fc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kravchuk O.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 200, - 3, - 12 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 12]: Paragraph: Report: Link T., Kravchuk", - "color": null, - "positions": [ - { - "rectangle": [ - 238.36998, - 164.46004, - 56.734573, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "Report: Link T., ", - "textAfter": "", - "startOffset": 168669, - "endOffset": 168680, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6a2d558bb4227af436232f27474dbc41", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 35, - 2, - 9 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 2, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 407.59, - 691.7, - 31.03537, - 10.44714 - ], - "pageNumber": 24 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 50701, - "endOffset": 50707, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "425f1b1fdcb893ca55b29b3c8aeb99ea", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "De Benedictis S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 1, - 3 - ], - "closestHeadline": "Table 5.2-2: Methods suitable for the determination of Toluene in plant protection product (PPP) A23317A ", - "section": "[14, 1, 3]: Table_cell: Adolph S. (2011), De", - "color": null, - "positions": [ - { - "rectangle": [ - 359.43988, - 479.75, - 66.68228, - 10.526819 - ], - "pageNumber": 10 - } - ], - "textBefore": "Adolph S. (2011), ", - "textAfter": " (2011), Zampakou M.", - "startOffset": 18789, - "endOffset": 18805, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d1694c21c1290ae455c6bba1254ac916", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kupferstraße 6, 04827 Machern OT Gerichshain, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 264, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[264, 1]: Paragraph: Test facility: BioChem agrar,", - "color": null, - "positions": [ - { - "rectangle": [ - 440.79388, - 120.04, - 97.88074, - 11.017679 - ], - "pageNumber": 102 - }, - { - "rectangle": [ - 70.824, - 107.200035, - 158.92084, - 11.017679 - ], - "pageNumber": 102 - } - ], - "textBefore": "chemische Analytik GmbH, ", - "textAfter": "", - "startOffset": 208180, - "endOffset": 208233, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "30f3fbba230b4f89a877eed18ed536c5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gemrot F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 55, - 1, - 0, - 14 - ], - "closestHeadline": "Table 5.3-6: Methods for body fluids and tissues ", - "section": "[55, 1, 0, 14]: Table_cell: Method and validation: Gemrot", - "color": null, - "positions": [ - { - "rectangle": [ - 400.15, - 648.38, - 41.130005, - 10.526819 - ], - "pageNumber": 39 - } - ], - "textBefore": "Method and validation: ", - "textAfter": ", 2011 Report", - "startOffset": 80150, - "endOffset": 80159, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6bef1f3bffca2a8a4962764e18c43130", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Brown D", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 59, - 1, - 0, - 24 - ], - "closestHeadline": "Table 5.3-8: Validated methods for water ", - "section": "[59, 1, 0, 24]: Table_cell: Brown D (2019). Syngenta", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 491.87, - 36.911804, - 10.526819 - ], - "pageNumber": 40 - } - ], - "textBefore": "", - "textAfter": " (2019). Syngenta File", - "startOffset": 82588, - "endOffset": 82595, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b802cd24386df34cb2d92ca5a23ecf57", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 3 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 3]: Table: #cols: 5, #rows: 8, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 518.03, - 32.957703, - 10.526819 - ], - "pageNumber": 16 - } - ], - "textBefore": "RAM 305/01 Validation ", - "textAfter": ".J., 1999 Report", - "startOffset": 29841, - "endOffset": 29849, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d57119dd51df8332540b9edb192eff78", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hargreaves S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 360, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[360, 3, 1]: Paragraph: Report: Hargreaves S. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 648.62, - 62.61888, - 11.017679 - ], - "pageNumber": 134 - } - ], - "textBefore": "Report: ", - "textAfter": " (2007) Fenpropidin -", - "startOffset": 279989, - "endOffset": 280002, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1fb655eef3a3556be416052c747e14c7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Pelz S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 49 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 49]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 441.12848, - 213.17996, - 27.69873, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "Validation: Weeren R., ", - "textAfter": ", 2001 Report", - "startOffset": 66534, - "endOffset": 66541, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "480d18536e48db8868763a12253297d6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 0]: Table: #cols: 5, #rows: 6, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 455.16806, - 196.85995, - 41.10193, - 10.526819 - ], - "pageNumber": 13 - } - ], - "textBefore": "Method: Clarke D.M., ", - "textAfter": ", 1994 Report", - "startOffset": 25362, - "endOffset": 25372, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3793698c94cc37be6304d2d907b730b0", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 21]: Table_cell: ILV for the determination", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 196.04999, - 50.09886, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "VV-380727 , ICI5504/2948 ", - "textAfter": " Dr. Specht &", - "startOffset": 107541, - "endOffset": 107554, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a61d33e2e7ab117e2f5d553136c71b16", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 29, - 1, - 14 - ], - "closestHeadline": "Table 5.2-9: Validated methods for the generation of pre-authorization data in support of A23317A in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[29, 1, 14]: Table_cell: Method: Schuler L., 2020", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 595.67, - 41.67267, - 10.526819 - ], - "pageNumber": 21 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2020 Report", - "startOffset": 41422, - "endOffset": 41432, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c1af3895e83095194a6a084f987e0c95", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kleebaum K.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 34 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 34]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 191.34, - 53.315918, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "New study Validation: ", - "textAfter": ", 2018 Report", - "startOffset": 57587, - "endOffset": 57598, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a1e463b34b33680670cedae479ac88de", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atkinson S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 19 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 19]: Table_cell: ILV: Atkinson S., 2003", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 544.79, - 47.22043, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "ILV: ", - "textAfter": ", 2003 Report", - "startOffset": 76724, - "endOffset": 76735, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7a14c1a712266a0f3b252375a18227b5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Pelz S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 19]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 441.12848, - 550.91, - 27.69873, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "Validation: Weeren R., ", - "textAfter": ", 2001 Report", - "startOffset": 65812, - "endOffset": 65819, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ad72ab2213d58b169bd10067dccff08e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 39, - 1 - ], - "closestHeadline": "Table 5.2-16: Validated methods for the generation of pre-authorization data for CGA289268 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[39, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 405.67, - 603.71, - 43.23645, - 10.526819 - ], - "pageNumber": 26 - } - ], - "textBefore": "Method: ", - "textAfter": " 2005 Report: REM", - "startOffset": 55382, - "endOffset": 55394, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "09459887994fd1e10647783dadc25c21", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 29 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 29]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 393.09, - 53.913544, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2018 Report", - "startOffset": 57311, - "endOffset": 57323, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6ddfbbeb9300921994cbbe53cd74ebcb", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 322, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[322, 1]: Paragraph: Diet (royal jelly/ASS containing", - "color": null, - "positions": [ - { - "rectangle": [ - 344.4701, - 278.46005, - 84.79822, - 11.017679 - ], - "pageNumber": 122 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The limit", - "startOffset": 255080, - "endOffset": 255097, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dfdf5d02ffd6f88c6b29deae5e1ecd70", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler, L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 4, - 0 - ], - "closestHeadline": "A 2.2.1.6.4 Analytical method 4 - A23317A - fenpropidin residues in water ", - "section": "[289, 4, 0]: Paragraph: Report Azoxystrobin/Fenpropidin SE (A23317A)", - "color": null, - "positions": [ - { - "rectangle": [ - 327.89093, - 718.1, - 48.266907, - 11.017679 - ], - "pageNumber": 112 - } - ], - "textBefore": "- Final Report. ", - "textAfter": " (2020) Report no.", - "startOffset": 230460, - "endOffset": 230471, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a35ef7efc015e7110a5cc62fd941a2b1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Crawford N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 61, - 1, - 0, - 14 - ], - "closestHeadline": "Table 5.3-9: Validated methods for air ", - "section": "[61, 1, 0, 14]: Table_cell: Method and validation: Crawford", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 202.97995, - 50.53708, - 10.526819 - ], - "pageNumber": 40 - } - ], - "textBefore": "Method and validation: ", - "textAfter": ", 2001 /", - "startOffset": 83520, - "endOffset": 83531, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c3d8c23c56bc984c47f488b8d7f2a980", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Marini J.P.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 343, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[343, 2]: Paragraph: (Marini J.P., 2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 458.98, - 296.97006, - 48.57602, - 11.017679 - ], - "pageNumber": 129 - } - ], - "textBefore": "(", - "textAfter": ", 2016)", - "startOffset": 271146, - "endOffset": 271157, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "42644afc6a41635b6212402f6d29c977", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 3, - 9 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 3, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 716.18, - 31.03537, - 10.44714 - ], - "pageNumber": 38 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 77684, - "endOffset": 77690, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "988b3d0f1b7eb615afff3c729dfc7ec1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Amic, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 19]: Table_cell: Amic, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 253.53, - 35.238503, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 111294, - "endOffset": 111302, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c0b387aaf6f825dda6df3d9cbbe1bc28", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 151, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[151, 1]: Paragraph: Analytical method RAM 399/01", - "color": null, - "positions": [ - { - "rectangle": [ - 300.21317, - 371.97, - 29.973572, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "was validated for ", - "textAfter": " muscle, fat and", - "startOffset": 149935, - "endOffset": 149941, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3f4b6396c31ee1887fffaf54d50091fd", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 409, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.6 Description of Methods for the Analysis of Air (KCP 5.2.6) ", - "section": "[409, 3, 1]: Paragraph: Report: Robinson N.J. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 521.87, - 53.06929, - 11.017679 - ], - "pageNumber": 145 - } - ], - "textBefore": "Report: ", - "textAfter": ".J. (2007) Fenpropidin:", - "startOffset": 305349, - "endOffset": 305359, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "757f574f52001421f418e4da80d40d47", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 3, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 101315, - "endOffset": 101321, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3732aa705cdbe45c9252f6f4006a1e9a", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 21]: Table_cell: Azoxystrobin SC (A12705B) -", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 218.97, - 50.09886, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "Document No VV-414544 ", - "textAfter": " ibacon GmbH GLP", - "startOffset": 103639, - "endOffset": 103652, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ca5b475a7fc9a216133b071d91418648", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 15]: Table_cell: A16283D - Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 211.16998, - 50.09886, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "VV-400661 , A16283D_10107 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 99943, - "endOffset": 99956, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e6553fe4519d08224560df695efde237", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kleebaum K.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 332, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[332, 2]: Paragraph: (Kleebaum K., 2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 449.02, - 436.89, - 58.655518, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "(", - "textAfter": ", 2018)", - "startOffset": 261773, - "endOffset": 261784, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c90321dc53219661d295be5b243771c8", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Link", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 57, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-7: Validated methods for soil ", - "section": "[57, 1, 0, 19]: Table_cell: Method: Link et al.", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 243.65994, - 18.874237, - 10.526819 - ], - "pageNumber": 39 - } - ], - "textBefore": "Report GRM057.06A/ICI5504_12487 Validation: ", - "textAfter": " et al. 2019", - "startOffset": 81295, - "endOffset": 81299, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac538fa69ee8381a4a8622aaf2a19b51", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Clarke D.M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 9 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 9]: Table_cell: Method: Burke S.R., 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 632.66, - 50.188416, - 10.526819 - ], - "pageNumber": 15 - } - ], - "textBefore": "RAM 243/05 Validation: ", - "textAfter": ", Sapiets A.,", - "startOffset": 28073, - "endOffset": 28084, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "91a4c83edc6538f6006f6c1200dd83fc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Link T.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 200, - 3, - 1 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 1]: Paragraph: Report: Link T., Poperechna", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 496.43, - 33.119995, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "Report: ", - "textAfter": ", Poperechna N.,", - "startOffset": 167832, - "endOffset": 167839, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8c35bcd578a3753a0c116ca3adb50870", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.10 Analytical method 10 – ECO_029_03A ", - "section": "[333, 2, 1]: Paragraph: Report: Kovacevic E. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 230.67513, - 151.26003, - 40.892166, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "Niefern-Öschelbronn, Germany (", - "textAfter": " File No. VV-469879)", - "startOffset": 262571, - "endOffset": 262579, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c9cf326f1c63f2ce996fb46ab669f2f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 38, - 1 - ], - "closestHeadline": "Table 5.2-15: Validated methods for the generation of pre-authorization data for CGA289267 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[38, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 421.27, - 499.43, - 44.561066, - 10.526819 - ], - "pageNumber": 25 - } - ], - "textBefore": "Method: ", - "textAfter": " (1999a) Report: REM", - "startOffset": 53868, - "endOffset": 53878, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6c35d9ef25d26ca05875bcd7707f1bf8", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gemrot, F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 153, - 2 - ], - "closestHeadline": "Specificity ", - "section": "[153, 2]: Paragraph: Confirmatory transition can be", - "color": null, - "positions": [ - { - "rectangle": [ - 146.98895, - 422.37, - 47.84735, - 11.017679 - ], - "pageNumber": 78 - } - ], - "textBefore": "in blood (", - "textAfter": ", 2011, Report", - "startOffset": 151865, - "endOffset": 151875, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a72e7c6df910538cb3db43b0f1f16e5f", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 27]: Table_cell: Fenpropidin T.G. - Early", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 132.29999, - 50.117813, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "VV-465445 , CGA114900_10666 ", - "textAfter": " Smithers GLP Unpublished", - "startOffset": 105180, - "endOffset": 105193, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "96c385254843090207866bd7a261fcee", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 15]: Table_cell: Fenpropidin - Acute Toxicity", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 305.75, - 50.09886, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "VV-383049 , CGA114900_10396 ", - "textAfter": " Ibacon GmbH GLP", - "startOffset": 105884, - "endOffset": 105897, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4f7e8fbac74ab871a39324cd5918ec13", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 3, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 3, 4]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 404.83, - 726.86, - 31.03537, - 10.44714 - ], - "pageNumber": 16 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 29341, - "endOffset": 29347, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "83205012ebe47473222101c90b751f12", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 27]: Table_cell: Fenpropidin - Growth Inhibition", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 132.29999, - 50.09886, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "VV-469411 , CGA114900_10912 ", - "textAfter": " Smithers Viscient GLP", - "startOffset": 103892, - "endOffset": 103905, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e76c97512cbb814899c08a58f4b7346", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kleebaum K.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 1, - 9 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 1, 9]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 610.22, - 53.315918, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "New study Validation: ", - "textAfter": ", 2018 Report", - "startOffset": 57908, - "endOffset": 57919, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6f123ec6bdfe129a02bf995d81a4233", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 38, - 1 - ], - "closestHeadline": "Table 5.2-15: Validated methods for the generation of pre-authorization data for CGA289267 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[38, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 421.27, - 453.47, - 44.561066, - 10.526819 - ], - "pageNumber": 25 - } - ], - "textBefore": "REM 164.05 Validation: ", - "textAfter": " (1999b) Report: 174/97", - "startOffset": 53918, - "endOffset": 53928, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c68129d166b5c92e380f18f84e022c8a", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 345, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[345, 1]: Paragraph: Water samples are analysed", - "color": null, - "positions": [ - { - "rectangle": [ - 423.13248, - 562.55, - 85.97949, - 11.017679 - ], - "pageNumber": 130 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The analytical", - "startOffset": 271953, - "endOffset": 271970, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5ec8f6dbcc1b3753fb66efe72715aa2", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lakaschus, S", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 131, - 2, - 1 - ], - "closestHeadline": "Reproducibility ", - "section": "[131, 2, 1]: Paragraph: Report: Independent Laboratory Validation", - "color": null, - "positions": [ - { - "rectangle": [ - 427.1342, - 474.95, - 59.395203, - 11.017679 - ], - "pageNumber": 73 - } - ], - "textBefore": "Third Party Laboratory, ", - "textAfter": "., Gizler,A. 2017,", - "startOffset": 142288, - "endOffset": 142300, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "afaf2ffe2e5913d9ef9f8134020a7ca9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 55, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.3-6: Methods for body fluids and tissues ", - "section": "[55, 1, 0, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 400.15, - 703.58, - 31.03537, - 10.44714 - ], - "pageNumber": 39 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 80020, - "endOffset": 80026, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6ec9e94814f5e97a0a463336501c6e90", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 24]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 562.07, - 56.91153, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 1999", - "startOffset": 71264, - "endOffset": 71277, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f7fd525e32716b14881fa6f02600a45", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Daphnia magna", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 289, - 4, - 0 - ], - "closestHeadline": "A 2.2.1.6.4 Analytical method 4 - A23317A - fenpropidin residues in water ", - "section": "[289, 4, 0]: Paragraph: Report Azoxystrobin/Fenpropidin SE (A23317A)", - "color": null, - "positions": [ - { - "rectangle": [ - 202.01, - 730.7, - 70.9099, - 11.0232 - ], - "pageNumber": 112 - } - ], - "textBefore": "the Water Flea ", - "textAfter": " Straus under Laboratory", - "startOffset": 230358, - "endOffset": 230371, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "67245344fcdbb09d31f799bd1d863057", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Analytik GmbH, Kupferstraße 6, 04827 Machern OT Gerichshain, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 327, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.9 Analytical method 9 – fenpropidin residues in royal jelly/ASS ", - "section": "[327, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 322.58313, - 661.58, - 214.36365, - 11.017679 - ], - "pageNumber": 124 - }, - { - "rectangle": [ - 199.73, - 648.86, - 117.06813, - 11.017679 - ], - "pageNumber": 124 - } - ], - "textBefore": "biologische und chemische, ", - "textAfter": " (Syngenta File No.", - "startOffset": 258572, - "endOffset": 258640, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a5c1cd36694c7b2c41179b8d013320de", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 131, - 2, - 1 - ], - "closestHeadline": "Reproducibility ", - "section": "[131, 2, 1]: Paragraph: Report: Independent Laboratory Validation", - "color": null, - "positions": [ - { - "rectangle": [ - 375.41513, - 462.23, - 41.01358, - 11.017679 - ], - "pageNumber": 73 - } - ], - "textBefore": "Report No. SYN-0422V, ", - "textAfter": " File No. VV-380727", - "startOffset": 142341, - "endOffset": 142349, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "524d90d35f76df6f496ae79c3912b4e1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 83, - 1, - 1 - ], - "closestHeadline": "List of data relied on not submitted by the applicant but necessary for evaluation ", - "section": "[83, 1, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 132.98, - 281.15, - 31.035355, - 10.44714 - ], - "pageNumber": 59 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 114484, - "endOffset": 114490, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21c6e45dada64be8b2a2968a40ebebb1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ehmke, A.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 19]: Table_cell: Ehmke, A.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 253.53, - 43.096947, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 103473, - "endOffset": 103482, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4bcd9feb60c6e8a7400f40e2b558d682", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 149, - 1, - 2 - ], - "closestHeadline": "A 2.1.2.2.1 Analytical method 1: RAM 399/01 ", - "section": "[149, 1, 2]: Paragraph: Report: Crook S., 2002.", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 404.37, - 39.247208, - 11.017679 - ], - "pageNumber": 76 - } - ], - "textBefore": "Report: ", - "textAfter": ", 2002.", - "startOffset": 148654, - "endOffset": 148662, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acc7f36292e2bd7a236df23b68ce5e3f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Smithers Viscient, 790 Main Street, Wareham, MA 02571-1037", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 338, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.11 Analytical method 11 - fenpropidin residues in water ", - "section": "[338, 2, 1]: Paragraph: Report: Marini J.P. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 498.01047, - 572.27, - 39.070526, - 11.017679 - ], - "pageNumber": 128 - }, - { - "rectangle": [ - 199.73, - 559.67, - 243.73854, - 11.017679 - ], - "pageNumber": 128 - } - ], - "textBefore": "Report No: 1781.7100. ", - "textAfter": " USA (Syngenta File", - "startOffset": 268003, - "endOffset": 268061, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a30e6a849e1036ca5f1428245bcf7d01", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 27]: Table_cell: Statement on Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 143.82, - 50.117813, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "Document No. VV-887260 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 101225, - "endOffset": 101238, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b76e938ce58891ffb6cc108a33d0c8ce", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "SGS Institut Fresenius GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 9]: Table_cell: Analytical Method Development and", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 380.87, - 119.769135, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "ICI5504/2766 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 108347, - "endOffset": 108374, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acb875b1865d53c99294fefcc3ee2e26", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Daphnia magna", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 30, - 1, - 14 - ], - "closestHeadline": "Table 5.2-10: Methods and relationship to studies presented in document Part B, Section 9 ", - "section": "[30, 1, 14]: Table_cell: Report S20-06698 (study target", - "color": null, - "positions": [ - { - "rectangle": [ - 445.9, - 265.5, - 64.77997, - 10.5318 - ], - "pageNumber": 21 - } - ], - "textBefore": "(study target organism: ", - "textAfter": ")", - "startOffset": 42292, - "endOffset": 42305, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6762176184ba7c8ba61069ec011ca9f4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Johnson R.I.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 57, - 1, - 0, - 14 - ], - "closestHeadline": "Table 5.3-7: Validated methods for soil ", - "section": "[57, 1, 0, 14]: Table_cell: Method and validation: Johnson", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 364.89, - 50.298096, - 10.526819 - ], - "pageNumber": 39 - } - ], - "textBefore": "Method and validation: ", - "textAfter": " et al., 2000", - "startOffset": 81115, - "endOffset": 81127, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b7360d528256ad72aa1881cdad745a68", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "fish", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 296, - 2, - 0, - 17 - ], - "closestHeadline": "Table A 39: Characteristics of the analytical method used for the quantification of fenpropidin in Elendt M4 medium ", - "section": "[296, 2, 0, 17]: Table_cell: The LOQ for fenpropidin", - "color": null, - "positions": [ - { - "rectangle": [ - 304.16968, - 211.85995, - 14.810547, - 10.526819 - ], - "pageNumber": 114 - } - ], - "textBefore": "for fenpropidin in ", - "textAfter": " water was established", - "startOffset": 237212, - "endOffset": 237216, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cbab8c0909f1e82afd4dc673e5540bae", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adolph S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 3 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 3]: Table_cell: Adolph S. (2011). Analytical", - "color": null, - "positions": [ - { - "rectangle": [ - 197.09, - 636.98, - 40.616867, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": " (2011). Analytical method", - "startOffset": 16717, - "endOffset": 16726, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5f7cd3c7933ff4b140d560a4269d2fd5", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 15]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 294.23, - 50.09886, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "Document No. VV-890581 ", - "textAfter": " BioChem agrar GmbH", - "startOffset": 103406, - "endOffset": 103419, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d523c122bd0bfcb64cf486bfec23ef63", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "30310 Vergèze, France", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 2]: Paragraph: BioChem agrar GmbH, Kupferstr.", - "color": null, - "positions": [ - { - "rectangle": [ - 231.05, - 469.67, - 102.44026, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "chemin de Sommières, ", - "textAfter": ".", - "startOffset": 119264, - "endOffset": 119285, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "23c71e1ebc2450fc9545432945c2ff77", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Obert-Rauser", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 19 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 19]: Table_cell: Method & Validation: Obert-Rauser", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 335.37, - 53.84897, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": " P., 2021 Report", - "startOffset": 58596, - "endOffset": 58608, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c953e4622f81a249577a3fa2584b4b24", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 226, - 2, - 8 - ], - "closestHeadline": "A 2.1.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[226, 2, 8]: Paragraph: azoxystrobin and its metabolite", - "color": null, - "positions": [ - { - "rectangle": [ - 272.57, - 729.86, - 40.904633, - 11.017679 - ], - "pageNumber": 94 - } - ], - "textBefore": "Report No. S11-03538, ", - "textAfter": " File No. ICI5504_11490", - "startOffset": 183434, - "endOffset": 183442, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "66b0b2529ac14a7b3642dfb74ee0ba08", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Richardson, M.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 19]: Table_cell: Richardson, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 242.01001, - 61.921318, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 112671, - "endOffset": 112685, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e07135bfff419ce85973bee91487ad75", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 0]: Table: #cols: 5, #rows: 6, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 455.16806, - 159.41995, - 41.10193, - 10.526819 - ], - "pageNumber": 13 - } - ], - "textBefore": "Validation: Clarke D.M., ", - "textAfter": ", 1994 Report", - "startOffset": 25422, - "endOffset": 25432, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "339451384c6e0b31d2fa40bb4efa82a8", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Crook, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 19]: Table_cell: Crook, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 253.53, - 38.087044, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 108655, - "endOffset": 108664, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8bce53f24fa42c5239981874c6f66d56", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 161, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[161, 1]: Paragraph: Analytical method RAM 399/01", - "color": null, - "positions": [ - { - "rectangle": [ - 429.39215, - 367.29, - 30.095001, - 11.017679 - ], - "pageNumber": 79 - } - ], - "textBefore": "independent laboratory for ", - "textAfter": " milk and muscle.", - "startOffset": 153785, - "endOffset": 153791, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9e5f82de1920c5ec174205f5c2eeb8fb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "ResChem Analytical Limited", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 9]: Table_cell: Azoxystrobin – Independent Laboratory", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 380.87, - 117.20941, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "ICI5504_12452 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 112246, - "endOffset": 112272, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e235db91c1578eb4b876117e67107fea", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 9]: Table_cell: Fenpropidin - Toxicity to", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "VV-468726 , CGA114900_10897 ", - "textAfter": " Ibacon GmbH GLP", - "startOffset": 103133, - "endOffset": 103146, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a13914672d8f8ef6d790e2da00029e0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Pupp, A. Wydra, V.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 13]: Table_cell: Pupp, A. Wydra, V.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 35.30819, - 10.526819 - ], - "pageNumber": 52 - }, - { - "rectangle": [ - 121.1, - 328.67, - 41.91169, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 105695, - "endOffset": 105713, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9321d894c748c2f2dcde024a6670ae71", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 21]: Table_cell: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 242.01001, - 28.8741, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "and R230310 in ", - "textAfter": " Muscle Tissue, Fat", - "startOffset": 102177, - "endOffset": 102183, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b39098cf04a5069f51da34982cd128e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J .", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0]: Table: #cols: 5, #rows: 14, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 511.31, - 43.23645, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2004 Reports:", - "startOffset": 44136, - "endOffset": 44148, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba56905fd4cf63ff20ef039c71ea7889", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "18 48 BLC 0026. BioChem agrar, Labor für", - "reason": "Found after \"No:\" contact keyword", - "matchedRule": "PII.4.0", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 327, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.9 Analytical method 9 – fenpropidin residues in royal jelly/ASS ", - "section": "[327, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 329.53162, - 674.18, - 207.2981, - 11.017679 - ], - "pageNumber": 124 - } - ], - "textBefore": "22). Report No: ", - "textAfter": " biologische und chemische,", - "startOffset": 258504, - "endOffset": 258544, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4da560e3622207d61de8dd873e459af7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 9]: Table_cell: Fenpropidin - Single Exposure", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 380.87, - 61.43332, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "CGA114900_10973 Test Facility ", - "textAfter": " GmbH GLP Unpublished", - "startOffset": 104316, - "endOffset": 104329, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b8e3ba89248689754305a3e882739c32", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Hargreaves S", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 373, - 3 - ], - "closestHeadline": "Conclusion ", - "section": "[373, 3]: Paragraph: (Hargreaves S, 2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 448.64944, - 651.38, - 59.00885, - 11.017679 - ], - "pageNumber": 136 - } - ], - "textBefore": "(", - "textAfter": ", 2007)", - "startOffset": 285123, - "endOffset": 285135, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3938bbefbe56a3d345da47411aff1a0e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 29 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 29]: Table_cell: Syngenta File No. VV-887259", - "color": null, - "positions": [ - { - "rectangle": [ - 199.85, - 740.06, - 37.27031, - 10.526819 - ], - "pageNumber": 12 - } - ], - "textBefore": "", - "textAfter": " File No. VV-887259", - "startOffset": 21572, - "endOffset": 21580, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f1f3a5aeb2394474184430df71ca3032", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dreβler, K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 262, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.1 Analytical method 1 – A23317A - fenpropidin residues in adult bee diet ", - "section": "[262, 2, 1]: Paragraph: Report Azoxystrobin/Fenpropidin SE (A23317A)", - "color": null, - "positions": [ - { - "rectangle": [ - 237.17, - 377.73, - 49.551407, - 11.017679 - ], - "pageNumber": 102 - } - ], - "textBefore": "- Final Report. ", - "textAfter": " (2021) Report No.", - "startOffset": 207662, - "endOffset": 207673, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "564696a03fbcef8067a23e7976711f05", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "RG42 6EY", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 380, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[380, 3, 1]: Paragraph: Report: Richardson M. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 485.80557, - 156.42, - 48.675323, - 11.017679 - ], - "pageNumber": 138 - } - ], - "textBefore": "Centre, Bracknell, Berkshire, ", - "textAfter": ", UK (Syngenta", - "startOffset": 289912, - "endOffset": 289920, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d956ab27494a94e1d8b2429e9344509d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 75, - 1, - 1, - 9 - ], - "closestHeadline": "Table 5.3-16: Validated methods for water ", - "section": "[75, 1, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 421.39, - 289.38, - 31.03537, - 10.44714 - ], - "pageNumber": 44 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 95574, - "endOffset": 95580, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "732e07bcc9bbe1faf2e01b58920f37e2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burke S.R.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 14 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 14]: Table_cell: Method Burke S.R. and", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 499.43, - 46.641083, - 10.526819 - ], - "pageNumber": 15 - } - ], - "textBefore": "RAM 260/01 Validation: ", - "textAfter": " 1995 Report RJ1787B", - "startOffset": 28340, - "endOffset": 28351, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acba08f6eb8158bd5cb05f117112b48d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schmidt K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 29, - 1, - 29 - ], - "closestHeadline": "Table 5.2-9: Validated methods for the generation of pre-authorization data in support of A23317A in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[29, 1, 29]: Table_cell: Method: Schmidt K., 2021", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 439.05, - 45.52716, - 10.526819 - ], - "pageNumber": 21 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2021 Report", - "startOffset": 41763, - "endOffset": 41773, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e55963cf7e33ddca1d2b3548eeb0871", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 4 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 4]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 491.99, - 31.03537, - 10.44714 - ], - "pageNumber": 28 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 58232, - "endOffset": 58238, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "baf7534821ca1387420761948edccbf9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Stahl F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 19 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 19]: Table_cell: Validation: Stahl F., 2017", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 597.23, - 31.03534, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "Validation: ", - "textAfter": ", 2017 Report", - "startOffset": 67177, - "endOffset": 67185, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5d2223d4c6f85f12268582cdef0837a7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 150, - 2, - 1 - ], - "closestHeadline": "A 2.1.2.2.1.1 Method validation ", - "section": "[150, 2, 1]: Paragraph: Report: Richards S., 2002.", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 597.35, - 50.85025, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "Report: ", - "textAfter": ", 2002.", - "startOffset": 149481, - "endOffset": 149492, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60fb56abb0685873c06ce2e949be7119", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Weeren R.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 19]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 550.91, - 42.658722, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "Validation: ", - "textAfter": ", Pelz S.,", - "startOffset": 65801, - "endOffset": 65810, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3462b40949c59521b1112fbcb0c919ff", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gizler A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 24]: Table_cell: ILV: Lakaschus S., Gizler", - "color": null, - "positions": [ - { - "rectangle": [ - 451.19806, - 539.03, - 37.14087, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "ILV: Lakaschus S., ", - "textAfter": " 2017 Report SYN-0422V", - "startOffset": 67320, - "endOffset": 67329, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fcb0b961940317e5a3b091c6eb793af8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Clarke D.M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 0]: Table: #cols: 5, #rows: 6, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 196.85995, - 50.188416, - 10.526819 - ], - "pageNumber": 13 - } - ], - "textBefore": "Method: ", - "textAfter": ", Sapiets A.,", - "startOffset": 25349, - "endOffset": 25360, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5df509c44f3e129b08faca10d2988d96", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bebon R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 305, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.6 Analytical method 6 - fenpropidin residues in water ", - "section": "[305, 2, 1]: Paragraph: Report: Bebon R., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 535.67, - 43.55281, - 11.017679 - ], - "pageNumber": 118 - } - ], - "textBefore": "Report: ", - "textAfter": ", Wydra V.", - "startOffset": 245457, - "endOffset": 245465, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8c2c9fafb33c61fea59432116beee602", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "120041240. ibacon GmbH Arheilger Weg 17", - "reason": "Found after \"No:\" contact keyword", - "matchedRule": "PII.4.0", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 305, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.6 Analytical method 6 - fenpropidin residues in water ", - "section": "[305, 2, 1]: Paragraph: Report: Bebon R., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 327.09848, - 510.34998, - 209.77097, - 11.017679 - ], - "pageNumber": 118 - } - ], - "textBefore": "Period. Report No: ", - "textAfter": " 64380 Rossdorf Germany", - "startOffset": 245625, - "endOffset": 245664, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "46902894d01e2b30e35e34dfdf8944a2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 88, - 3, - 3 - ], - "closestHeadline": "A 2.1.1.5 Description of analytical methods for the determination of residues in support of residues studies (KCP1 5.1.2.5) ", - "section": "[88, 3, 3]: Paragraph: Report No. T011298-06-REG, Syngenta", - "color": null, - "positions": [ - { - "rectangle": [ - 335.71002, - 679.94, - 41.024597, - 11.017679 - ], - "pageNumber": 61 - } - ], - "textBefore": "Report No. T011298-06-REG, ", - "textAfter": " File No. VV-382035", - "startOffset": 116459, - "endOffset": 116467, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95e98f11ad44f84279f983a3adbf57e7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Bebon, R. Wydra, V.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 7]: Table_cell: Bebon, R. Wydra, V.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 40.24836, - 10.526819 - ], - "pageNumber": 50 - }, - { - "rectangle": [ - 121.1, - 415.46, - 41.91169, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 102910, - "endOffset": 102929, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e2452a7908b4074b10bdc5b3c46a463f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 0, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 230.10004, - 31.03537, - 10.44714 - ], - "pageNumber": 35 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 74344, - "endOffset": 74350, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "951090b40ac29cfd9492177e79d36617", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 49 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 49]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 421.53, - 35.610016, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 75676, - "endOffset": 75684, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d9e4a92094579197469b825fa40d513e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 2]: Paragraph: BioChem agrar GmbH, Kupferstr.", - "color": null, - "positions": [ - { - "rectangle": [ - 231.05, - 532.91, - 67.597916, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "", - "textAfter": " GmbH, Kupferstr. 6,", - "startOffset": 119016, - "endOffset": 119029, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c134af82f6511d095fb7b8d2f57da8a3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 9 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 9]: Table_cell: Method & Validation: Schuler", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 439.77, - 41.67267, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": ", 2020 Report", - "startOffset": 58349, - "endOffset": 58359, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f02cc3d1dde48e88f81e2f21dbc101e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "RG42 6EY", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[360, 3, 1]: Paragraph: Report: Hargreaves S. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 610.46, - 49.27153, - 11.017679 - ], - "pageNumber": 134 - } - ], - "textBefore": "Centre, Bracknell, Berkshire, ", - "textAfter": ", UK (Syngenta", - "startOffset": 280200, - "endOffset": 280208, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9b7a7bf72bfa3397d1dd3851f4f9f418", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 27]: Table_cell: Azoxystrobin and R230310 :", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 109.26002, - 50.09886, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "VV-331095 , ICI5504/1652 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 109273, - "endOffset": 109286, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e117cd8b22d690f23760509f0ef2d6f9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 21]: Table_cell: Fenpropidin - Chronic Toxicity", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 218.97, - 61.43332, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "CGA114900_10975 Test Facility ", - "textAfter": " GmbH GLP Unpublished", - "startOffset": 106162, - "endOffset": 106175, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b7565190bc341f5326881b09971ccec3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 39, - 0 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 39, 0]: Paragraph: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 232.37997, - 44.461487, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "1999 Report RJ2770B ", - "textAfter": ", 2004 Report", - "startOffset": 71871, - "endOffset": 71881, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "700abff6226cd53552c2b6977bd33bc5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gasser, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 35, - 2 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 2]: Table: #cols: 5, #rows: 5, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 535.55, - 41.812134, - 10.526819 - ], - "pageNumber": 24 - } - ], - "textBefore": "Dieterle, R., 1992 ", - "textAfter": ", 2000 Reports:", - "startOffset": 50886, - "endOffset": 50896, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af9d81375292daca298d842a858cc3a6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Stahl, F.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 7]: Table_cell: Stahl, F.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 33.56521, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 108086, - "endOffset": 108095, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b23cde6017fcb2c86d3d380671f6b180", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 9 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 716.18, - 31.03537, - 10.44714 - ], - "pageNumber": 36 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 75041, - "endOffset": 75047, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ff99e63fb927127669fe42911ea2f67c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Tillkes M", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 0, 19]: Table_cell: Validation: Tillkes M., 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 157.25998, - 39.053223, - 10.526819 - ], - "pageNumber": 35 - } - ], - "textBefore": "Validation: ", - "textAfter": "., 1997 Report", - "startOffset": 74603, - "endOffset": 74612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d9194d30df7c16d365743a4e6d4de637", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 44, - 1 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 44, 1]: Paragraph: Validation: Lister N.J., 1999", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 159.77994, - 44.461487, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "1999 Report RJ2770B ", - "textAfter": ", 2004 Report", - "startOffset": 70589, - "endOffset": 70599, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8cb0b389985e6d1b1739d88b83852d05", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4]: Table: #cols: 5, #rows: 13, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 359.01, - 44.461487, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "1999 Report RJ2770B ", - "textAfter": ", 2004 Report", - "startOffset": 31810, - "endOffset": 31820, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "35220ce798289bb6b1df3c72a82f8698", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Burke S.R.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 19, - 1 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 19, 1]: Paragraph: Validation: Burke S.R., 1995", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 386.73, - 46.641083, - 10.526819 - ], - "pageNumber": 15 - } - ], - "textBefore": "Validation: ", - "textAfter": " 1995 Report RJ1787B", - "startOffset": 29074, - "endOffset": 29085, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d986a6b2b9ab9cd39a2bd18e84098139", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Zampakou, M.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 7]: Table_cell: Zampakou, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 59.152443, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 101465, - "endOffset": 101477, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d1fc1d8c3bef4a9b316cf72d216ec790", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 12, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 12, 9]: Table_cell: Fenpropidin - Residue Method", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 392.39, - 95.422, - 10.526819 - ], - "pageNumber": 58 - } - ], - "textBefore": "CGA114900/4903 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 113565, - "endOffset": 113590, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fec03d2cfdfeea4fcb09fdf0534027b6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Stahl F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 122, - 3, - 1 - ], - "closestHeadline": "Conclusion ", - "section": "[122, 3, 1]: Paragraph: Report Analytical Method Development", - "color": null, - "positions": [ - { - "rectangle": [ - 280.49, - 436.05, - 34.201935, - 11.017679 - ], - "pageNumber": 70 - } - ], - "textBefore": "in Plant Matrices, ", - "textAfter": ", 2017, Report", - "startOffset": 135719, - "endOffset": 135727, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2a4cb746dbd087c89f2f678b5fe50618", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "ADME - Bioanalyses", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 15]: Table_cell: Validation of residue method", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 294.23, - 86.17731, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "CGA114900_10443 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 111243, - "endOffset": 111261, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "066d1164c99584e4a9b4512d163f60c9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Pelz S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 34 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 34]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 441.12848, - 451.65, - 27.69873, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "Validation: Weeren R., ", - "textAfter": ", 2001 Report", - "startOffset": 67584, - "endOffset": 67591, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b1d4e80e04e2dcac888aec5f2ac2df39", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 337, - 1 - ], - "closestHeadline": "Conclusion ", - "section": "[337, 1]: Paragraph: The analytical method has", - "color": null, - "positions": [ - { - "rectangle": [ - 436.15, - 61.6, - 59.273773, - 11.017679 - ], - "pageNumber": 127 - } - ], - "textBefore": "0.01 mg/kg. (", - "textAfter": ", 2018)", - "startOffset": 267521, - "endOffset": 267533, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "02882c4f1b1f47a550cfd229be0c8b97", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Report Zampakou, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 2, - 1 - ], - "closestHeadline": "5.2 Methods used for the generation of pre-authorization data (KCP 5.1) ", - "section": "[5, 2, 1]: Table: #cols: 2, #rows: 12, Reference: KCP 5.1.1 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 76.824, - 506.99, - 27.22068, - 10.526819 - ], - "pageNumber": 7 - }, - { - "rectangle": [ - 200.09, - 506.99, - 59.25, - 10.526819 - ], - "pageNumber": 7 - } - ], - "textBefore": "Reference: KCP 5.1.1 ", - "textAfter": " 2020. Azoxystrobin/ Fenpropidin", - "startOffset": 12645, - "endOffset": 12664, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b520de4ebb839fe4c44a5651698ecf56", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gemrot F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 186, - 3, - 1 - ], - "closestHeadline": "A 2.1.2.3 Description of Methods for the Analysis of Body Fluids and Tissues (KCP1 5.2.3) ", - "section": "[186, 3, 1]: Paragraph: Report: Azoxystrobin - Validation", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 395.49, - 51.09314, - 11.017679 - ], - "pageNumber": 83 - } - ], - "textBefore": "Human Whole Blood, ", - "textAfter": ", 2011, Report", - "startOffset": 161284, - "endOffset": 161293, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e7f61a768098ef8243b7c02d2bf8ef01", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 29, - 1, - 4 - ], - "closestHeadline": "Table 5.2-9: Validated methods for the generation of pre-authorization data in support of A23317A in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[29, 1, 4]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 700.1, - 31.03537, - 10.44714 - ], - "pageNumber": 21 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 41202, - "endOffset": 41208, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc13a99c1a5a37abc32d752cb2540f1e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 21]: Table_cell: Determination of R230310 in", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 135.9, - 103.3949, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "A17961A_10048 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 100169, - "endOffset": 100193, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f37710548432c51d98fae3cf195d8e53", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 160, - 1, - 0, - 1 - ], - "closestHeadline": "A 2.1.2.2.1.2 Independent laboratory validation ", - "section": "[160, 1, 0, 1]: Table_cell: Study acceptable Analytical method", - "color": null, - "positions": [ - { - "rectangle": [ - 293.81653, - 687.62, - 30.095001, - 11.017679 - ], - "pageNumber": 79 - } - ], - "textBefore": "independent laboratory for ", - "textAfter": " milk and muscle", - "startOffset": 153226, - "endOffset": 153232, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "71cd137997603c9058bdb7165c518f47", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bebon R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 19]: Table_cell: Method & Validation: Bebon", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 520.43, - 37.738495, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": ", Wydra V.,", - "startOffset": 57031, - "endOffset": 57039, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f6629dc15fde98c7fd4aea7ab047dcd", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 105, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[105, 1]: Paragraph: Test facility: ibacon GmbH,", - "color": null, - "positions": [ - { - "rectangle": [ - 70.824, - 424.53, - 52.881622, - 11.017679 - ], - "pageNumber": 65 - } - ], - "textBefore": "", - "textAfter": ": ibacon GmbH,", - "startOffset": 125767, - "endOffset": 125780, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9322c2dba2ef84970eebdaf099f579bc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ruhland S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 350, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.13 Analytical method 13 - fenpropidin residues in sucrose solution ", - "section": "[350, 2, 1]: Paragraph: Report: Ruhland S. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 196.02003, - 50.044342, - 11.017679 - ], - "pageNumber": 131 - } - ], - "textBefore": "Report: ", - "textAfter": " (2018), Fenpropidin -", - "startOffset": 275068, - "endOffset": 275078, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a9280a41abab8392442df4f888228d94", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services Ecotox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.10 Analytical method 10 – ECO_029_03A ", - "section": "[333, 2, 1]: Paragraph: Report: Kovacevic E. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 417.8694, - 176.70003, - 119.033325, - 11.017679 - ], - "pageNumber": 125 - }, - { - "rectangle": [ - 199.73, - 164.10005, - 90.84819, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "EcoChem GmbH / ", - "textAfter": " Eutinger Str. 24,", - "startOffset": 262472, - "endOffset": 262513, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4bb8dd3c049e20b607e6a49e834fd24a", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "fish", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 287, - 0 - ], - "closestHeadline": "Table A 37: Characteristics of the analytical method used for the quantification of fenpropidin in fish water ", - "section": "[287, 0]: Headline: Table A 37: Characteristics", - "color": null, - "positions": [ - { - "rectangle": [ - 240.34067, - 161.70004, - 17.255524, - 10.929359 - ], - "pageNumber": 110 - } - ], - "textBefore": "of fenpropidin in ", - "textAfter": " water", - "startOffset": 227074, - "endOffset": 227078, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a0298936e3cb698f3c0f712fce824b91", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 27]: Table_cell: Azoxystrobin - Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 132.29999, - 50.09886, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "VV-635374 , ICI5504_12486 ", - "textAfter": " SGS Institut Fresenius", - "startOffset": 110569, - "endOffset": 110582, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8214b1c962a014bece33b8170e0713f3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 394, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.2.2 Independent laboratory validation ", - "section": "[394, 2, 1]: Paragraph: Report: Devine T. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 429.8808, - 591.35, - 40.89212, - 11.017679 - ], - "pageNumber": 141 - } - ], - "textBefore": "United Kingdom (", - "textAfter": " File No. VV465839)", - "startOffset": 295542, - "endOffset": 295550, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f872f78b5715b0ce2c967fa244004328", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Lakaschus, S. Gizler, A.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 19]: Table_cell: Lakaschus, S. Gizler, A.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 242.01001, - 55.248116, - 10.526819 - ], - "pageNumber": 53 - }, - { - "rectangle": [ - 121.1, - 230.48999, - 39.65075, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 107286, - "endOffset": 107310, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c42f3f2125dc151396bd7cbaf8123fdf", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ruhland S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 355, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[355, 2]: Paragraph: (Ruhland S., 2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 458.74, - 588.23, - 48.97342, - 11.017679 - ], - "pageNumber": 133 - } - ], - "textBefore": "(", - "textAfter": ", 2018)", - "startOffset": 278701, - "endOffset": 278711, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5fa20f6a9d5b1dfa20ca0474baffa66e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 14 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 14]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 660.98, - 56.91153, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 1999", - "startOffset": 69365, - "endOffset": 69378, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "752d585dd65557973b8e1b93a5001eaf", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 59, - 1, - 0, - 14 - ], - "closestHeadline": "Table 5.3-8: Validated methods for water ", - "section": "[59, 1, 0, 14]: Table_cell: Method and validation: Robinson", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 648.38, - 48.111115, - 10.526819 - ], - "pageNumber": 40 - } - ], - "textBefore": "Method and validation: ", - "textAfter": ".J., 2000 /", - "startOffset": 82244, - "endOffset": 82254, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "187c39b0a1f044f699cdb6eee5e5ca20", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ehmke A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 28, - 1, - 9 - ], - "closestHeadline": "Table 5.2-8: Validated methods for the generation of pre-authorization data for Azoxystrobin in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[28, 1, 9]: Table_cell: Method: Ehmke A., 2015", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 183.05997, - 40.587006, - 10.526819 - ], - "pageNumber": 20 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2015 Report", - "startOffset": 40887, - "endOffset": 40895, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e3805ecba395cbff449cf698df522102", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler, L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 280, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.3 Analytical method 3 - A23317A - fenpropidin residues in water ", - "section": "[280, 2, 1]: Paragraph: Report Azoxystrobin/Fenpropidin SE (A23317A)", - "color": null, - "positions": [ - { - "rectangle": [ - 300.99512, - 182.10005, - 48.73062, - 11.017679 - ], - "pageNumber": 108 - } - ], - "textBefore": "- Final Report. ", - "textAfter": " (2020) Report no.", - "startOffset": 221780, - "endOffset": 221791, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bdc76926167675f7fd2bc15ca06f1f89", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 3, - 14 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 3, 14]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 660.98, - 35.610016, - 10.526819 - ], - "pageNumber": 38 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 77774, - "endOffset": 77782, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cc23e88cb9a732c1438ea38747c0df60", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Schmidt, K.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 25]: Table_cell: Schmidt, K.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 178.28998, - 48.037086, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 106215, - "endOffset": 106226, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7373f01fb91451ad859a7a90b0183b23", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 9]: Table_cell: Fenpropidin - Single Exposure", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "VV-471037 , CGA114900_10973 ", - "textAfter": " BioChem agrar GmbH", - "startOffset": 104302, - "endOffset": 104315, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "123aa0e2f8ef51990d8064b35d5d0de0", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "goat", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 3, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 3, 0]: Paragraph: (a): Residue definition for", - "color": null, - "positions": [ - { - "rectangle": [ - 162.19402, - 350.13, - 16.046997, - 10.095 - ], - "pageNumber": 18 - } - ], - "textBefore": "‘the group of ", - "textAfter": " metabolites referred to", - "startOffset": 36497, - "endOffset": 36501, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "90f769c4cfe40d78462415a132f52c34", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "livestock", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 72, - 1, - 5, - 1 - ], - "closestHeadline": "Table 5.3-14: Statement on extraction efficiency ", - "section": "[72, 1, 5, 1]: Paragraph: Due to differences in", - "color": null, - "positions": [ - { - "rectangle": [ - 371.6473, - 102.4, - 36.01544, - 10.526819 - ], - "pageNumber": 43 - } - ], - "textBefore": "systems used between ", - "textAfter": " metabolism studies and", - "startOffset": 93903, - "endOffset": 93912, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c3512407eda97ae5d72f38ecb36a6fa8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 28, - 1, - 4 - ], - "closestHeadline": "Table 5.2-8: Validated methods for the generation of pre-authorization data for Azoxystrobin in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[28, 1, 4]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 235.26001, - 31.03537, - 10.44714 - ], - "pageNumber": 20 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 40780, - "endOffset": 40786, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "259f7790600b4d3a0e47f011a553f7b9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 305, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.6 Analytical method 6 - fenpropidin residues in water ", - "section": "[305, 2, 1]: Paragraph: Report: Bebon R., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 319.82312, - 497.63, - 41.01358, - 11.017679 - ], - "pageNumber": 118 - } - ], - "textBefore": "Rossdorf Germany (", - "textAfter": " File No. VV-468726)", - "startOffset": 245689, - "endOffset": 245697, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "80553b0f94df76d4dbb886bffeb2cd4e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kirkwood, A.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 25]: Table_cell: Kirkwood, A.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 178.28998, - 55.32778, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 103699, - "endOffset": 103711, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f32c6ce0b9a916d00601041d898ae435", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dreβler, K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 270, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[270, 2]: Paragraph: (Dreβler, K., 2021)", - "color": null, - "positions": [ - { - "rectangle": [ - 450.376, - 547.07, - 54.31201, - 11.454 - ], - "pageNumber": 105 - } - ], - "textBefore": "(", - "textAfter": ", 2021)", - "startOffset": 214399, - "endOffset": 214410, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32b74ac507754a6fd30d9219edb36d3c", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 150, - 1, - 0, - 1, - 1 - ], - "closestHeadline": "A 2.1.2.2.1.1 Method validation ", - "section": "[150, 1, 0, 1, 1]: Paragraph: Analytical method RAM 399/01", - "color": null, - "positions": [ - { - "rectangle": [ - 457.93765, - 700.46, - 29.984589, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "was validated for ", - "textAfter": " muscle, fat", - "startOffset": 149197, - "endOffset": 149203, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba38671132b9b310e07c4d4ae19495c1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 76, - 1, - 7 - ], - "closestHeadline": "5.3.3.7 Description of methods for the analysis of Fenpropidin in air (KCP 5.2.6) ", - "section": "[76, 1, 7]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 419.59, - 476.63, - 31.03537, - 10.44714 - ], - "pageNumber": 45 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 97002, - "endOffset": 97008, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c99edf129f1c1f07cf10b9c7c743fe49", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "ibacon GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 21]: Table_cell: Azoxystrobin SC (A12705B) -", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 218.97, - 56.44339, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "VV-414544 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 103653, - "endOffset": 103664, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8db2e08b0f91ea67b272a99ffc8d2492", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Zampakou, M.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 25]: Table_cell: Zampakou, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 189.81, - 59.152443, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 101022, - "endOffset": 101034, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7310114c3e1ab278f15160404d4b6baf", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 241, - 2, - 4 - ], - "closestHeadline": "A 2.1.2.5.1.2 Independent laboratory validation ", - "section": "[241, 2, 4]: Paragraph: Syngenta File No. ICI5504_12452", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 91.00002, - 41.013626, - 11.017679 - ], - "pageNumber": 97 - } - ], - "textBefore": "", - "textAfter": " File No. ICI5504_12452", - "startOffset": 192170, - "endOffset": 192178, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4b5f704e03f81f1d01130303e96e4aff", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richardson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 75, - 1, - 1, - 29 - ], - "closestHeadline": "Table 5.3-16: Validated methods for water ", - "section": "[75, 1, 1, 29]: Table_cell: GRM024.03A Richardson, 2007 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 412.75, - 92.079994, - 45.507324, - 10.526819 - ], - "pageNumber": 44 - } - ], - "textBefore": "GRM024.03A ", - "textAfter": ", 2007 Report", - "startOffset": 95918, - "endOffset": 95928, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a59bd1cd7d78da7d194e0d75168e11dd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 3 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 3]: Table_cell: Kettner R. (2011). Analytical", - "color": null, - "positions": [ - { - "rectangle": [ - 438.03265, - 464.03, - 37.270386, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "Issued date 08.07.2011, ", - "textAfter": " File No. VV127958", - "startOffset": 20899, - "endOffset": 20907, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fb6c3c45860cfce64bf1cbdd96959ab9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 350, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.13 Analytical method 13 - fenpropidin residues in sucrose solution ", - "section": "[350, 2, 1]: Paragraph: Report: Ruhland S. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 203.43944, - 145.26003, - 41.013626, - 11.017679 - ], - "pageNumber": 131 - } - ], - "textBefore": "Gerichshain, Germany (", - "textAfter": " File No. VV-471136)", - "startOffset": 275351, - "endOffset": 275359, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7674b93651a62adc486f87548f8f5385", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 8, - 1, - 3 - ], - "closestHeadline": "Table 5.2-1: Methods suitable for the determination of the active substances Azoxystrobin and Fenpropidin in plant protection product A23317A ", - "section": "[8, 1, 3]: Table_cell: Author(s), year", - "color": null, - "positions": [ - { - "rectangle": [ - 74.064, - 687.86, - 31.035362, - 10.44714 - ], - "pageNumber": 8 - } - ], - "textBefore": "", - "textAfter": "(s), year", - "startOffset": 14345, - "endOffset": 14351, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d78b8bbb95c4d9a72b2b572631bae087", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 9]: Table_cell: Determination of toluene in", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 286.31, - 50.09886, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "VV-127729 , A16283D_10108 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 99709, - "endOffset": 99722, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a5f4624c0e30a87693d36f58b4f1f0aa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kang J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 29 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 29]: Table_cell: ILV: Kang J., 2003", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 414.81, - 30.547363, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "ILV: ", - "textAfter": ", 2003 Report", - "startOffset": 71485, - "endOffset": 71492, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "815f20112854ca7dc3b17ebbbd0b6cf5", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1]: Table: #cols: 5, #rows: 15, Component of residue definition:", - "color": null, - "positions": [ - { - "rectangle": [ - 74.29056, - 421.53, - 27.30037, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "Milk (", - "textAfter": ")", - "startOffset": 75632, - "endOffset": 75638, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9c6049d64b146e5d8fff5868fc7b2b27", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kettner R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 19, - 1, - 3 - ], - "closestHeadline": "Table 5.2-3: Methods suitable for the determination of the relevant impurities in plant protection product (PPP) A23317A ", - "section": "[19, 1, 3]: Table_cell: Kettner R. (2011), Zampakou", - "color": null, - "positions": [ - { - "rectangle": [ - 284.69, - 283.01993, - 41.58304, - 10.526819 - ], - "pageNumber": 12 - } - ], - "textBefore": "", - "textAfter": " (2011), Zampakou M.", - "startOffset": 22750, - "endOffset": 22760, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e43024589795129df7007dcf45639e76", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 15]: Table_cell: Azoxystrobin (ICI5504) and Cyproconazole", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 294.23, - 50.09886, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "VV-382035 , ICI5504_10398 ", - "textAfter": " GAB Biotechnologie GmbH", - "startOffset": 101989, - "endOffset": 102002, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "171987b08a41db0ee54dbb6024add3da", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 35, - 1, - 9 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 407.59, - 182.22003, - 31.03537, - 10.44714 - ], - "pageNumber": 23 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 49383, - "endOffset": 49389, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e030548c8f16d90a1c95d450794c995", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Brown, D.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 7]: Table_cell: Brown, D.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 41.91166, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 111984, - "endOffset": 111993, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5550c6e186fb43d4438f5656c3ea456f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lakaschus S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 24]: Table_cell: ILV: Lakaschus S., Gizler", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 452.15, - 52.73828, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "ILV: ", - "textAfter": ", Gizler A.,", - "startOffset": 65976, - "endOffset": 65988, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "54146f55b0608bde4632cfc1a00c49cf", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 29 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 29]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 434.85, - 44.461487, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Report RAM 305/02 ", - "textAfter": " et al., 2004", - "startOffset": 69947, - "endOffset": 69957, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9bc50476af9d92d291f13921295e7df1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5]: Table: #cols: 5, #rows: 9, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 475.79, - 46.035156, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 35191, - "endOffset": 35202, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8acd0cab0b038702508623b25512992e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 2, - 1, - 3 - ], - "closestHeadline": "5.2 Methods used for the generation of pre-authorization data (KCP 5.1) ", - "section": "[5, 2, 1, 3]: Table_cell: Zampakou, M. 2021. SF-1057/1", - "color": null, - "positions": [ - { - "rectangle": [ - 321.19, - 707.66, - 120.342255, - 10.526819 - ], - "pageNumber": 7 - } - ], - "textBefore": "by capillary GC. ", - "textAfter": ", Muenchwilen, Switzerland.", - "startOffset": 12420, - "endOffset": 12447, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0c5b29dd8a00db693e420735259aa8a2", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 334, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[334, 1]: Paragraph: Pollen, nectar, flowers, leaves", - "color": null, - "positions": [ - { - "rectangle": [ - 154.92673, - 598.55, - 85.15155, - 11.017679 - ], - "pageNumber": 126 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The limit", - "startOffset": 263050, - "endOffset": 263067, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b5d6add4806eb59a0c4cb11a0be17b44", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 54 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 54]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 328.89, - 56.91153, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 1999", - "startOffset": 68273, - "endOffset": 68286, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5bcf88a10f5781a0b49555644ff1d117", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 4]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 404.83, - 726.86, - 31.03537, - 10.44714 - ], - "pageNumber": 15 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 27878, - "endOffset": 27884, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9f28f1a168c1ce3d86551452d19bc1f2", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Richards, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 25]: Table_cell: Richards, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 155.37, - 48.545036, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 102428, - "endOffset": 102440, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c86223112470f78c01b5527f16935176", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kleebaum K.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 327, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.9 Analytical method 9 – fenpropidin residues in royal jelly/ASS ", - "section": "[327, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 699.5, - 59.847855, - 11.017679 - ], - "pageNumber": 124 - } - ], - "textBefore": "Report: ", - "textAfter": " (2018), Fenpropidin –", - "startOffset": 258334, - "endOffset": 258345, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bc498278220a1002b4c5a8ce861d041c", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Daphnia magna", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 9]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 537.32776, - 426.98, - 63.15625, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "the Water Flea ", - "textAfter": " Straus under Laboratory", - "startOffset": 106762, - "endOffset": 106775, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c347542256247d8ed8382e1f85157be6", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 21]: Table_cell: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 242.01001, - 28.8741, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "and R230310 in ", - "textAfter": " Muscle Tissue, Fat", - "startOffset": 108767, - "endOffset": 108773, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "112b9af21575335fa83bf14e55539b3a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 0, - 29 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 0, 29]: Table_cell: Method: Burke S.R., Sapiets", - "color": null, - "positions": [ - { - "rectangle": [ - 449.14, - 86.319984, - 40.985443, - 10.526819 - ], - "pageNumber": 13 - } - ], - "textBefore": "Method: Burke S.R., ", - "textAfter": ", 1994", - "startOffset": 26025, - "endOffset": 26035, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "24d2cd67fac64ee00d03a305ba8ea4aa", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins - ADME Bioanalyses", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 27]: Table_cell: Azoxystrobin – Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 120.78001, - 123.10974, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "ICI5504_11490 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 111773, - "endOffset": 111800, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2e5445ac26196c750bc5725c5669d235", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Celle", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 2]: Paragraph: BioChem agrar GmbH, Kupferstr.", - "color": null, - "positions": [ - { - "rectangle": [ - 261.41003, - 494.99, - 23.250244, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "(Trial G07N013B): 29221 ", - "textAfter": ", Germany Analytical", - "startOffset": 119180, - "endOffset": 119185, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e3c4a71b9858c74dc1b46152a2d5d03a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 9 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 716.18, - 31.03537, - 10.44714 - ], - "pageNumber": 32 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 66977, - "endOffset": 66983, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b232da3b8bfe003d42842786a2446c53", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Richardson M.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 380, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[380, 3, 1]: Paragraph: Report: Richardson M. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 194.34004, - 65.94194, - 11.017679 - ], - "pageNumber": 138 - } - ], - "textBefore": "Report: ", - "textAfter": " (2007) Fenpropidin (CGA114900)", - "startOffset": 289642, - "endOffset": 289655, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8c3db2350e12f302d3ee71938849505a", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Daphnia magna", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 42, - 1, - 32 - ], - "closestHeadline": "Table 5.2-20: Methods and relationship to studies presented in document Part B, Section 9 ", - "section": "[42, 1, 32]: Table_cell: Report S20-06698 (study target", - "color": null, - "positions": [ - { - "rectangle": [ - 442.39, - 443.49, - 64.77997, - 10.5318 - ], - "pageNumber": 29 - } - ], - "textBefore": "(study target organism: ", - "textAfter": ")", - "startOffset": 60075, - "endOffset": 60088, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af01e5e48f0d4c78aab19de5f4df76ae", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 327, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.9 Analytical method 9 – fenpropidin residues in royal jelly/ASS ", - "section": "[327, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 323.1682, - 648.86, - 41.01358, - 11.017679 - ], - "pageNumber": 124 - } - ], - "textBefore": "Gerichshain, Germany (", - "textAfter": " File No. VV-470837)", - "startOffset": 258642, - "endOffset": 258650, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acb7569e7f0a59ccecc66e2ac456f079", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 6, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 52 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 105236, - "endOffset": 105242, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1f984b89c8208dd06fd9064ae8e781a0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dieterle, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 35, - 2 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 2]: Table: #cols: 5, #rows: 5, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 593.03, - 46.26422, - 10.526819 - ], - "pageNumber": 24 - } - ], - "textBefore": "Method: ", - "textAfter": ", 1992 Report:", - "startOffset": 50817, - "endOffset": 50829, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1f64a1ca2f9d2e6471479a99bda2c264", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 15]: Table_cell: Validation of residue method", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 294.23, - 50.09886, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "VV-393069 , CGA114900_10443 ", - "textAfter": " ADME - Bioanalyses", - "startOffset": 111229, - "endOffset": 111242, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d3387afb1f02a8ae645fe70349026af5", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "hen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1]: Table: #cols: 5, #rows: 15, Component of residue definition:", - "color": null, - "positions": [ - { - "rectangle": [ - 74.29056, - 217.97995, - 14.432045, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "Eggs (", - "textAfter": ")", - "startOffset": 75943, - "endOffset": 75946, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e2008f21661086fefd80776333f763e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Poperechna N.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 200, - 3, - 1 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 1]: Paragraph: Report: Link T., Poperechna", - "color": null, - "positions": [ - { - "rectangle": [ - 238.36998, - 496.43, - 64.69444, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "Report: Link T., ", - "textAfter": ", Crook S.", - "startOffset": 167841, - "endOffset": 167854, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d59f83219b19c8f66bcc9af603fcf55", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 29 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 29]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 173.45999, - 53.913544, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2018 Report", - "startOffset": 58923, - "endOffset": 58935, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "92563c78d8a2b63ad7d6997314f0e5fb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 9 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 716.18, - 31.03537, - 10.44714 - ], - "pageNumber": 33 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 69213, - "endOffset": 69219, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "40d8e797685db7696b923b2b6f04bfdf", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 10, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 56 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 110644, - "endOffset": 110650, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87aade0041487410911a47d5c7c79bc3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Gemrot, F.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 13]: Table_cell: Gemrot, F.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 43.624825, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 109783, - "endOffset": 109793, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "02bcf8dcf8b22a53ad2c87ea350b75fe", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gizler,A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 131, - 2, - 1 - ], - "closestHeadline": "Reproducibility ", - "section": "[131, 2, 1]: Paragraph: Report: Independent Laboratory Validation", - "color": null, - "positions": [ - { - "rectangle": [ - 496.09006, - 474.95, - 40.89218, - 11.017679 - ], - "pageNumber": 73 - } - ], - "textBefore": "Laboratory, Lakaschus, S., ", - "textAfter": " 2017, Report No.", - "startOffset": 142303, - "endOffset": 142312, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba7c3e935a2007f33d42e85420c0415e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Crook, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 19]: Table_cell: Crook, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 253.53, - 38.087044, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 102065, - "endOffset": 102074, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5b36680d79f3b8f56adb9174ee134c55", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Atkinson, S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 160, - 2, - 1 - ], - "closestHeadline": "A 2.1.2.2.1.2 Independent laboratory validation ", - "section": "[160, 2, 1]: Paragraph: Report: Atkinson, S., 2003.", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 622.7, - 54.8136, - 11.017679 - ], - "pageNumber": 79 - } - ], - "textBefore": "Report: ", - "textAfter": ", 2003.", - "startOffset": 153298, - "endOffset": 153310, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0983f1ab37a06d59ee4c25fd83ee1fe7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ehmke, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 103, - 3, - 1 - ], - "closestHeadline": "A 2.1.1.6 Description of analytical methods for the determination of residues in support of ecotoxicological studies (KCP 5.1.2.6) ", - "section": "[103, 3, 1]: Paragraph: Report Azoxystrobin SC (A12705B)", - "color": null, - "positions": [ - { - "rectangle": [ - 318.43, - 125.32003, - 48.600006, - 11.017679 - ], - "pageNumber": 64 - } - ], - "textBefore": "Test, Repeated Exposure, ", - "textAfter": " (2015) Report no.", - "startOffset": 125094, - "endOffset": 125103, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "90a08889801e55385a9f1633dbf7b051", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Stahl F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 34 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 34]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 318.21, - 31.03534, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "ZEN-0002V New data ", - "textAfter": ", 2017 Report", - "startOffset": 66264, - "endOffset": 66272, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "abc16ec4ef6aa951c75ae0b35c1a6dec", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 312, - 1 - ], - "closestHeadline": "Principle of the Method ", - "section": "[312, 1]: Paragraph: Water and sediment samples", - "color": null, - "positions": [ - { - "rectangle": [ - 477.08572, - 303.81003, - 51.037872, - 11.017679 - ], - "pageNumber": 120 - }, - { - "rectangle": [ - 70.824, - 291.18002, - 37.999687, - 11.017679 - ], - "pageNumber": 120 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The limit", - "startOffset": 250732, - "endOffset": 250749, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2e270ffd123825ac99724c70360c46a5", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Wokingham, RG41 2FD, United Kingdom", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 394, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.2.2 Independent laboratory validation ", - "section": "[394, 2, 1]: Paragraph: Report: Devine T. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 227.06503, - 591.35, - 194.75656, - 11.017679 - ], - "pageNumber": 141 - } - ], - "textBefore": "Centre, Oaklands Park, ", - "textAfter": " (Syngenta File No.", - "startOffset": 295505, - "endOffset": 295540, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5a842df3687cba78c032f1db6866d05e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 82, - 2, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and not relied on ", - "section": "[82, 2, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 132.98, - 470.66, - 31.035355, - 10.44714 - ], - "pageNumber": 59 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 114180, - "endOffset": 114186, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "13378bdc7ca407f902f8b638a99fc4ce", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[360, 3, 1]: Paragraph: Report: Hargreaves S. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 516.328, - 635.9, - 20.854614, - 11.017679 - ], - "pageNumber": 134 - }, - { - "rectangle": [ - 199.73, - 623.3, - 23.967865, - 11.017679 - ], - "pageNumber": 134 - } - ], - "textBefore": "Report Number GRM024.02A. ", - "textAfter": ", Jealott’s Hill", - "startOffset": 280123, - "endOffset": 280131, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "be4a82b0a1a66c580094ffa639367ffb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Obert-Rauser", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 29, - 1, - 19 - ], - "closestHeadline": "Table 5.2-9: Validated methods for the generation of pre-authorization data in support of A23317A in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[29, 1, 19]: Table_cell: Method: Obert-Rauser P., 2021", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 543.47, - 53.84897, - 10.526819 - ], - "pageNumber": 21 - } - ], - "textBefore": "Method: ", - "textAfter": " P., 2021 Report", - "startOffset": 41527, - "endOffset": 41539, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6ba4a3ef9b56aa299d0fc35d74571dca", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 350, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.13 Analytical method 13 - fenpropidin residues in sucrose solution ", - "section": "[350, 2, 1]: Paragraph: Report: Ruhland S. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 286.91287, - 170.70003, - 69.38641, - 11.017679 - ], - "pageNumber": 131 - } - ], - "textBefore": "48 BAC 0019. ", - "textAfter": ", Labor für", - "startOffset": 275229, - "endOffset": 275242, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da9a36c745daf84e82fae93a4c168446", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 1, - 1, - 9 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 1, 9]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 679.22, - 53.913544, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2018 Report", - "startOffset": 57835, - "endOffset": 57847, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "af52d138365edbede7b6f46062c1c4d6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Marini, J.", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 5, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 25]: Table_cell: Marini, J.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 166.77002, - 38.565117, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 105004, - "endOffset": 105014, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a2ea664b29784fde8b2bbd7eb0fba513", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 1, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 364.55, - 31.035362, - 10.44714 - ], - "pageNumber": 47 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 99405, - "endOffset": 99411, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b7bddd6801bdff0bff4eb7862fba91fc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 1, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 1, 4]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 404.83, - 726.86, - 31.03537, - 10.44714 - ], - "pageNumber": 14 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 26121, - "endOffset": 26127, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "06977429a01e87c971718f36178aa4c5", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 328, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[328, 1]: Paragraph: Diet (royal jelly/ASS containing", - "color": null, - "positions": [ - { - "rectangle": [ - 344.57608, - 418.41, - 84.79819, - 11.017679 - ], - "pageNumber": 124 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The limit", - "startOffset": 259164, - "endOffset": 259181, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "58ebf8fa8667731774103d2b36ed5f56", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 21]: Table_cell: A23317A – Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 230.48999, - 50.09886, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "Document No. VV-889304 ", - "textAfter": " GLP Testing Facility", - "startOffset": 100951, - "endOffset": 100964, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "121658fdb57d781ed1770ff72277b493", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "ibacon GmbH Arheilger Weg 17 64380 Rossdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 344, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.12 Analytical method 12 - fenpropidin residues in water ", - "section": "[344, 2, 1]: Paragraph: Report: Pupp A., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 74.680016, - 223.14046, - 11.017679 - ], - "pageNumber": 129 - } - ], - "textBefore": "Report No: 40322210. ", - "textAfter": " Germany (Syngenta File", - "startOffset": 271634, - "endOffset": 271677, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0e9097c55a46d58d0b0d78758be8a412", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Dreßler K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 24 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 24]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 225.65994, - 42.7583, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "S17-08105 (VV-469879) Validation: ", - "textAfter": ", 2020 Report", - "startOffset": 58790, - "endOffset": 58800, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "055b7b24b919a722f41d48edeca5d58d", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 12, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 12, 9]: Table_cell: Fenpropidin - Residue Method", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 392.39, - 50.09886, - 10.526819 - ], - "pageNumber": 58 - } - ], - "textBefore": "VV-125646 , CGA114900/4903 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 113551, - "endOffset": 113564, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c7bcbcc8fe52ccf7250580b4d5d5221", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 321, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.8 Analytical method 8 - fenpropidin residues in royal jelly/ASS ", - "section": "[321, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 230.918, - 534.35, - 71.08658, - 11.017679 - ], - "pageNumber": 122 - } - ], - "textBefore": "48 BLA 0005. ", - "textAfter": ", Labor für", - "startOffset": 254436, - "endOffset": 254449, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7fe604534eb46bb1cb549645a7238a3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4]: Table: #cols: 5, #rows: 13, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 434.95, - 190.49997, - 41.031097, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "Validation: Ryan J., ", - "textAfter": " / 1994, Report", - "startOffset": 33872, - "endOffset": 33882, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ef251525b5f0146512d790e3951f44bd", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kirkwood A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 320, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[320, 2]: Paragraph: (Kirkwood A., 2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 449.62, - 74.920006, - 58.04831, - 11.017679 - ], - "pageNumber": 121 - } - ], - "textBefore": "(", - "textAfter": ", 2018)", - "startOffset": 253827, - "endOffset": 253838, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2aafa43679b570846cb39e2ebe30b372", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Report Zampakou M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1]: Table: #cols: 2, #rows: 19, Reference: KCP 5.1.1 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 76.824, - 98.67997, - 27.22068, - 10.526819 - ], - "pageNumber": 11 - }, - { - "rectangle": [ - 199.85, - 98.67997, - 56.41342, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "Reference: KCP 5.1.1 ", - "textAfter": " (2020). Statement on", - "startOffset": 21328, - "endOffset": 21346, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d9e47f9044b5b36ff63a01853cff5785", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Weeren R.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 34 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 34]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 451.65, - 42.658722, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "Validation: ", - "textAfter": ", Pelz S.,", - "startOffset": 67573, - "endOffset": 67582, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "219788664bebd5f7aa7350edb4e49d94", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 264, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[264, 1]: Paragraph: Test facility: BioChem agrar,", - "color": null, - "positions": [ - { - "rectangle": [ - 128.66, - 120.04, - 67.02385, - 11.017679 - ], - "pageNumber": 102 - } - ], - "textBefore": "Test facility: ", - "textAfter": ", Labor für", - "startOffset": 208114, - "endOffset": 208127, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b4decb9902f28b781d25a7ed7d54bf47", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 64 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 64]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 159.89993, - 46.035156, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 76037, - "endOffset": 76048, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ea9d6a393e0e1ac688b0323fe195c90c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ryan J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4, - 64 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4, 64]: Table_cell: Method & Validation: Ryan", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 119.67997, - 29.970001, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": " et al., 1995", - "startOffset": 34433, - "endOffset": 34440, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4b8aecaf6dfa3a8d3e2540573dfa5865", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 1 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 1]: Table: #cols: 5, #rows: 5, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 449.14, - 641.18, - 40.985443, - 10.526819 - ], - "pageNumber": 14 - } - ], - "textBefore": "Validation: Burke S.R., ", - "textAfter": ", 1995 Report", - "startOffset": 26273, - "endOffset": 26283, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "01a6e331b0c77b11a7af2e4ad97d9a84", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 44 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 44]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 294.17996, - 35.610016, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 77156, - "endOffset": 77164, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1a6292138f83668aa5fe0e50b7487f8f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 54 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 54]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 305.85, - 44.461487, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "Report RAM 305/02 ", - "textAfter": " et al., 2004", - "startOffset": 68318, - "endOffset": 68328, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ff4942cd0bd4b4d7bfb50148bdf2fb70", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 26 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 26]: Table_cell: Muscle (bovine)", - "color": null, - "positions": [ - { - "rectangle": [ - 156.36656, - 472.31, - 27.300354, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Muscle (", - "textAfter": ")", - "startOffset": 35531, - "endOffset": 35537, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c6d0fb782d0b46fe48c3cdd572accc40", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Devine T.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 394, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.2.2 Independent laboratory validation ", - "section": "[394, 2, 1]: Paragraph: Report: Devine T. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 654.62, - 44.28145, - 11.017679 - ], - "pageNumber": 141 - } - ], - "textBefore": "Report: ", - "textAfter": " (2016) Fenpropidin (CGA114900)", - "startOffset": 295158, - "endOffset": 295167, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d9c925dbc46f3354445ebd5e78572ab6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 5, - 2, - 1, - 15 - ], - "closestHeadline": "5.2 Methods used for the generation of pre-authorization data (KCP 5.1) ", - "section": "[5, 2, 1, 15]: Table_cell: Zampakou, M. 2020. Azoxystrobin/", - "color": null, - "positions": [ - { - "rectangle": [ - 200.09, - 472.43, - 37.27031, - 10.526819 - ], - "pageNumber": 7 - } - ], - "textBefore": "Issued date 26.10.2020, ", - "textAfter": " File No. VV-889304", - "startOffset": 12865, - "endOffset": 12873, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7eb4bc60a2ee046638e9f3c18bd879ff", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 0, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 0, 4]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 404.83, - 277.26, - 31.03537, - 10.44714 - ], - "pageNumber": 13 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 24812, - "endOffset": 24818, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "177a2c233eba780ee45da1755cb13379", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Clarke D.M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 1, - 24, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 1, 24, 0]: Paragraph: Method: Burke S.R., 1996", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 509.63, - 50.188416, - 10.526819 - ], - "pageNumber": 14 - } - ], - "textBefore": "RAM 243/04 Validation: ", - "textAfter": ", Sapiets A.,", - "startOffset": 27669, - "endOffset": 27680, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9e341e861b8a726ac5012042665320dd", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Celle", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 2]: Paragraph: BioChem agrar GmbH, Kupferstr.", - "color": null, - "positions": [ - { - "rectangle": [ - 378.3236, - 507.59, - 23.150879, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "lnstitut tor Bienenkunde ", - "textAfter": ", Herzogin-Eleonore-Allee 5,", - "startOffset": 119122, - "endOffset": 119127, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "971f1a387497406418b30e3fc32eb031", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 66, - 1, - 9 - ], - "closestHeadline": "Table 5.3-11: Validated methods for food and feed of plant origin ", - "section": "[66, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 443.23, - 687.86, - 31.03537, - 10.44714 - ], - "pageNumber": 42 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 86757, - "endOffset": 86763, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6159e9ece795b191a1436ff6fc8598fa", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 21]: Table_cell: Fenpropidin - Analytical Method", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 207.45001, - 50.09886, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "VV-469879 , CGA114900_10922 ", - "textAfter": " Eurofins Agroscience Services", - "startOffset": 104913, - "endOffset": 104926, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f217109c7e39432d9de1d6e6ec3842fa", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "18 48 BLA", - "reason": "Found after \"No:\" contact keyword", - "matchedRule": "PII.4.0", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 321, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.8 Analytical method 8 - fenpropidin residues in royal jelly/ASS ", - "section": "[321, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 485.2965, - 546.95, - 51.656128, - 11.017679 - ], - "pageNumber": 122 - } - ], - "textBefore": "Conditions. Report No: ", - "textAfter": " 0005. BioChem agrar,", - "startOffset": 254420, - "endOffset": 254429, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5d8770b1fb32d4805515a8f9ac79f3f8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Bracknell, Berkshire", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[360, 3, 1]: Paragraph: Report: Hargreaves S. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 440.04877, - 623.3, - 94.11603, - 11.017679 - ], - "pageNumber": 134 - } - ], - "textBefore": "Inernational Research Centre, ", - "textAfter": ", RG42 6EY,", - "startOffset": 280178, - "endOffset": 280198, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "785348b9c5802f66053a400e9774e3ff", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 59, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.3-8: Validated methods for water ", - "section": "[59, 1, 0, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 703.58, - 31.03537, - 10.44714 - ], - "pageNumber": 40 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 82130, - "endOffset": 82136, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7b79425fc972b82804916552275d0882", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Tillkes, M.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 7]: Table_cell: Tillkes, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 44.06304, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 109496, - "endOffset": 109507, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "74fe4f6e91fbd14417c0d8dda1541d1a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Schuler, L.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 7]: Table_cell: Schuler, L.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 44.18255, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 106672, - "endOffset": 106683, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "267e012ed0f861a3e84915c8af1c1182", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Robinson", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 76, - 1, - 11 - ], - "closestHeadline": "5.3.3.7 Description of methods for the analysis of Fenpropidin in air (KCP 5.2.6) ", - "section": "[76, 1, 11]: Table_cell: GRM024.01A Robinson, 2006 Report:", - "color": null, - "positions": [ - { - "rectangle": [ - 419.59, - 424.41, - 38.306244, - 10.526819 - ], - "pageNumber": 45 - } - ], - "textBefore": "GRM024.01A ", - "textAfter": ", 2006 Report:", - "startOffset": 97092, - "endOffset": 97100, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "689dd9ee4dc476f0ef93c155a3c0fefb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4, - 9, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4, 9, 0]: Paragraph: Method Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 670.22, - 56.91153, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "Method ", - "textAfter": " et al., 1999", - "startOffset": 31436, - "endOffset": 31449, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "473317137b9c38bb4fb2a5bf6831995e", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 29, - 1, - 9 - ], - "closestHeadline": "Table 5.2-9: Validated methods for the generation of pre-authorization data in support of A23317A in water and other matrices (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[29, 1, 9]: Table_cell: Method: Schuler L., 2020", - "color": null, - "positions": [ - { - "rectangle": [ - 421.15, - 647.9, - 41.67267, - 10.526819 - ], - "pageNumber": 21 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2020 Report", - "startOffset": 41306, - "endOffset": 41316, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0aef65f3b6490810e839cca2a4eca2bd", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Analytik GmbH, Kupferstraße 6, 04827 Machern OT Gerichshain, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 321, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.8 Analytical method 8 - fenpropidin residues in royal jelly/ASS ", - "section": "[321, 2, 1]: Paragraph: Report: Kleebaum K. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 498.329, - 534.35, - 38.507538, - 11.017679 - ], - "pageNumber": 122 - }, - { - "rectangle": [ - 199.73, - 521.75, - 308.1944, - 11.017679 - ], - "pageNumber": 122 - } - ], - "textBefore": "biologische und chemische, ", - "textAfter": " (Syngenta File No.", - "startOffset": 254488, - "endOffset": 254556, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e8d5eb66f30cc4f0527b884d8e68a62", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 21]: Table_cell: Residue Analytical Method for", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 196.04999, - 50.09886, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "VV-124385 , ICI5504/1651 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 102350, - "endOffset": 102363, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e76819e9b7aa6699b7bdf88423ffbd20", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 49, - 1, - 5 - ], - "closestHeadline": "Table 5.3-3: Statement on extraction efficiency ", - "section": "[49, 1, 5]: Table_cell: This is a request", - "color": null, - "positions": [ - { - "rectangle": [ - 352.15, - 416.73, - 32.957703, - 10.526819 - ], - "pageNumber": 35 - } - ], - "textBefore": "the extraction solvents. ", - "textAfter": ".J., 1999 /", - "startOffset": 73552, - "endOffset": 73560, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a2cc9fa440a0d0e3e5e1a2032664e3c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ruhland S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 29 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 29]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 324.09003, - 44.461487, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "New study Validation: ", - "textAfter": ", 2018 Report", - "startOffset": 57384, - "endOffset": 57394, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6831803add031dfd75397393fbe71c99", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Zampakou, M.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 13]: Table_cell: Zampakou, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 351.71, - 59.152443, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 100594, - "endOffset": 100606, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60983d637a7c4770226753f759c148b3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 27]: Table_cell: Azoxystrobin and R230310 :", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 109.26002, - 95.422, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "ICI5504/1652 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 102699, - "endOffset": 102724, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c3dabbd97b977f59540caa41426e6a6c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Pelz S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 113, - 3, - 1 - ], - "closestHeadline": "A 2.1.2 Methods for post-authorization control and monitoring purposes (KCP 5.2) ", - "section": "[113, 3, 1]: Paragraph: Report: Validation of the", - "color": null, - "positions": [ - { - "rectangle": [ - 495.49164, - 438.93, - 30.591858, - 11.017679 - ], - "pageNumber": 68 - } - ], - "textBefore": "Materials, Weeren R.D., ", - "textAfter": ", 2001, Report", - "startOffset": 131543, - "endOffset": 131550, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4bcd4318df1b84af08790614221bda39", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 27]: Table_cell: Azoxystrobin – Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 120.78001, - 50.09886, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "VV-401211 , ICI5504_11490 ", - "textAfter": " Eurofins - ADME", - "startOffset": 111759, - "endOffset": 111772, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2162af68d3a6304f731274ffba280dd7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot, A. J.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 66, - 1 - ], - "closestHeadline": "Table 5.3-11: Validated methods for food and feed of plant origin ", - "section": "[66, 1]: Table: #cols: 5, #rows: 10, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 424.15, - 639.62, - 45.756287, - 10.526819 - ], - "pageNumber": 42 - } - ], - "textBefore": "REM 164.09 Validation: ", - "textAfter": " (2004) Report: RJ3548B", - "startOffset": 86885, - "endOffset": 86898, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a3447c57280cef51e57e96df14179c46", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 38, - 1, - 9 - ], - "closestHeadline": "Table 5.2-15: Validated methods for the generation of pre-authorization data for CGA289267 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[38, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 423.07, - 666.14, - 31.03537, - 10.44714 - ], - "pageNumber": 25 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 53450, - "endOffset": 53456, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5573703da809e8378484413395560551", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 35, - 1 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 1]: Table: #cols: 5, #rows: 4, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 79.47996, - 43.23645, - 10.526819 - ], - "pageNumber": 23 - } - ], - "textBefore": "REM 164.10 Validation: ", - "textAfter": " 2005 Report: RJ3636B", - "startOffset": 49515, - "endOffset": 49527, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6f30040a51068a54163de23a955125ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection Munchwilen AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 9]: Table_cell: Statement on Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 380.87, - 173.34409, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "VV-887259 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 101672, - "endOffset": 101710, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3ed4299688be7dbc0eef76a5d54e3087", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Tillkes M", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 173, - 2, - 2 - ], - "closestHeadline": "A 2.1.2.2.2 Analytical method 2: DFG S19 ", - "section": "[173, 2, 2]: Paragraph: Validation of DFG Method", - "color": null, - "positions": [ - { - "rectangle": [ - 225.1551, - 579.35, - 45.19774, - 11.017679 - ], - "pageNumber": 81 - } - ], - "textBefore": "Liver and Egg, ", - "textAfter": "., 1997, Report", - "startOffset": 157270, - "endOffset": 157279, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a6de758f37d5e0147d831c7ab48aa0e6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "64380 Rossdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 105, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[105, 1]: Paragraph: Test facility: ibacon GmbH,", - "color": null, - "positions": [ - { - "rectangle": [ - 281.98447, - 424.53, - 70.02667, - 11.017679 - ], - "pageNumber": 65 - } - ], - "textBefore": "Arheilger Weg 17, ", - "textAfter": ", Germany", - "startOffset": 125813, - "endOffset": 125827, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9dd625473b7ecf11ce18ad7cde06f800", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 39, - 1, - 9 - ], - "closestHeadline": "Table 5.2-16: Validated methods for the generation of pre-authorization data for CGA289268 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[39, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 406.99, - 660.38, - 31.03537, - 10.44714 - ], - "pageNumber": 26 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 55299, - "endOffset": 55305, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2e2256723803f0a1ebdf5457f02b0ac1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services Ecotox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[291, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 129.5, - 460.31, - 202.0651, - 11.017679 - ], - "pageNumber": 112 - } - ], - "textBefore": "Test facility: ", - "textAfter": ", Eutinger Str.", - "startOffset": 230875, - "endOffset": 230916, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "de4596966f0fcc782b741c3eecc27b87", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Report Zampakou M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2]: Table: #cols: 2, #rows: 18, Reference: KCP 5.1.1 Report", - "color": null, - "positions": [ - { - "rectangle": [ - 74.064, - 226.49997, - 27.22068, - 10.526819 - ], - "pageNumber": 9 - }, - { - "rectangle": [ - 197.09, - 226.49997, - 58.564804, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "Reference: KCP 5.1.1 ", - "textAfter": " (2020). Statement on", - "startOffset": 17404, - "endOffset": 17422, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57b27ac2a189a33a09ddff7360e701c3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gemrot, F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 164, - 2 - ], - "closestHeadline": "Specificity ", - "section": "[164, 2]: Paragraph: Confirmatory transition can be", - "color": null, - "positions": [ - { - "rectangle": [ - 146.98895, - 669.98, - 47.84735, - 11.017679 - ], - "pageNumber": 80 - } - ], - "textBefore": "in blood (", - "textAfter": ", 2011, Report", - "startOffset": 154972, - "endOffset": 154982, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dfe47221315167c8be41811e0f4b7e41", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 39, - 1 - ], - "closestHeadline": "Table 5.2-16: Validated methods for the generation of pre-authorization data for CGA289268 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[39, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 405.67, - 557.63, - 43.23645, - 10.526819 - ], - "pageNumber": 26 - } - ], - "textBefore": "REM 164.10 Validation: ", - "textAfter": " 2005 Report: RJ3636B", - "startOffset": 55431, - "endOffset": 55443, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5f751e9458db80355bbe308fd8eaaecc", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "1781.7100. Smithers", - "reason": "Found after \"No:\" contact keyword", - "matchedRule": "PII.4.0", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 338, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.11 Analytical method 11 - fenpropidin residues in water ", - "section": "[338, 2, 1]: Paragraph: Report: Marini J.P. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 444.3782, - 572.27, - 92.70279, - 11.017679 - ], - "pageNumber": 128 - } - ], - "textBefore": "promelas). Report No: ", - "textAfter": " Viscient, 790 Main", - "startOffset": 267992, - "endOffset": 268011, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "70e6b6a5eb94a85d647570490c688d23", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 1, - 1 - ], - "closestHeadline": "Table A 11: Recovery results from method validation of azoxystrobin using the analytical method (quantification transition m/z 404 → 372) ", - "section": "[152, 1, 1]: Table: #cols: 6, #rows: 10, Matrix Fortification Level (mg/kg)", - "color": null, - "positions": [ - { - "rectangle": [ - 73.944, - 133.72, - 28.874046, - 10.526819 - ], - "pageNumber": 77 - } - ], - "textBefore": "", - "textAfter": " fat", - "startOffset": 150783, - "endOffset": 150789, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d6b4717b70e1fcf27038968eda10d11d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bocksch S", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 4]: Table: #cols: 5, #rows: 13, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 283.98, - 42.469513, - 10.526819 - ], - "pageNumber": 17 - } - ], - "textBefore": "2009a, 2009b) Validation: ", - "textAfter": ", 2008 Report", - "startOffset": 31895, - "endOffset": 31904, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d7a17643ebacb860f864e8a30060d773", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ryan J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 53, - 1, - 5 - ], - "closestHeadline": "Table 5.3-5: Statement on extraction efficiency ", - "section": "[53, 1, 5]: Table_cell: This is a request", - "color": null, - "positions": [ - { - "rectangle": [ - 271.73, - 194.22, - 29.949768, - 10.526819 - ], - "pageNumber": 38 - } - ], - "textBefore": "R230310 were extracted. ", - "textAfter": " et al., 1996", - "startOffset": 79248, - "endOffset": 79255, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c65c787eff58259a8502e6fed28f8bf2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services EcoChem GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 21]: Table_cell: Fenpropidin - Analytical Method", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 207.45001, - 194.88113, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "CGA114900_10922 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 104927, - "endOffset": 104969, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "484af5e51191fe004392c3eff71d35ee", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 9]: Table_cell: Azoxystrobin – Independent Laboratory", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "VV-619234 , ICI5504_12452 ", - "textAfter": " ResChem Analytical Limited", - "startOffset": 112232, - "endOffset": 112245, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c81c154bff8508ce77ac97ab8ec3d5a6", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 75, - 1, - 2, - 9 - ], - "closestHeadline": "Table 5.3-16: Validated methods for water ", - "section": "[75, 1, 2, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 421.39, - 725.18, - 31.03537, - 10.44714 - ], - "pageNumber": 45 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 96326, - "endOffset": 96332, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9e4f7d0b0a82ff699f04b671a670136e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dieterle, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0]: Table: #cols: 5, #rows: 14, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 113.43998, - 46.320007, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Method: ", - "textAfter": ", 1992 Reports:", - "startOffset": 45948, - "endOffset": 45960, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7e541d6e0815905b9e7968fbb76d8e33", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 9]: Table_cell: R230310 - Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 392.39, - 50.09886, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "VV-397754 , A17961A_10049 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 100523, - "endOffset": 100536, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7cef353861804b0c5f29b443727a1c66", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 160, - 2, - 4 - ], - "closestHeadline": "A 2.1.2.2.1.2 Independent laboratory validation ", - "section": "[160, 2, 4]: Paragraph: Syngenta File No. VV-328461", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 554.03, - 41.013626, - 11.017679 - ], - "pageNumber": 79 - } - ], - "textBefore": "", - "textAfter": " File No. VV-328461", - "startOffset": 153452, - "endOffset": 153460, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3cefc794eb0cd33ec7a225128990dfef", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 21]: Table_cell: Azoxystrobin – Residue Method", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 207.45001, - 50.09886, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "VV-128281 , ICI5504_11505 ", - "textAfter": " Eurofins - ADME", - "startOffset": 111479, - "endOffset": 111492, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1cbdf33e41717a2489a628b5666a1909", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Niefern-Öschelbronn", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[282, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 467.17142, - 593.51, - 71.785736, - 11.017679 - ], - "pageNumber": 109 - }, - { - "rectangle": [ - 70.824, - 580.79, - 25.789429, - 11.017679 - ], - "pageNumber": 109 - } - ], - "textBefore": "Strasse 24, 75223 ", - "textAfter": ", Germany", - "startOffset": 223308, - "endOffset": 223327, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f980850aea4bafa5aa27a999a54e581", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Mass Spectrometry", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 351, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[351, 1]: Paragraph: Sucrose solution (50% (w/v)", - "color": null, - "positions": [ - { - "rectangle": [ - 369.16452, - 598.67, - 85.372284, - 11.017679 - ], - "pageNumber": 132 - } - ], - "textBefore": "(LC) coupled with ", - "textAfter": " (MS). The limit", - "startOffset": 275874, - "endOffset": 275891, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "691614a1e8e0fa88c8c0c5a1bfe35dff", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kupferstraße 6 04827 Machern OT Gerichshain, Germany", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 299, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[299, 1]: Paragraph: Test facility: BioChem agrar,", - "color": null, - "positions": [ - { - "rectangle": [ - 442.66214, - 296.49002, - 95.970795, - 11.017679 - ], - "pageNumber": 115 - }, - { - "rectangle": [ - 70.824, - 283.74002, - 158.92084, - 11.017679 - ], - "pageNumber": 115 - } - ], - "textBefore": "chemische Analytik GmbH ", - "textAfter": "", - "startOffset": 238623, - "endOffset": 238675, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "58e7869c95a11207c6e263e8899c9b80", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 380, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[380, 3, 1]: Paragraph: Report: Richardson M. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 222.03079, - 143.70003, - 41.01361, - 11.017679 - ], - "pageNumber": 138 - } - ], - "textBefore": "6EY, UK (", - "textAfter": " File No. VV-124541)", - "startOffset": 289926, - "endOffset": 289934, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "43e62d999ca97fbdbb8a4f2cb6c439cc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services EcoChem GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.10 Analytical method 10 – ECO_029_03A ", - "section": "[333, 2, 1]: Paragraph: Report: Kovacevic E. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 521.3656, - 189.42, - 15.798279, - 11.017679 - ], - "pageNumber": 125 - }, - { - "rectangle": [ - 199.73, - 176.70003, - 207.17665, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "Report No: S17-08105. ", - "textAfter": " / Eurofins Agroscience", - "startOffset": 262427, - "endOffset": 262469, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "371b79b4b33f78a07f20c91430bd8f0b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Devine, T.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 13]: Table_cell: Devine, T.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 42.519234, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 112305, - "endOffset": 112315, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b7bb28b30e21086fa0d780f40faadbcb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Jealott’s Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 380, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[380, 3, 1]: Paragraph: Report: Richardson M. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 156.42, - 56.072174, - 11.017679 - ], - "pageNumber": 138 - } - ], - "textBefore": "Number GRM024.03A. Syngenta, ", - "textAfter": " Inernational Research Centre,", - "startOffset": 289845, - "endOffset": 289859, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "54b5f6812c396693cb0ed9b6c6578c6e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 29 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 29]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 394.29, - 32.957703, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "RAM 305/03 Validation: ", - "textAfter": ".J., 1999 Report", - "startOffset": 70001, - "endOffset": 70009, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b50f4df5321c46f1e0d366a622e18e6c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Gemrot, F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 150, - 1, - 0, - 1, - 4 - ], - "closestHeadline": "A 2.1.2.2.1.1 Method validation ", - "section": "[150, 1, 0, 1, 4]: Paragraph: dated for method RAM", - "color": null, - "positions": [ - { - "rectangle": [ - 355.75085, - 656.3, - 47.880524, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "in blood (", - "textAfter": ", 2011, Report", - "startOffset": 149402, - "endOffset": 149412, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f200b9743e3d93232ad0a4be335403d9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "De Benedictis S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 15 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 15]: Table_cell: De Benedictis S. (2011).", - "color": null, - "positions": [ - { - "rectangle": [ - 197.09, - 422.37, - 66.8017, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "", - "textAfter": " (2011). A16283D -", - "startOffset": 17066, - "endOffset": 17082, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2c4721ba5faaed8e621d9f09345ebdf9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 44, - 1 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 44, 1]: Paragraph: Validation: Lister N.J., 1999", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 182.69998, - 32.957703, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Validation: ", - "textAfter": ".J., 1999 Report", - "startOffset": 70556, - "endOffset": 70564, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ea050b3e380fe883c587e650ee7636e5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Marini J.P.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 338, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.11 Analytical method 11 - fenpropidin residues in water ", - "section": "[338, 2, 1]: Paragraph: Report: Marini J.P. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 584.99, - 49.525436, - 11.017679 - ], - "pageNumber": 128 - } - ], - "textBefore": "Report: ", - "textAfter": " (2016) Fenpropidin T.G.", - "startOffset": 267869, - "endOffset": 267880, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5358b3e03090d71db359924abbdcc447", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins - ADME Bioanalyses", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 10, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 10, 21]: Table_cell: Azoxystrobin – Residue Method", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 207.45001, - 123.10974, - 10.526819 - ], - "pageNumber": 56 - } - ], - "textBefore": "ICI5504_11505 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 111493, - "endOffset": 111520, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e44d552224af79ef9c7bef482a86aa65", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kirkwood, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 24 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 24]: Table_cell: Method & Validation: Kirkwood,", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 456.71, - 55.32788, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": ", 2018 Report", - "startOffset": 57185, - "endOffset": 57197, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "18efc18e08afabe43f76831d69fefcd4", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Zampakou M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 14, - 1, - 3 - ], - "closestHeadline": "Table 5.2-2: Methods suitable for the determination of Toluene in plant protection product (PPP) A23317A ", - "section": "[14, 1, 3]: Table_cell: Adolph S. (2011), De", - "color": null, - "positions": [ - { - "rectangle": [ - 460.3647, - 479.75, - 56.64258, - 10.526819 - ], - "pageNumber": 10 - } - ], - "textBefore": "Benedictis S. (2011), ", - "textAfter": " (2020)", - "startOffset": 18814, - "endOffset": 18825, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0db00a08d3b421d6104f40159079c1b5", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 9]: Table_cell: Validation of DFG Method", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "VV-323618 , ICI5504/0276 ", - "textAfter": " N/A GLP Unpublished", - "startOffset": 109733, - "endOffset": 109746, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "be6515ca1f260c9078b582037e85eb60", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 288, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[288, 2]: Paragraph: (Schuler L., 2020)", - "color": null, - "positions": [ - { - "rectangle": [ - 461.84946, - 263.22006, - 45.8602, - 11.017679 - ], - "pageNumber": 111 - } - ], - "textBefore": "(", - "textAfter": ", 2020)", - "startOffset": 227773, - "endOffset": 227783, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c7c574cf875cfb72ac3e3ee637f8ddd3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Dressler, K.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 13]: Table_cell: Dressler, K.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 47.91755, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 103193, - "endOffset": 103205, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9c30d56288271884644a5fe0b8f16fc0", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 9, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 55 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 109346, - "endOffset": 109352, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a9efe4ca6cf09efb6ca1812e8a8c719", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Amic S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 226, - 2, - 8 - ], - "closestHeadline": "A 2.1.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[226, 2, 8]: Paragraph: azoxystrobin and its metabolite", - "color": null, - "positions": [ - { - "rectangle": [ - 424.65894, - 742.46, - 36.001465, - 11.017679 - ], - "pageNumber": 94 - } - ], - "textBefore": "R234886 in water, ", - "textAfter": ", 2012a, Report", - "startOffset": 183396, - "endOffset": 183403, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84aad5860ed13742ec382c6548337762", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "30310 Vergeze, France", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.1.2 Independent laboratory validation ", - "section": "[374, 2, 1]: Paragraph: Report: Royer A. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 435.08072, - 460.31, - 101.799835, - 11.017679 - ], - "pageNumber": 136 - } - ], - "textBefore": "chemin de Sommieres, ", - "textAfter": " (Syngenta File No.", - "startOffset": 285624, - "endOffset": 285645, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "624a4e6fbb7c36bd6dc0e4e830c88f6e", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "hen", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 151, - 1 - ], - "closestHeadline": "Materials and methods ", - "section": "[151, 1]: Paragraph: Analytical method RAM 399/01", - "color": null, - "positions": [ - { - "rectangle": [ - 89.42639, - 359.37, - 15.842392, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "and liver and ", - "textAfter": "’s egg. Residues", - "startOffset": 149992, - "endOffset": 149995, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acc5ec5a7404cfd25064b988299682e5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 64 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 64]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 217.97995, - 35.610016, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 75984, - "endOffset": 75992, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2e2db3ff5b97a993dbffa4d394de7ff6", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 29 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 29]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 457.91, - 56.91153, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "Method: ", - "textAfter": " et al., 1999", - "startOffset": 69902, - "endOffset": 69915, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4cfd6429f41f31bc19e88aee8b414481", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 81, - 1, - 1 - ], - "closestHeadline": "List of data submitted or referred to by the applicant and relied on, but already evaluated at EU peer review ", - "section": "[81, 1, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 132.98, - 287.87, - 31.035355, - 10.44714 - ], - "pageNumber": 58 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 113738, - "endOffset": 113744, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fa2e26522253a57462676e893a25083e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 338, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.11 Analytical method 11 - fenpropidin residues in water ", - "section": "[338, 2, 1]: Paragraph: Report: Marini J.P. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 475.82678, - 559.67, - 40.89209, - 11.017679 - ], - "pageNumber": 128 - } - ], - "textBefore": "02571-1037 USA (", - "textAfter": " File No. VV-465445)", - "startOffset": 268067, - "endOffset": 268075, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f611cbc51fd5997c95e90c5776588e2b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lakaschus S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 24]: Table_cell: ILV: Lakaschus S., Gizler", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 539.03, - 52.73828, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "ILV: ", - "textAfter": ", Gizler A.", - "startOffset": 67306, - "endOffset": 67318, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1e4405ab46a9846e958a436e56f76f8d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 32, - 1, - 1, - 9 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 1, 9]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 407.59, - 703.22, - 31.0542, - 10.44714 - ], - "pageNumber": 23 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 46555, - "endOffset": 46561, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f8498c588263322dbb51cf9f85e1a7d", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services EcoTox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 9]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 369.47, - 187.08893, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "VV-884202 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 106906, - "endOffset": 106947, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fc93766976ad33b750ef7693a32cc85c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 15 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 15]: Table_cell: De Benedictis S. (2011).", - "color": null, - "positions": [ - { - "rectangle": [ - 294.52908, - 410.85, - 120.492065, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "Toluene in A16283D. ", - "textAfter": ", Muenchwilen, Switzerland.", - "startOffset": 17165, - "endOffset": 17192, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f0a2fecea7711e2521e6c66f260d4db5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Wydra V.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 349, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[349, 2]: Paragraph: (Pupp A. and Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 464.38, - 418.29, - 43.464478, - 11.017679 - ], - "pageNumber": 131 - } - ], - "textBefore": "(Pupp A. and ", - "textAfter": ", 2008)", - "startOffset": 274603, - "endOffset": 274611, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "089d7c6c98237404adab16bfe51584f0", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 15]: Table_cell: Fenpropidin (CGA114900) - Independent", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 282.71, - 50.09886, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "VV-465839 , CGA114900_10695 ", - "textAfter": " CEM Analytical Services,", - "startOffset": 112595, - "endOffset": 112608, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dfbe6d907bbf11bc44b1f3b956d7fa51", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 360, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[360, 3, 1]: Paragraph: Report: Hargreaves S. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 276.74503, - 610.46, - 41.01358, - 11.017679 - ], - "pageNumber": 134 - } - ], - "textBefore": "6EY, UK (", - "textAfter": " File No. VV-124469)", - "startOffset": 280214, - "endOffset": 280222, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "70eda0a36ec44489bced03a000f5469f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 15 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 15]: Table_cell: Kettner R. (2011). R230310", - "color": null, - "positions": [ - { - "rectangle": [ - 294.2698, - 268.13998, - 37.04129, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "Issued date 11.07.2011, ", - "textAfter": " File No. VV-397754", - "startOffset": 21199, - "endOffset": 21207, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "00468fe5b1a9d3f66cdac85647cd37c1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 296, - 1, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[296, 1, 2]: Paragraph: (Schuler L., 2020)", - "color": null, - "positions": [ - { - "rectangle": [ - 461.84946, - 63.04, - 45.8602, - 11.017679 - ], - "pageNumber": 114 - } - ], - "textBefore": "(", - "textAfter": ", 2020)", - "startOffset": 235048, - "endOffset": 235058, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "57a5eb81a3426021afdf0f0915ae89a1", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection AG", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 3 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 3]: Table_cell: Adolph S. (2011). Analytical", - "color": null, - "positions": [ - { - "rectangle": [ - 389.18866, - 625.46, - 120.54248, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "headspace gas chromatography. ", - "textAfter": ", Muenchwilen, Switzerland.", - "startOffset": 16835, - "endOffset": 16862, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e13643624e1d75f22bb9c6d436813407", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Croucher A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 44, - 1 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 44, 1]: Paragraph: Validation: Lister N.J., 1999", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 136.72, - 49.461426, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "2004 Report RJ3552B ", - "textAfter": ", 2002 Report", - "startOffset": 70621, - "endOffset": 70632, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "698195a25c506f1d86cdacb978e235a5", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 59, - 1, - 0, - 24 - ], - "closestHeadline": "Table 5.3-8: Validated methods for water ", - "section": "[59, 1, 0, 24]: Table_cell: Brown D (2019). Syngenta", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 480.47, - 37.270386, - 10.526819 - ], - "pageNumber": 40 - } - ], - "textBefore": "Brown D (2019). ", - "textAfter": " File No. ICI5504_12452", - "startOffset": 82604, - "endOffset": 82612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba3ac14c8e6baa91c29efbb49d66780f", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 282, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[282, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 70.824, - 593.51, - 53.72065, - 11.017679 - ], - "pageNumber": 109 - } - ], - "textBefore": "", - "textAfter": ": Eurofins Agroscience", - "startOffset": 223223, - "endOffset": 223236, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "95c02b2857664c411746a0afa612a201", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dieterle, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0]: Table: #cols: 5, #rows: 14, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 365.25, - 46.26422, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Method: ", - "textAfter": ", 1993 Report:", - "startOffset": 45026, - "endOffset": 45038, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "01be5534d48b460ed229a23a9b288707", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 14 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 14]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 597.47, - 32.957703, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "RAM 305/03 Validation: ", - "textAfter": ".J., 1999 Report", - "startOffset": 69464, - "endOffset": 69472, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2dfad4a39344e12776765db52721d529", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 82, - 1, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and not relied on ", - "section": "[82, 1, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 132.98, - 110.34, - 31.035355, - 10.44714 - ], - "pageNumber": 58 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 113994, - "endOffset": 114000, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fbc37ee1ebc4bb6785647c86eab38d5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Wydra V.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 305, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.6 Analytical method 6 - fenpropidin residues in water ", - "section": "[305, 2, 1]: Paragraph: Report: Bebon R., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 250.71272, - 535.67, - 45.341293, - 11.017679 - ], - "pageNumber": 118 - } - ], - "textBefore": "Report: Bebon R., ", - "textAfter": " (2017) Fenpropidin -", - "startOffset": 245467, - "endOffset": 245475, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b3d4d89c44724a96dae80f33433f7354", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 9]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 369.47, - 50.09886, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "Document No. VV-884202 ", - "textAfter": " Eurofins Agroscience Services", - "startOffset": 106892, - "endOffset": 106905, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0bceba0adf4812b4d3277cfbbc8e76ea", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kettner R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 15 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 15]: Table_cell: Kettner R. (2011). R230310", - "color": null, - "positions": [ - { - "rectangle": [ - 197.09, - 291.17996, - 41.234406, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "", - "textAfter": " (2011). R230310 -", - "startOffset": 21017, - "endOffset": 21027, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "71e72610032f2e505c8a16ba9ef2796c", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 31 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 31]: Table_cell: Fat (bovine)", - "color": null, - "positions": [ - { - "rectangle": [ - 156.36656, - 443.13, - 27.300354, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Fat (", - "textAfter": ")", - "startOffset": 35745, - "endOffset": 35751, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b900a7979ad664da8e1619c2492086df", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Smithers Viscient, 790 Main Street, Wareham, MA 02571-1037", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 311, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.7 Analytical method 7 - fenpropidin residues in water ", - "section": "[311, 2, 1]: Paragraph: Report: Kirkwood A. (2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 252.40186, - 534.35, - 284.69824, - 11.017679 - ], - "pageNumber": 120 - } - ], - "textBefore": "Report No: 1781.7202. ", - "textAfter": " USA (Syngenta File", - "startOffset": 250210, - "endOffset": 250268, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ba8f4b3dcd30af09a9103e82a2683a4f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 34 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 34]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 260.34, - 53.913544, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2018 Report", - "startOffset": 57514, - "endOffset": 57526, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "18c7f764566e35defee3ac0b4c5f34a1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 2, - 9 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 2, 9]: Table_cell: Method: Burke S.R., 1997", - "color": null, - "positions": [ - { - "rectangle": [ - 455.16806, - 632.66, - 40.985443, - 10.526819 - ], - "pageNumber": 15 - } - ], - "textBefore": "Validation: Clarke D.M., ", - "textAfter": ", 1994 Report", - "startOffset": 28086, - "endOffset": 28096, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b23f4ebf57906df847e60d89aa6ad6f2", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Amic S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 59, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-8: Validated methods for water ", - "section": "[59, 1, 0, 19]: Table_cell: Method: Amic S., 2012", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 593.15, - 32.728546, - 10.526819 - ], - "pageNumber": 40 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2012 /", - "startOffset": 82397, - "endOffset": 82404, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "10eaa5c7ea899d3ae532a0f80148a12a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 27 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 27]: Table_cell: Zampakou M. (2020). Statement", - "color": null, - "positions": [ - { - "rectangle": [ - 247.14896, - 192.05997, - 37.160828, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "Issued date 17.11.2020, ", - "textAfter": " File No. VV-887260", - "startOffset": 17651, - "endOffset": 17659, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "283caa190164b1d80ea3be7375865097", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 39, - 0 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 39, 0]: Paragraph: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 292.98, - 44.461487, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "Report RAM 305/02 ", - "textAfter": " et al., 2004", - "startOffset": 71784, - "endOffset": 71794, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5471da4d948559a155bdd50eb6defb12", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 27]: Table_cell: Azoxystrobin and R230310 :", - "color": null, - "positions": [ - { - "rectangle": [ - 301.08414, - 143.82, - 28.874084, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "of Residues in ", - "textAfter": " Muscle, Fat and", - "startOffset": 109147, - "endOffset": 109153, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2f2c63d7e604924854cd0806f169e44f", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 15]: Table_cell: Azoxystrobin – Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 294.23, - 50.09886, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "VV-398250 , ICI5504_11467 ", - "textAfter": " Eurofins - ADME", - "startOffset": 110004, - "endOffset": 110017, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0a67aac96409fac3769bbff1d37cdb21", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 35, - 1 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 1]: Table: #cols: 5, #rows: 4, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 125.559975, - 43.23645, - 10.526819 - ], - "pageNumber": 23 - } - ], - "textBefore": "Method: ", - "textAfter": " 2005 Report: REM", - "startOffset": 49466, - "endOffset": 49478, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "df11b5a7648611c928acf0383b0d88ec", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adolph S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 1, - 3 - ], - "closestHeadline": "Table 5.2-2: Methods suitable for the determination of Toluene in plant protection product (PPP) A23317A ", - "section": "[14, 1, 3]: Table_cell: Adolph S. (2011), De", - "color": null, - "positions": [ - { - "rectangle": [ - 284.69, - 479.75, - 40.616913, - 10.526819 - ], - "pageNumber": 10 - } - ], - "textBefore": "", - "textAfter": " (2011), De Benedictis", - "startOffset": 18771, - "endOffset": 18780, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2178a09bd84e9ec4bc9a5af191c9a610", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services Ecotox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 9]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) –", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 380.87, - 183.74234, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "VV-899655 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 105619, - "endOffset": 105660, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "afa526b783b34e565dde937658e40e31", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 291, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[291, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 70.824, - 460.31, - 52.892647, - 11.017679 - ], - "pageNumber": 112 - } - ], - "textBefore": "", - "textAfter": ": Eurofins Agroscience", - "startOffset": 230860, - "endOffset": 230873, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2adb20c3738c99327295b3940e90c50", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Walser, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 39, - 1 - ], - "closestHeadline": "Table 5.2-16: Validated methods for the generation of pre-authorization data for CGA289268 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[39, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 405.67, - 487.91, - 44.561066, - 10.526819 - ], - "pageNumber": 26 - } - ], - "textBefore": "Method: ", - "textAfter": " (1999c) Report: REM", - "startOffset": 55717, - "endOffset": 55727, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dfa2d1e50a7030b878f3033a871c2886", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 150, - 2, - 4 - ], - "closestHeadline": "A 2.1.2.2.1.1 Method validation ", - "section": "[150, 2, 4]: Paragraph: Syngenta File No. VV-331095", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 516.11, - 41.013626, - 11.017679 - ], - "pageNumber": 77 - } - ], - "textBefore": "", - "textAfter": " File No. VV-331095", - "startOffset": 149693, - "endOffset": 149701, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0cceee2fedc1c7d59d509dc85a9db395", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Pelz, S. Weeren, R.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 25 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 25]: Table_cell: Pelz, S. Weeren, R.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 155.37, - 30.208687, - 10.526819 - ], - "pageNumber": 53 - }, - { - "rectangle": [ - 121.1, - 143.82, - 45.168602, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 107632, - "endOffset": 107651, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dba6c78398f6d4f0477fbe2b3383cb07", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Benazeraf, L.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 66, - 1 - ], - "closestHeadline": "Table 5.3-11: Validated methods for food and feed of plant origin ", - "section": "[66, 1]: Table: #cols: 5, #rows: 10, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 424.15, - 593.63, - 54.14261, - 10.526819 - ], - "pageNumber": 42 - } - ], - "textBefore": "Report: RJ3548B ILV: ", - "textAfter": " (2005) Report: SYN/FEN/04111", - "startOffset": 86927, - "endOffset": 86940, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "81355e95f9b56e28356457e46c6a7f41", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Amic S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 226, - 2, - 1 - ], - "closestHeadline": "A 2.1.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[226, 2, 1]: Paragraph: Report: Azoxystrobin - Residue", - "color": null, - "positions": [ - { - "rectangle": [ - 346.44055, - 322.16998, - 36.111847, - 11.017679 - ], - "pageNumber": 93 - } - ], - "textBefore": "R234886 in water, ", - "textAfter": ", 2012, Report", - "startOffset": 182604, - "endOffset": 182611, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e86cc2f4fdfb0d200d4b9c67a7091ff", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Weeren R.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 34 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 34]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 364.77, - 42.658722, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "Validation: ", - "textAfter": ", Pelz S.,", - "startOffset": 66213, - "endOffset": 66222, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "44e988707b86d4637722e4b8c3b1635b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Obert-Rauser, P.", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 6, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 7]: Table_cell: Obert-Rauser, P.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 66.91633, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 105388, - "endOffset": 105404, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "907171827156fa3ec62725e2aaddbbe4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Stahl F.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 0, 19]: Table_cell: Validation: Weeren R., Pelz", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 504.35, - 31.03534, - 10.526819 - ], - "pageNumber": 31 - } - ], - "textBefore": "ZEN-0002V New data ", - "textAfter": ", 2017 Report", - "startOffset": 65852, - "endOffset": 65860, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "298ee0d279ebbc127a67b9c65008f6fd", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ruhland, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 19]: Table_cell: Ruhland, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 265.05, - 46.97135, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 105944, - "endOffset": 105955, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "37e9c7cc2fa474fcfb1ff8d4c09be823", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Devine, T", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 408, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[408, 2]: Paragraph: (Devine, T 2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 466.40945, - 155.82002, - 44.027557, - 11.017679 - ], - "pageNumber": 144 - } - ], - "textBefore": "(", - "textAfter": " 2016)", - "startOffset": 304826, - "endOffset": 304835, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e27e066d155437f3f44a34f6666540eb", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 1, - 4 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 1, 4]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 731.42, - 31.03537, - 10.44714 - ], - "pageNumber": 28 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 57731, - "endOffset": 57737, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "760b9def65b76700fee695575f10e9be", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins - ADME Bioanalyses", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 9, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 9, 15]: Table_cell: Azoxystrobin – Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 294.23, - 123.10974, - 10.526819 - ], - "pageNumber": 55 - } - ], - "textBefore": "ICI5504_11467 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 110018, - "endOffset": 110045, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9866502240a34cb2e38d23d68f934ef7", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kovacevic E.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 24 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 24]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 283.13998, - 53.913544, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "Method: ", - "textAfter": ", 2018 Report", - "startOffset": 58727, - "endOffset": 58739, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3cbd850ba551623b744ff5ef647925db", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 24 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 24]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 539.03, - 44.461487, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "Report RAM 305/02 ", - "textAfter": ", 2004 Report", - "startOffset": 71309, - "endOffset": 71319, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a9fa3268d23cd216b5c893658f56153c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta - Jealott's Hill", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 27]: Table_cell: Azoxystrobin and R230310 :", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 109.26002, - 95.422, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "ICI5504/1652 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 109287, - "endOffset": 109312, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "51c22aeae809c7bdb82b02fa907385aa", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 15]: Table_cell: Independent Laboratory Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 294.23, - 50.09886, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "VV-328461 , ICI5504/1921 ", - "textAfter": " CEMAS GLP Unpublished", - "startOffset": 108603, - "endOffset": 108616, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "234975aef9411f24615a14d57caf8d16", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "bees", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 15]: Table_cell: Azoxystrobin (ICI5504) and Cyproconazole", - "color": null, - "positions": [ - { - "rectangle": [ - 644.9745, - 340.19, - 17.778625, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "following exposure of ", - "textAfter": " to treated winter", - "startOffset": 101864, - "endOffset": 101868, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6baa0794c5480a5b99c6790b38a1205d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Zampakou, M.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 19]: Table_cell: Zampakou, M.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 265.05, - 59.152443, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 100830, - "endOffset": 100842, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fbc1ae059c9636f05bc5bacd157fbc86", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Bocksch, S.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 13 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 13]: Table_cell: Bocksch, S.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 340.19, - 47.469353, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 101749, - "endOffset": 101760, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f57a9958505872cb31ae3d65a323be5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Link T.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 200, - 3, - 12 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 12]: Paragraph: Report: Link T., Kravchuk", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 164.46004, - 33.119995, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "Report: ", - "textAfter": ", Kravchuk O.", - "startOffset": 168660, - "endOffset": 168667, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "674d8bf19a9ed1fe343121e57a7d99e2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 113, - 3, - 1 - ], - "closestHeadline": "A 2.1.2 Methods for post-authorization control and monitoring purposes (KCP 5.2) ", - "section": "[113, 3, 1]: Paragraph: Report: Validation of the", - "color": null, - "positions": [ - { - "rectangle": [ - 339.43002, - 426.33, - 41.01358, - 11.017679 - ], - "pageNumber": 68 - } - ], - "textBefore": "Report No. ZEN-0002V, ", - "textAfter": " File No. VV-327232", - "startOffset": 131580, - "endOffset": 131588, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "482e39b6aa951d9269321d3627529cb3", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eutinger Str. 24", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.10 Analytical method 10 – ECO_029_03A ", - "section": "[333, 2, 1]: Paragraph: Report: Kovacevic E. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 293.98956, - 164.10005, - 71.461975, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "Services Ecotox GmbH ", - "textAfter": ", D-75223, Niefern-Öschelbronn,", - "startOffset": 262514, - "endOffset": 262530, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "acccecf587342c5ab08bcc73d4787a98", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Smithers Viscient", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 27]: Table_cell: Fenpropidin - Growth Inhibition", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 132.29999, - 71.47305, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "CGA114900_10912 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 103906, - "endOffset": 103923, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "240681a68a07c7b3e36095b9a1198673", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ibacon GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 6, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 6, 15]: Table_cell: Fenpropidin - Acute Toxicity", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 305.75, - 57.031036, - 10.526819 - ], - "pageNumber": 52 - } - ], - "textBefore": "CGA114900_10396 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 105898, - "endOffset": 105909, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5ac364fd993cc3ba31b2518046d24b90", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 90, - 4 - ], - "closestHeadline": "I. MATERIAL AND METHODS ", - "section": "[90, 4]: Paragraph: Content 252 g/L Source:", - "color": null, - "positions": [ - { - "rectangle": [ - 228.77, - 732.74, - 41.013626, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "252 g/L Source: ", - "textAfter": " Standard Reference: ASJ10008-03", - "startOffset": 118598, - "endOffset": 118606, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ed12599584c5db59423af3b333e080c5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Lister N", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 24, - 2, - 1 - ], - "closestHeadline": "Table 5.2-5: Statement on extraction efficiency ", - "section": "[24, 2, 1]: Table_cell: However, it should be", - "color": null, - "positions": [ - { - "rectangle": [ - 352.15, - 627.14, - 32.957703, - 10.526819 - ], - "pageNumber": 19 - } - ], - "textBefore": "the extraction solvents. ", - "textAfter": ".J., 1999 /", - "startOffset": 38769, - "endOffset": 38777, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f985ec8e0b7db430f049d101aa7f3b21", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Chaggar S.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 2, - 14 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 2, 14]: Table_cell: Method: Robinson N.J. et", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 574.43, - 44.461487, - 10.526819 - ], - "pageNumber": 33 - } - ], - "textBefore": "1999 Report RJ2770B ", - "textAfter": " et al., 2004", - "startOffset": 69497, - "endOffset": 69507, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "20803093b60f0843217af8fe0575354d", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 27]: Table_cell: Azoxystrobin and R230310 :", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 109.26002, - 50.09886, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "VV-331095 , ICI5504/1652 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 102685, - "endOffset": 102698, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "83c34fc83adbd501b4843415c2609b45", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 61, - 1, - 0, - 9 - ], - "closestHeadline": "Table 5.3-9: Validated methods for air ", - "section": "[61, 1, 0, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 258.18, - 31.03537, - 10.44714 - ], - "pageNumber": 40 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 83409, - "endOffset": 83415, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "74f0b33fcb4b261ecb4ad10a8670d143", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "40322210.", - "reason": "Found after \"No:\" contact keyword", - "matchedRule": "PII.4.0", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 344, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.12 Analytical method 12 - fenpropidin residues in water ", - "section": "[344, 2, 1]: Paragraph: Report: Pupp A., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 490.2389, - 87.40005, - 46.677185, - 11.017679 - ], - "pageNumber": 129 - } - ], - "textBefore": "Test. Report No: ", - "textAfter": " ibacon GmbH Arheilger", - "startOffset": 271624, - "endOffset": 271633, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8268201d955cbe8c625a104b952c8104", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ryan J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 9 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 9]: Table_cell: Method & Validation: Ryan", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 670.22, - 29.970001, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": " et al., 1996", - "startOffset": 34742, - "endOffset": 34749, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c05eaee5a3d9220ea2b1a94265a2c914", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Robinson, N.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 12, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 12, 7]: Table_cell: Robinson, N.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 53.056908, - 10.526819 - ], - "pageNumber": 58 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 113394, - "endOffset": 113406, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "03448c53ea3f4c764c2aeea7bc5beb69", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 186, - 3, - 1 - ], - "closestHeadline": "A 2.1.2.3 Description of Methods for the Analysis of Body Fluids and Tissues (KCP1 5.2.3) ", - "section": "[186, 3, 1]: Paragraph: Report: Azoxystrobin - Validation", - "color": null, - "positions": [ - { - "rectangle": [ - 417.90186, - 395.49, - 41.002533, - 11.017679 - ], - "pageNumber": 83 - } - ], - "textBefore": "Report No. S10-03815, ", - "textAfter": " File No. VV398250", - "startOffset": 161323, - "endOffset": 161331, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6717494be2d9f4e6dde845d8be813088", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 80, - 12, - 1 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 12, 1]: Table_cell: Author(s)", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 470.66, - 31.035362, - 10.44714 - ], - "pageNumber": 58 - } - ], - "textBefore": "", - "textAfter": "(s)", - "startOffset": 113244, - "endOffset": 113250, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6d49d4b89f99845281c1436847804724", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 15]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 282.71, - 50.09886, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "Document No. VV-884284 ", - "textAfter": " Eurofins Agroscience Services", - "startOffset": 107198, - "endOffset": 107211, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7f9d981c7df99b2a7ee316c51eb521b9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kang J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 1, - 59 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 1, 59]: Table_cell: ILV: Kang J., 2003", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 164.1, - 30.547363, - 10.526819 - ], - "pageNumber": 32 - } - ], - "textBefore": "ILV: ", - "textAfter": ", 2003 Report", - "startOffset": 68620, - "endOffset": 68627, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3439ebc772ea930ab720c875b130d2d0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ryan J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 14 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 14]: Table_cell: Method & Validation: Ryan", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 600.47, - 29.970001, - 10.526819 - ], - "pageNumber": 18 - } - ], - "textBefore": "Method & Validation: ", - "textAfter": " et al., 1997", - "startOffset": 34938, - "endOffset": 34945, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fcca83fba663b14c88c9f139b1a675b4", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 8, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 8, 9]: Table_cell: Analytical Method Development and", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 54 - } - ], - "textBefore": "VV-379800 , ICI5504/2766 ", - "textAfter": " SGS Institut Fresenius", - "startOffset": 108333, - "endOffset": 108346, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b758de229b86028a5e5a5a4685d5ea6b", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 264, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[264, 1]: Paragraph: Test facility: BioChem agrar,", - "color": null, - "positions": [ - { - "rectangle": [ - 70.824, - 120.04, - 52.528336, - 11.017679 - ], - "pageNumber": 102 - } - ], - "textBefore": "", - "textAfter": ": BioChem agrar,", - "startOffset": 208099, - "endOffset": 208112, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ee6078695a04ff7f544a4186856fa9e1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schmidt K.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 41, - 3, - 0, - 29 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 3, 0, 29]: Table_cell: Method: Kovacevic E., 2018", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 115.96, - 45.52716, - 10.526819 - ], - "pageNumber": 28 - } - ], - "textBefore": "S17-08105 (VV-469879) Validation: ", - "textAfter": ", 2021 Report", - "startOffset": 58986, - "endOffset": 58996, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "94b0349470b98564f0d73fca169ec7cf", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "BioChem agrar", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 15]: Table_cell: Fenpropidin - Repeated Exposure", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 294.23, - 61.43332, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "CGA114900_10971 Test Facility ", - "textAfter": " GmbH GLP Unpublished", - "startOffset": 104609, - "endOffset": 104622, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "717f8afb7bcf46eaff15f2d12cf24756", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 200, - 3, - 15 - ], - "closestHeadline": "A 2.1.2.4 Description of Methods for the Analysis of Soil (KCP 5.2.4) ", - "section": "[200, 3, 15]: Paragraph: Syngenta File No. ICI5504_12486", - "color": null, - "positions": [ - { - "rectangle": [ - 199.73, - 83.200035, - 41.013626, - 11.017679 - ], - "pageNumber": 86 - } - ], - "textBefore": "", - "textAfter": " File No. ICI5504_12486", - "startOffset": 168849, - "endOffset": 168857, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e2e4aa8a64532a3428ae158134f3b12a", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 374, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.1.2 Independent laboratory validation ", - "section": "[374, 2, 1]: Paragraph: Report: Royer A. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 203.43944, - 447.45, - 41.013626, - 11.017679 - ], - "pageNumber": 136 - } - ], - "textBefore": "Vergeze, France (", - "textAfter": " File No. VV-393069)", - "startOffset": 285647, - "endOffset": 285655, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c802a1aca90d67b5ba6158cf3475a057", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Pupp A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 349, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[349, 2]: Paragraph: (Pupp A. and Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 406.87, - 418.29, - 36.122864, - 11.017679 - ], - "pageNumber": 131 - } - ], - "textBefore": "(", - "textAfter": " and Wydra V.,", - "startOffset": 274591, - "endOffset": 274598, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a3f46c076eb5d279597be6099d6dc105", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J .", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0]: Table: #cols: 5, #rows: 14, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 465.23, - 43.23645, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "REM 164.09 Validation: ", - "textAfter": ", 2004 Report", - "startOffset": 44187, - "endOffset": 44199, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1db4437bb8ce0531a202062dab62ce71", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 27 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 27]: Table_cell: Azoxystrobin and R230310 :", - "color": null, - "positions": [ - { - "rectangle": [ - 301.08414, - 143.82, - 28.874084, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "of Residues in ", - "textAfter": " Muscle, Fat and", - "startOffset": 102559, - "endOffset": 102565, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6524b81dc83f773a189c4735a3162b66", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Niefern-Öschelbronn", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 333, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.10 Analytical method 10 – ECO_029_03A ", - "section": "[333, 2, 1]: Paragraph: Report: Kovacevic E. (2018),", - "color": null, - "positions": [ - { - "rectangle": [ - 417.17654, - 164.10005, - 93.503265, - 11.017679 - ], - "pageNumber": 125 - } - ], - "textBefore": "Str. 24, D-75223, ", - "textAfter": ", Germany (Syngenta", - "startOffset": 262541, - "endOffset": 262560, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d67b260c508263873af5df53aa051b56", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 15]: Table_cell: A16283D - Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 211.16998, - 103.3949, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "A16283D_10107 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 99957, - "endOffset": 99981, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "79b7dae61d31a63a3264f56724512baa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Crook S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 14 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 14]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 660.98, - 35.610016, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "Method: ", - "textAfter": " 2002 Report RAM", - "startOffset": 76584, - "endOffset": 76592, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1b3c3081ccaed2554b0dca76656c0e3f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Gasser, A.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 32, - 1, - 0, - 59 - ], - "closestHeadline": "Table 5.2-11: Validated methods for the generation of pre-authorization data for Fenpropidin in plants (KCP 5.1.2.5 in support of residues studies) ", - "section": "[32, 1, 0, 59]: Table_cell: Validation: Gasser, A., 2002a", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 211.61996, - 41.812134, - 10.526819 - ], - "pageNumber": 22 - } - ], - "textBefore": "Gasser, A., 2002b ", - "textAfter": ", 2002c Gasser,", - "startOffset": 45761, - "endOffset": 45771, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8179472dd1590f6fbad5c6cc2655a488", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 152, - 1, - 1 - ], - "closestHeadline": "Table A 11: Recovery results from method validation of azoxystrobin using the analytical method (quantification transition m/z 404 → 372) ", - "section": "[152, 1, 1]: Table: #cols: 6, #rows: 10, Matrix Fortification Level (mg/kg)", - "color": null, - "positions": [ - { - "rectangle": [ - 73.944, - 80.67997, - 28.874046, - 10.526819 - ], - "pageNumber": 77 - } - ], - "textBefore": "", - "textAfter": " milk", - "startOffset": 150888, - "endOffset": 150894, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1f38e3aaa6ebab882fe3d5168e8fbe70", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Ibacon GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 4, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 4, 9]: Table_cell: Fenpropidin - Toxicity to", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 380.87, - 57.031036, - 10.526819 - ], - "pageNumber": 50 - } - ], - "textBefore": "CGA114900_10897 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 103147, - "endOffset": 103158, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "68e2f19a97ac7faf7771b19867fb278c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dieterle, R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 35, - 2 - ], - "closestHeadline": "Table 5.2-13: Validated methods for the generation of pre-authorization data for Fenpropidin in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[35, 2]: Table: #cols: 5, #rows: 5, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 406.75, - 546.95, - 46.26422, - 10.526819 - ], - "pageNumber": 24 - } - ], - "textBefore": "REM 164.02 Validation: ", - "textAfter": ", 1992 Gasser,", - "startOffset": 50867, - "endOffset": 50879, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c17537855746737ca2cc7c2353268888", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 2, - 2, - 3 - ], - "closestHeadline": "Toluene ", - "section": "[11, 2, 2, 3]: Table_cell: Adolph S. (2011). Analytical", - "color": null, - "positions": [ - { - "rectangle": [ - 247.25, - 602.39, - 37.160828, - 10.526819 - ], - "pageNumber": 9 - } - ], - "textBefore": "Issued date 30.11.2011, ", - "textAfter": " File No. VV-127729", - "startOffset": 16947, - "endOffset": 16955, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "52bfc801c74e895e3a2073a8243a8176", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Kleebaum K.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 326, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[326, 2]: Paragraph: (Kleebaum K., 2018)", - "color": null, - "positions": [ - { - "rectangle": [ - 449.02, - 234.3, - 58.655518, - 11.017679 - ], - "pageNumber": 123 - } - ], - "textBefore": "(", - "textAfter": ", 2018)", - "startOffset": 257886, - "endOffset": 257897, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "81e0c431c9804e7cdd1a9c026d2a36b3", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 19, - 1, - 2 - ], - "closestHeadline": "Table 5.2-3: Methods suitable for the determination of the relevant impurities in plant protection product (PPP) A23317A ", - "section": "[19, 1, 2]: Table_cell: Author(s), year", - "color": null, - "positions": [ - { - "rectangle": [ - 74.064, - 283.01996, - 31.035362, - 10.44714 - ], - "pageNumber": 12 - } - ], - "textBefore": "", - "textAfter": "(s), year", - "startOffset": 22734, - "endOffset": 22740, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dd8b1dcfadbb8910c9d99cf8a1af80e0", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 273, - 1 - ], - "closestHeadline": "Study Design and Methods ", - "section": "[273, 1]: Paragraph: Test facility: Eurofins Agroscience", - "color": null, - "positions": [ - { - "rectangle": [ - 70.824, - 720.74, - 53.72065, - 11.017679 - ], - "pageNumber": 106 - } - ], - "textBefore": "", - "textAfter": ": Eurofins Agroscience", - "startOffset": 215905, - "endOffset": 215918, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f193a24e44a0ccc5f760c7a496096bd4", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 21]: Table_cell: Determination of R230310 in", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 135.9, - 50.09886, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "VV-127958 , A17961A_10048 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 100155, - "endOffset": 100168, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50b2c15bccab3b088b6b5004e4ce3984", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 9]: Table_cell: R230310 - Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 392.39, - 103.3949, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "A17961A_10049 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 100537, - "endOffset": 100561, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "51e5fb59f3600931588e9d10f017575f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "ibacon GmbH Arheilger Weg 17 64380 Rossdorf", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 305, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.6 Analytical method 6 - fenpropidin residues in water ", - "section": "[305, 2, 1]: Paragraph: Report: Bebon R., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 384.20834, - 510.34998, - 152.6611, - 11.017679 - ], - "pageNumber": 118 - }, - { - "rectangle": [ - 199.73, - 497.63, - 70.02672, - 11.017679 - ], - "pageNumber": 118 - } - ], - "textBefore": "Report No: 120041240. ", - "textAfter": " Germany (Syngenta File", - "startOffset": 245636, - "endOffset": 245679, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5bb0cb87c39f255cf3ee95565e6c5a9e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Link", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 57, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.3-7: Validated methods for soil ", - "section": "[57, 1, 0, 19]: Table_cell: Method: Link et al.", - "color": null, - "positions": [ - { - "rectangle": [ - 398.95, - 312.68997, - 18.874237, - 10.526819 - ], - "pageNumber": 39 - } - ], - "textBefore": "Method: ", - "textAfter": " et al. 2019", - "startOffset": 81234, - "endOffset": 81238, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "53693856ef8db224d10b9d969008ea1a", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Elliot A.J.,", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 38, - 1 - ], - "closestHeadline": "Table 5.2-15: Validated methods for the generation of pre-authorization data for CGA289267 in animal products (KCP 5.1.2.5 in support of residues studies) ", - "section": "[38, 1]: Table: #cols: 5, #rows: 6, Component of residue definition", - "color": null, - "positions": [ - { - "rectangle": [ - 421.27, - 569.15, - 43.23645, - 10.526819 - ], - "pageNumber": 25 - } - ], - "textBefore": "REM 164.10 Validation: ", - "textAfter": " 2005 Report: RJ3636B", - "startOffset": 53582, - "endOffset": 53594, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "471bf2acd3207542240fb2d7c48088fa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Wydra V.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 310, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[310, 2]: Paragraph: (Bebon R. and Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 464.38, - 88.48, - 43.354095, - 11.017679 - ], - "pageNumber": 119 - } - ], - "textBefore": "(Bebon R. and ", - "textAfter": ", 2017)", - "startOffset": 249594, - "endOffset": 249602, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1ece1a5a5aed2dfedebc0816a202a676", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 44 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 44]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 236.22, - 46.035156, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 77224, - "endOffset": 77235, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "49c606bde86be4a10958e9de0bf78a93", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 9]: Table_cell: Determination of toluene in", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 286.31, - 103.3949, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "A16283D_10108 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 99723, - "endOffset": 99747, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7cb55374d8c480c82a52bcd7be7c8ff8", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atkinson S.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 1, - 54 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 1, 54]: Table_cell: ILV: Atkinson S., 2003", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 305.36996, - 47.22043, - 10.526819 - ], - "pageNumber": 36 - } - ], - "textBefore": "ILV: ", - "textAfter": ", 2003 Report", - "startOffset": 75814, - "endOffset": 75825, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "78df3a537430c0c96ed50de20648c699", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 0, - 0, - 0, - 13 - ], - "closestHeadline": "Version history ", - "section": "[0, 0, 0, 13]: Paragraph: Applicant: Syngenta", - "color": null, - "positions": [ - { - "rectangle": [ - 317.59, - 141.66, - 66.906006, - 14.181 - ], - "pageNumber": 1 - } - ], - "textBefore": "Applicant: ", - "textAfter": "", - "startOffset": 328, - "endOffset": 336, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c6d2c50e608dac0d9285ce86d3265950", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 9 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 9]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 716.18, - 31.03537, - 10.44714 - ], - "pageNumber": 37 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 76491, - "endOffset": 76497, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aed962b998c6c2d006a975d28c25ac71", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bocksch S", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 47, - 1, - 3, - 39, - 2 - ], - "closestHeadline": "Table 5.3-2: Validated methods for food and feed of plant origin ", - "section": "[47, 1, 3, 39, 2]: Paragraph: Validation: Bocksch S, 2008", - "color": null, - "positions": [ - { - "rectangle": [ - 393.43, - 157.37997, - 42.469513, - 10.526819 - ], - "pageNumber": 34 - } - ], - "textBefore": "Validation: ", - "textAfter": ", 2008 Report", - "startOffset": 71949, - "endOffset": 71958, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "94f2465df54cc9bfcf093f2e1659df45", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Robinson N.J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 3 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 3]: Table: #cols: 5, #rows: 8, Method type Matrix type", - "color": null, - "positions": [ - { - "rectangle": [ - 399.91, - 564.11, - 56.91153, - 10.526819 - ], - "pageNumber": 16 - } - ], - "textBefore": "Method ", - "textAfter": " et al., 1999", - "startOffset": 29785, - "endOffset": 29798, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d24206a04c373d5ca06f7505bc7c05c9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ryan J.", - "reason": "Author found by \"et al\" regex", - "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 26, - 1, - 5 - ], - "closestHeadline": "Table 5.2-6: Statement on extraction efficiency ", - "section": "[26, 1, 5]: Table_cell: This is a request", - "color": null, - "positions": [ - { - "rectangle": [ - 271.73, - 291.17996, - 29.949768, - 10.526819 - ], - "pageNumber": 19 - } - ], - "textBefore": "R230310 were extracted. ", - "textAfter": " et al., 1996", - "startOffset": 39920, - "endOffset": 39927, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "54ca76a60128567bd2824a7415dba990", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Zampakou M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 19, - 1, - 3 - ], - "closestHeadline": "Table 5.2-3: Methods suitable for the determination of the relevant impurities in plant protection product (PPP) A23317A ", - "section": "[19, 1, 3]: Table_cell: Kettner R. (2011), Zampakou", - "color": null, - "positions": [ - { - "rectangle": [ - 360.67, - 283.01993, - 56.423462, - 10.526819 - ], - "pageNumber": 12 - } - ], - "textBefore": "Kettner R. (2011), ", - "textAfter": " (2020)", - "startOffset": 22769, - "endOffset": 22780, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8307f15a0367fee746e354e257db762f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Richards S.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 51, - 1, - 2, - 14 - ], - "closestHeadline": "Table 5.3-4: Validated methods for food and feed of animal origin ", - "section": "[51, 1, 2, 14]: Table_cell: Method: Crook S. 2002", - "color": null, - "positions": [ - { - "rectangle": [ - 389.83, - 602.99, - 46.035156, - 10.526819 - ], - "pageNumber": 37 - } - ], - "textBefore": "New data Validation: ", - "textAfter": ", 2002 Report", - "startOffset": 76637, - "endOffset": 76648, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3df4c0b0f27d754aa5423cb67a7dfabf", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Schuler, L.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 279, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[279, 2]: Paragraph: (Schuler, L., 2020)", - "color": null, - "positions": [ - { - "rectangle": [ - 459.08945, - 421.17, - 48.62021, - 11.017679 - ], - "pageNumber": 108 - } - ], - "textBefore": "(", - "textAfter": ", 2020)", - "startOffset": 221120, - "endOffset": 221131, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a28832954030518c18d00eb08755a478", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 9 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 9]: Table_cell: Statement on Validation of", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 380.87, - 50.09886, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "Document No. VV-887259 ", - "textAfter": " Syngenta Crop Protection", - "startOffset": 101658, - "endOffset": 101671, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f020eb7a1256676a60418055216a62d5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kovacevic, E.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 5, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 5, 19]: Table_cell: Kovacevic, E.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 253.53, - 56.423378, - 10.526819 - ], - "pageNumber": 51 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 104662, - "endOffset": 104675, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d19704d3b3ecffba5f98a986ab33270", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Sapiets A.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 1, - 24, - 0 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 1, 24, 0]: Paragraph: Method: Burke S.R., 1996", - "color": null, - "positions": [ - { - "rectangle": [ - 455.16806, - 509.63, - 40.985443, - 10.526819 - ], - "pageNumber": 14 - } - ], - "textBefore": "Validation: Clarke D.M., ", - "textAfter": ", 1994 Report", - "startOffset": 27682, - "endOffset": 27692, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a033966852edea2f13747bea44ee412b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 4 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 4]: Table_cell: Author(s), year / missing", - "color": null, - "positions": [ - { - "rectangle": [ - 422.11, - 700.1, - 31.03537, - 10.44714 - ], - "pageNumber": 27 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 56709, - "endOffset": 56715, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "17987a6be6279a592f36cddc780a7f59", - "type": "vertebrate", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Bovine", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 163, - 1 - ], - "closestHeadline": "Table A 12: Recovery results from independent laboratory validation of azoxystrobin using the analytical method ", - "section": "[163, 1]: Table: #cols: 6, #rows: 8, Matrix Fortification Level (mg/kg)", - "color": null, - "positions": [ - { - "rectangle": [ - 73.944, - 135.75998, - 28.874046, - 10.526819 - ], - "pageNumber": 79 - } - ], - "textBefore": "", - "textAfter": " muscle", - "startOffset": 154435, - "endOffset": 154441, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5776541032f5cf6bb3c9b95f81dc9723", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "CEM Analytical Services Limited (CEMAS)", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 394, - 2, - 1 - ], - "closestHeadline": "A 1.1.1.1.2.2 Independent laboratory validation ", - "section": "[394, 2, 1]: Paragraph: Report: Devine T. (2016)", - "color": null, - "positions": [ - { - "rectangle": [ - 419.21756, - 616.58, - 117.81955, - 11.017679 - ], - "pageNumber": 141 - }, - { - "rectangle": [ - 199.73, - 603.95, - 84.64372, - 11.017679 - ], - "pageNumber": 141 - } - ], - "textBefore": "Report Number CEMR-7706. ", - "textAfter": ", Imperial House,", - "startOffset": 295407, - "endOffset": 295446, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6b8e06894a3b4675a5dd640290f9fce9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "75 chemin de Sommières", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 2 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 2]: Paragraph: BioChem agrar GmbH, Kupferstr.", - "color": null, - "positions": [ - { - "rectangle": [ - 389.05457, - 482.27, - 111.548096, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "Phase: Eurofins/ADME BIOANALYSES, ", - "textAfter": ", 30310 Vergèze,", - "startOffset": 119240, - "endOffset": 119262, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "eca022443a2f7152729ecdd0412e94a4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kettner, R.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 2, - 7 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 2, 7]: Table_cell: Kettner, R.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 426.98, - 44.09292, - 10.526819 - ], - "pageNumber": 48 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 100381, - "endOffset": 100392, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4f50fef869ad1f4a0d68f0b9f1be6f29", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins-GAB GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 92, - 1 - ], - "closestHeadline": "A3. Test Facilities ", - "section": "[92, 1]: Paragraph: Field Phase Eurofins-GAB GmbH,", - "color": null, - "positions": [ - { - "rectangle": [ - 231.05, - 558.23, - 97.59071, - 11.017679 - ], - "pageNumber": 62 - } - ], - "textBefore": "Field Phase ", - "textAfter": ", Eutinger Str.", - "startOffset": 118896, - "endOffset": 118913, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2d6095a050fe77a5dd926608f49a2fc0", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta Crop Protection", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 16, - 2, - 1, - 15 - ], - "closestHeadline": "Azoxystrobin Z-isomer (R230310) ", - "section": "[16, 2, 1, 15]: Table_cell: Kettner R. (2011). R230310", - "color": null, - "positions": [ - { - "rectangle": [ - 493.12967, - 291.17996, - 37.14084, - 10.526819 - ], - "pageNumber": 11 - }, - { - "rectangle": [ - 197.09, - 279.65994, - 63.843597, - 10.526819 - ], - "pageNumber": 11 - } - ], - "textBefore": "analytical method SD-1464/1, ", - "textAfter": ", Muenchwilen AG,", - "startOffset": 21089, - "endOffset": 21113, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1bb693d0712211a3c260b4b69c184380", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Syngenta", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 380, - 3, - 1 - ], - "closestHeadline": "A 2.2.2.5 Description of Methods for the Analysis of Water (KCP 5.2.5) ", - "section": "[380, 3, 1]: Paragraph: Report: Richardson M. (2007)", - "color": null, - "positions": [ - { - "rectangle": [ - 493.52994, - 169.02003, - 40.89212, - 11.017679 - ], - "pageNumber": 138 - } - ], - "textBefore": "Report Number GRM024.03A. ", - "textAfter": ", Jealott’s Hill", - "startOffset": 289835, - "endOffset": 289843, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0eca6b08ad12ad89bc79cff6df584eb8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "GAB Biotechnologie GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 3, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 3, 15]: Table_cell: Azoxystrobin (ICI5504) and Cyproconazole", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 294.23, - 114.49036, - 10.526819 - ], - "pageNumber": 49 - } - ], - "textBefore": "ICI5504_10398 Test Facility ", - "textAfter": " Not GLP Unpublished", - "startOffset": 102003, - "endOffset": 102026, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "496a6b9126242fa28278cbbaa69fece8", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Wydra V.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 41, - 1, - 0, - 19 - ], - "closestHeadline": "Table 5.2-18: Validated methods for the generation of pre-authorization data for Fenpropidin in soil, water (KCP 5.1.2.6 in support of ecotoxicological studies) ", - "section": "[41, 1, 0, 19]: Table_cell: Method & Validation: Bebon", - "color": null, - "positions": [ - { - "rectangle": [ - 464.88824, - 520.43, - 39.401794, - 10.526819 - ], - "pageNumber": 27 - } - ], - "textBefore": "Validation: Bebon R., ", - "textAfter": ", 2017 Report", - "startOffset": 57041, - "endOffset": 57049, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0314baa023c242916b98f424aefce33d", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Author", - "reason": "Redacted because it's row belongs to a vertebrate study", - "matchedRule": "CBI.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2, - 5, - 4 - ], - "closestHeadline": "5.2.2 Methods for the determination of residues of Azoxystrobin (KCP1 5.1.2) ", - "section": "[22, 2, 5, 4]: Table_cell: Author(s), year / Report", - "color": null, - "positions": [ - { - "rectangle": [ - 404.83, - 726.86, - 31.03537, - 10.44714 - ], - "pageNumber": 18 - } - ], - "textBefore": "", - "textAfter": "(s), year /", - "startOffset": 34592, - "endOffset": 34598, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9fb557a1b3b05b4ee911d9c21a5bf637", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Test Facility", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 11, - 21 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 11, 21]: Table_cell: Fenpropidin (CGA114900) - Residue", - "color": null, - "positions": [ - { - "rectangle": [ - 252.29, - 196.04999, - 50.09886, - 10.526819 - ], - "pageNumber": 57 - } - ], - "textBefore": "VV-124541 , CGA114900/4912 ", - "textAfter": " Syngenta - Jealott's", - "startOffset": 112905, - "endOffset": 112918, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b2018164b779c2150155578578e93aa3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Wydra V.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 344, - 2, - 1 - ], - "closestHeadline": "A 2.2.1.6.12 Analytical method 12 - fenpropidin residues in water ", - "section": "[344, 2, 1]: Paragraph: Report: Pupp A., Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 240.16951, - 100.00002, - 42.71376, - 11.017679 - ], - "pageNumber": 129 - } - ], - "textBefore": "Report: Pupp A., ", - "textAfter": " (2008) Fenpropidin -", - "startOffset": 271498, - "endOffset": 271506, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "72b25e250fcaf3f6092edd6cab1c1ef0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Kettner, R.", - "reason": "Not redacted because it's row does not belong to a vertebrate study", - "matchedRule": "CBI.12.2", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 1, - 19 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 1, 19]: Table_cell: Kettner, R.", - "color": null, - "positions": [ - { - "rectangle": [ - 121.1, - 170.48999, - 44.09292, - 10.526819 - ], - "pageNumber": 47 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 100014, - "endOffset": 100025, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8a573240c3e785f6977a522e5bc82cef", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Eurofins Agroscience Services EcoTox GmbH", - "reason": "Address found for Non Vertebrate Study", - "matchedRule": "CBI.1.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 80, - 7, - 15 - ], - "closestHeadline": "List of data submitted by the applicant and relied on ", - "section": "[80, 7, 15]: Table_cell: Azoxystrobin/Fenpropidin SE (A23317A) -", - "color": null, - "positions": [ - { - "rectangle": [ - 304.9386, - 282.71, - 187.32214, - 10.526819 - ], - "pageNumber": 53 - } - ], - "textBefore": "VV-884284 Test Facility ", - "textAfter": " GLP Unpublished", - "startOffset": 107212, - "endOffset": 107253, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6828315270ef11b7f30e6b05dc6a41c3", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bebon R.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 310, - 2 - ], - "closestHeadline": "Conclusion ", - "section": "[310, 2]: Paragraph: (Bebon R. and Wydra", - "color": null, - "positions": [ - { - "rectangle": [ - 401.35, - 88.48, - 41.664948, - 11.017679 - ], - "pageNumber": 119 - } - ], - "textBefore": "(", - "textAfter": " and Wydra V.,", - "startOffset": 249581, - "endOffset": 249589, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-08T11:23:04.067051365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - } - ], - "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": 21, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 2 -} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/bigentityfileid.ENTITY_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/bigentityfileid.ENTITY_LOG.json deleted file mode 100644 index 1c291568..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/bigentityfileid.ENTITY_LOG.json +++ /dev/null @@ -1,120327 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 8, - "entityLogEntry": [ - { - "id": "715fac9474f3383918d19f60884f280f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Altenbach", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 500.84808, - 722.1, - 49.19983, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Alscher, A. Alston ", - "textAfter": " Altenbach ME Altenberger", - "startOffset": 4658, - "endOffset": 4667, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87eb85a37616f9d03985606ef2712601", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abbott", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 170.764, - 625.5, - 33.31201, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abbay Abbd-Alrahman Abbitt ", - "textAfter": " Abbott L. Abbotts", - "startOffset": 686, - "endOffset": 692, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95293822Z", - "requestedDate": "2024-03-13T08:45:49.005539Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9db60b07b7d013a188a4e5af7046eb19", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aldrige", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 253.74402, - 197.70004, - 36.600037, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aldinger Aldrich Aldridge ", - "textAfter": " Aldrige D. Aldwinckle", - "startOffset": 3538, - "endOffset": 3545, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953008683Z", - "requestedDate": "2024-03-13T08:45:50.085292Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "34cc497eb5e3e94b7b29447fbda82320", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aardema", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 103.084, - 639.3, - 43.908005, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aalderink Aamlid Aardema ", - "textAfter": " M. Aaron Aarup", - "startOffset": 581, - "endOffset": 588, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0245dbce0111d5ee2df270a8e78f3855", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alerman", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 112.9, - 170.1, - 41.892006, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alemanni Alen Alenberger ", - "textAfter": " Alesandrini Alessi Aletrari", - "startOffset": 3703, - "endOffset": 3710, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953103862Z", - "requestedDate": "2024-03-13T08:45:48.462405Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "737aeb490a777186bcbfbd2999a83b30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bade T", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 156.364, - 432.3, - 34.71602, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Bacsi Badawy Bade ", - "textAfter": " Bade T.R. Badelt", - "startOffset": 11025, - "endOffset": 11031, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953181237Z", - "requestedDate": "2024-03-13T08:48:18.188Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bade T" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953187249Z", - "requestedDate": "2024-03-13T08:48:18.799597Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dcf307efe545ad90f3fec3ff43919dc5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "A. Kwiatkowski A. Roth", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 263.03204, - 666.9, - 118.93201, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "A. H. Karrenbrock ", - "textAfter": " A. Shirmohammadi A.", - "startOffset": 425, - "endOffset": 447, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953236872Z", - "requestedDate": "2024-03-13T08:45:49.390631Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e94c3516b420a46b937db82d67b0ecb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Baluch", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 477.02826, - 239.1, - 33.900055, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Balu Balu, K. ", - "textAfter": " Bamber Bames Bammer", - "startOffset": 12410, - "endOffset": 12416, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.95328361Z", - "requestedDate": "2024-03-13T08:48:18.535Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Baluch" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953284351Z", - "requestedDate": "2024-03-13T08:48:18.594944Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62ebb6143f9df4d82849bd30d667cef7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Awoyemi", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 267.65207, - 584.1, - 46.212036, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Avril Awazu Awong ", - "textAfter": " Axelrod Ayadi Aydin-Sinan", - "startOffset": 10039, - "endOffset": 10046, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953322433Z", - "requestedDate": "2024-03-13T08:48:18.194393Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953323245Z", - "requestedDate": "2024-03-13T08:48:18.473Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Awoyemi" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "55d686c53c7748e6f24e0d38a3b1afee", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Makiko", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 285.71204, - 556.5, - 37.29602, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Anai M. Anai ", - "textAfter": " Anaka Anand Ananth", - "startOffset": 5670, - "endOffset": 5676, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 3, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:11.339124572Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e4ab26a0961a71a582f763ca62cfb0fb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Akhavan M", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 412.01205, - 308.1, - 56.96405, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akerman Akesson Akhavan ", - "textAfter": " Akhavan M. Akhavein", - "startOffset": 2822, - "endOffset": 2831, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953399919Z", - "requestedDate": "2024-03-13T08:45:50.143058Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.953406241Z", - "requestedDate": "2024-03-13T08:59:29.965623Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9cdab8f6406921cd4c757755d1fdf73b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Anastacio Anastasiadou Anastasiadou P.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 542.7, - 193.15202, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Ananth Anas Anasaloni ", - "textAfter": " Anastasiou Anbari Ancay", - "startOffset": 5711, - "endOffset": 5749, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1808156dd06beb1e924d71c4e3451e32", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adair", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 482.68018, - 515.1, - 27.288025, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Zeist, NL Adair ", - "textAfter": " Jason Adam Adam", - "startOffset": 1475, - "endOffset": 1480, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d6d9c4461a0a0228f52fd32707eac30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Banham PB.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 314.59604, - 197.70004, - 60.660034, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "PB Banham PB, ", - "textAfter": " Banhan Banica Banicova", - "startOffset": 12643, - "endOffset": 12653, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953519554Z", - "requestedDate": "2024-03-13T08:48:18.187Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Banham PB." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953520125Z", - "requestedDate": "2024-03-13T08:48:18.196436Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0cdb91bf350b46ab43c323fe950be3af", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alekseyev", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 371.9921, - 183.90005, - 50.496033, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "AlejandroArias Alekperov Aleksashina ", - "textAfter": " Aleksunes Alemanni Alen", - "startOffset": 3658, - "endOffset": 3667, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953557135Z", - "requestedDate": "2024-03-13T08:45:49.063833Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "642f0942aab80d6afd4b0d8e1a46bd21", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abellan Martinez", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 72.796005, - 584.1, - 84.192, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abellan Abellan M. ", - "textAfter": " Aberer Abernathy Abernethy", - "startOffset": 943, - "endOffset": 959, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953592241Z", - "requestedDate": "2024-03-13T08:45:48.60437Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e843c5de7636406d34198c8184730beb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allsup", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 59.700043, - 31.979992, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alllen Allochuku Allran ", - "textAfter": " Almaraz Almeida Almeida", - "startOffset": 4486, - "endOffset": 4492, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953626705Z", - "requestedDate": "2024-03-13T08:45:48.905789Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21ed6c2f0e618aacc46d81b3c7319fad", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adams", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 297.73602, - 487.5, - 33.960022, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "K. Adams RA ", - "textAfter": " Richard Adams S.", - "startOffset": 1613, - "endOffset": 1618, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dafe2c394f2230fe891b872a56e69718", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Arnoux Arnus Arora Arpad Arpasy M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 384.484, - 170.1, - 167.93994, - 12.642 - ], - "pageNumber": 2 - }, - { - "rectangle": [ - 56.8, - 156.30002, - 13.5960045, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Arnold Arnold D.W. ", - "textAfter": " Arpino Arrhenius Arrhenius", - "startOffset": 8285, - "endOffset": 8319, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9225cc7c37f7b3a4fc2606103fb6e601", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Almeida A", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 290.02002, - 59.700043, - 52.344086, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "A Almeida A. ", - "textAfter": ".A. Almond Almond", - "startOffset": 4530, - "endOffset": 4539, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953732154Z", - "requestedDate": "2024-03-13T08:58:39.618107Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "31b190d20533e27230769116114e928b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alex Charlton,", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 322.3841, - 170.1, - 71.26807, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alessi Aletrari Alevra ", - "textAfter": " Alexander Alexander Gregory", - "startOffset": 3746, - "endOffset": 3760, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953766358Z", - "requestedDate": "2024-03-13T08:45:49.267467Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2788c6966d0e3edd5ca16bd1fa29fb9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alban", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 287.392, - 239.1, - 29.292023, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "S Alba S. ", - "textAfter": " Albanese Albanese E.J.", - "startOffset": 3255, - "endOffset": 3260, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953800543Z", - "requestedDate": "2024-03-13T08:45:48.74127Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e71e92c29f08c1112f4742eb92f606d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 468.48425, - 114.900055, - 26.592041, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allchin Alleman Allemann ", - "textAfter": " Allen B.C. Allen", - "startOffset": 4165, - "endOffset": 4170, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953834937Z", - "requestedDate": "2024-03-13T08:45:48.594494Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "04d31e73df649fb4cbb8a76bc257f67f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alba", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 177.73601, - 239.1, - 23.304, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alavez Alawi Alba ", - "textAfter": " A Alba S", - "startOffset": 3233, - "endOffset": 3237, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953869392Z", - "requestedDate": "2024-03-13T08:58:39.431293Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6eef8c459cc714eb1468d7f12760c647", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balsa", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 163.06, - 239.1, - 26.604004, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baloch Balog Balogh ", - "textAfter": " Balsaa Baltensperger Baltisberger", - "startOffset": 12346, - "endOffset": 12351, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953906592Z", - "requestedDate": "2024-03-13T08:48:18.12Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balsa" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953907223Z", - "requestedDate": "2024-03-13T08:48:19.233261Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0d74e644a7c36219f3de82a05c943d9e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aardema", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 639.3, - 43.908, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aagaard Aalderink Aamlid ", - "textAfter": " Aardema M. Aaron", - "startOffset": 573, - "endOffset": 580, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953942039Z", - "requestedDate": "2024-03-13T08:45:48.545746Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "843c418ed58a97614165c9c5a4d4c6c9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abildt", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 467.30817, - 584.1, - 30.61203, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "A. Abi-Akar Abildgard ", - "textAfter": " Abildt U. Abis", - "startOffset": 1019, - "endOffset": 1025, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953976814Z", - "requestedDate": "2024-03-13T08:45:49.783535Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ae58788da8854c1f42ff429def4aff98", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adema", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 162.184, - 459.9, - 34.608, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adelberger I Adelson ", - "textAfter": " Ademola Adham Adhihetty", - "startOffset": 1758, - "endOffset": 1763, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954011089Z", - "requestedDate": "2024-03-13T08:45:48.967729Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5a6654664d689949e3823e1681d6272", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Akesson", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 322.63608, - 308.1, - 41.375977, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akashi Akashiba Akerman ", - "textAfter": " Akhavan Akhavan M", - "startOffset": 2806, - "endOffset": 2813, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954045754Z", - "requestedDate": "2024-03-13T08:45:49.298559Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.954046415Z", - "requestedDate": "2024-03-13T08:59:29.8778Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ad3096cde99eac5a9c41ec85058efcfe", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen H.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 249.004, - 101.100006, - 41.28006, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "J. Allen D.J. ", - "textAfter": " Allen J.A. Allen", - "startOffset": 4223, - "endOffset": 4231, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954081842Z", - "requestedDate": "2024-03-13T08:45:48.820661Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "26710321b5cbdec8ad8431117bb34d1e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Baldridge", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 156.74799, - 294.3, - 47.208008, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baldrick Baldrick P. ", - "textAfter": " Baldwin Baldwin M.K.", - "startOffset": 11954, - "endOffset": 11963, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954118551Z", - "requestedDate": "2024-03-13T08:48:18.084Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Baldridge" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954119092Z", - "requestedDate": "2024-03-13T08:48:19.244317Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "711db44a5295a6a8ae96a58adfb8a23a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adams", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 511.58823, - 501.3, - 33.95993, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adami Adamovics Adams ", - "textAfter": " Allen Adams D.", - "startOffset": 1565, - "endOffset": 1570, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6f742899f1c6237f8504fe08dac27866", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Audrey V.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 198.376, - 653.1, - 48.888016, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Audouze Audouze K. ", - "textAfter": " Audus Audy Auer", - "startOffset": 9572, - "endOffset": 9581, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954190456Z", - "requestedDate": "2024-03-13T08:48:18.342Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Audrey V." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954191007Z", - "requestedDate": "2024-03-13T08:48:18.794003Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3ec790054bdf095c6f9adace3a2cfabc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Banwell", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 342.7961, - 183.90005, - 39.91205, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "A.J Bannwarth Banton ", - "textAfter": " Banyard Banyuls Banzar", - "startOffset": 12736, - "endOffset": 12743, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954225642Z", - "requestedDate": "2024-03-13T08:48:18.061524Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954226384Z", - "requestedDate": "2024-03-13T08:48:18.229Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Banwell" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7cb0ead3fcfb00dfc24178941b028fdc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adams", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 136.77998, - 487.5, - 33.960007, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allen Adams D. ", - "textAfter": " DS Adams K.", - "startOffset": 1586, - "endOffset": 1591, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2755a69d36ea2b74af9b082a0036a41", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atreya NC", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 282.68802, - 694.5, - 52.272034, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "S. Atrashkova Atreya ", - "textAfter": " Atreys Atreyya Atsushi", - "startOffset": 9303, - "endOffset": 9312, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954296576Z", - "requestedDate": "2024-03-13T08:48:18.639Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atreya NC" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954297127Z", - "requestedDate": "2024-03-13T08:48:18.830217Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ae5c6edab43155a7f68b27546dda06aa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abd-Alrahman", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 295.73203, - 625.5, - 72.57605, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abbott L. Abbotts ", - "textAfter": " Abd-Ella AA Abdallah", - "startOffset": 711, - "endOffset": 723, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954332053Z", - "requestedDate": "2024-03-13T08:45:49.868331Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a55989c7e9ed50c5532e83ec54d70d2b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen D.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 99.78399, - 101.100006, - 41.27999, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "B.C. Allen C. ", - "textAfter": " Allen D. J.", - "startOffset": 4191, - "endOffset": 4199, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954366177Z", - "requestedDate": "2024-03-13T08:45:49.44948Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c59c27ca5762407b5ef65e527f0f1a5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aarup S.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 230.64401, - 639.3, - 42.671997, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "M. Aaron Aarup ", - "textAfter": " Aarup V. Abadie", - "startOffset": 604, - "endOffset": 612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954400942Z", - "requestedDate": "2024-03-13T08:45:49.907731Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9246b04b4e87dcc82a91443e2712319c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aversa", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 235.576, - 597.9, - 33.107986, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Avault Aveline Aver ", - "textAfter": " Avery Aviado Avila", - "startOffset": 9934, - "endOffset": 9940, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954436649Z", - "requestedDate": "2024-03-13T08:48:18.293Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Aversa" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.95443716Z", - "requestedDate": "2024-03-13T08:48:18.558489Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1031714e84ee17f996985991545a8b7f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aldinger", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 124.78, - 197.70004, - 42.588013, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "S. Aldershof SA ", - "textAfter": " Aldrich Aldridge Aldrige", - "startOffset": 3512, - "endOffset": 3520, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954471665Z", - "requestedDate": "2024-03-13T08:45:49.839363Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8227c499c2cb6553a8268b176ec0fbe7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 197.72798, - 101.100006, - 26.59201, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allen D. J. ", - "textAfter": " D.J. Allen H.", - "startOffset": 4212, - "endOffset": 4217, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95450595Z", - "requestedDate": "2024-03-13T08:58:39.402992Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "64c1106908b56e9d8fcde5e28a7b682f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aga", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 195.052, - 404.7, - 20.003998, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "AG Seville Aga ", - "textAfter": " D. S. Agarwal", - "startOffset": 2139, - "endOffset": 2142, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954540304Z", - "requestedDate": "2024-03-13T08:58:39.577173Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "529979f07c589a58324433de581f1970", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alger", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 399.42407, - 142.50003, - 27.288025, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "D.R. Algate Derek ", - "textAfter": " Ali Alim Aliouane", - "startOffset": 3951, - "endOffset": 3956, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954574799Z", - "requestedDate": "2024-03-13T08:45:48.538748Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1bd5c4c513c146c62850cf8fe2502453", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aldershof S", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 471.74808, - 211.50003, - 57.64798, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aldershof Aldershof S ", - "textAfter": ". Aldershof SA", - "startOffset": 3486, - "endOffset": 3497, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954608853Z", - "requestedDate": "2024-03-13T08:58:39.293665Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "937df935fab632abb4038339f9d2ba2c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Chamier", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 480.9162, - 722.1, - 41.27997, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Tummon 0. D. ", - "textAfter": " 0. W. Matheson", - "startOffset": 84, - "endOffset": 91, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954642727Z", - "requestedDate": "2024-03-13T08:58:39.548295Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75b27037ff69dd81eb48894fe4f07a78", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adamovics", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 418.3001, - 501.3, - 54.564087, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adamczewska-Andrzejewska Adamczyk Adami ", - "textAfter": " Adams Adams Allen", - "startOffset": 1549, - "endOffset": 1558, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954676931Z", - "requestedDate": "2024-03-13T08:45:48.698964Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b973ec922774f6df9243e85cdc09a6f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atger", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 708.3, - 27.287998, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Atallah Y.H. Ataulla ", - "textAfter": " Athanaselis Atherton Athusi", - "startOffset": 9157, - "endOffset": 9162, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954712518Z", - "requestedDate": "2024-03-13T08:48:18.033968Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.9547134Z", - "requestedDate": "2024-03-13T08:48:18.136Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atger" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32c33ef8d4d1e6fddfafc2bf4e50f06c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Magdalena", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 155.38, - 473.7, - 53.304, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adamska Magdalen Adamska ", - "textAfter": " Adanyi Adaskaveg Adato", - "startOffset": 1669, - "endOffset": 1678, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4f23721ab5580a7dfd5b6c49716e7e32", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bach", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 383.1762, - 501.3, - 24.600037, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baccarelli Bacchus Bacci ", - "textAfter": " Bach B. Bach", - "startOffset": 10609, - "endOffset": 10613, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954781448Z", - "requestedDate": "2024-03-13T08:48:18.153093Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.95478222Z", - "requestedDate": "2024-03-13T08:48:18.332Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bach" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "10bbc22e5ccd549d0ff535563dbf7d82", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aloni", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 242.42801, - 722.1, - 27.312012, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Almond Richard Alongi ", - "textAfter": " Aloph Alpendurada Alsadek", - "startOffset": 4607, - "endOffset": 4612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50c88533fe01a91f38e6b306d368a8c2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Attique", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 333.29214, - 680.7, - 35.904053, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Attia Attila Attilio ", - "textAfter": " Atwa Atwal Atwood", - "startOffset": 9415, - "endOffset": 9422, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954854265Z", - "requestedDate": "2024-03-13T08:48:18.385Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Attique" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954854946Z", - "requestedDate": "2024-03-13T08:48:18.623858Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dba9c6b2bf616e27a862e97a35ac29c4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Abbott", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 206.45201, - 625.5, - 33.228012, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abbd-Alrahman Abbitt Abbott ", - "textAfter": " L. Abbotts Abd-Alrahman", - "startOffset": 693, - "endOffset": 699, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fa52ae8005f74a067472cd37e1e1ecf9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 249.004, - 101.100006, - 26.592041, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "J. Allen D.J. ", - "textAfter": " H. Allen J.A.", - "startOffset": 4223, - "endOffset": 4228, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954923896Z", - "requestedDate": "2024-03-13T08:58:39.422983Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d93e285f46c31d3e952755ed3c30508", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Baldez", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 410.17627, - 308.1, - 33.216064, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baldamus Baldarelli Balderacchi ", - "textAfter": " Baldi Baldi B.", - "startOffset": 11911, - "endOffset": 11917, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954959413Z", - "requestedDate": "2024-03-13T08:48:18.208Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Baldez" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954959964Z", - "requestedDate": "2024-03-13T08:48:19.127545Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "11c3b3212fe0591e5d24066f37c8084e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adolphi H.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 187.74399, - 432.3, - 53.976013, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adolph S. Adolphi ", - "textAfter": " Adora Clark Adriaanse", - "startOffset": 1946, - "endOffset": 1956, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95499509Z", - "requestedDate": "2024-03-13T08:45:48.928955Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2c74180b4cac91a652842a78de9506ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balluf", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 363.73618, - 252.90005, - 29.89206, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Ballet Ballet-Besnard Ballsutwe ", - "textAfter": " Balluff Balluff M.", - "startOffset": 12293, - "endOffset": 12299, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955030437Z", - "requestedDate": "2024-03-13T08:48:18.574Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balluf" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955030938Z", - "requestedDate": "2024-03-13T08:48:18.685198Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e1a544ce45b4ae36eb94b3edd5dda8ca", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Al. Amin", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 442.01218, - 266.70004, - 44.676025, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Al-Sarar Al-Shaibani Al-Taher ", - "textAfter": " Aladjem Alagar Alamo", - "startOffset": 3097, - "endOffset": 3105, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955066274Z", - "requestedDate": "2024-03-13T08:45:49.558719Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "190f05c164689f7c37c7fb384f857468", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allin", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 209.74, - 73.50003, - 24.588013, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allender Alley Allias ", - "textAfter": " Allingham Allinson Allison", - "startOffset": 4418, - "endOffset": 4423, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955100498Z", - "requestedDate": "2024-03-13T08:45:49.15997Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d6886f051bd757a8e40c8e071aac1cfb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Altenburger E.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 299.74005, - 708.3, - 70.992096, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Altenberger Altenburg Altenburger ", - "textAfter": " Altenkirch Alterbuger Alterburger", - "startOffset": 4715, - "endOffset": 4729, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7c948e439a62f8f2fa46e6d65eccdab0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Abraham", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 445.03613, - 570.3, - 44.616028, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abraham Abraham N. ", - "textAfter": " N.R. Abraham, N.R.", - "startOffset": 1107, - "endOffset": 1114, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "56facb7952f1c273d39204156840e84c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "$ D Jones", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 722.1, - 47.26801, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "", - "textAfter": " $.Friedrich & Farrelly", - "startOffset": 0, - "endOffset": 9, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955207149Z", - "requestedDate": "2024-03-13T08:45:49.116166Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d709ac992b5802bc56b695e4d479fac8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "B. Schmid", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 437.10416, - 528.9, - 50.580048, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Pavlowitz B. Kerr, ", - "textAfter": " B.A. LACKEY Ba", - "startOffset": 10441, - "endOffset": 10450, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955242586Z", - "requestedDate": "2024-03-13T08:48:18.281118Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955243367Z", - "requestedDate": "2024-03-13T08:48:18.676Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "B. Schmid" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac29eda843f8e638355ee9443eb02827", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ballantine L.G.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 305.88412, - 280.5, - 74.2561, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Ballantine Ballantine L. ", - "textAfter": " Ballantine L.G.. Ballantyne", - "startOffset": 12075, - "endOffset": 12090, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955278593Z", - "requestedDate": "2024-03-13T08:48:18.327Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Ballantine L.G." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955279094Z", - "requestedDate": "2024-03-13T08:48:18.737835Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "481ddcb3cfaf559d3c6889dc0c73f27f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 482.18814, - 87.30002, - 26.592041, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "L. Allen, Lisa ", - "textAfter": ", M Allen,", - "startOffset": 4377, - "endOffset": 4382, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955314862Z", - "requestedDate": "2024-03-13T08:58:39.47052Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bfe79514a1a2b0d9676ce945ca1048f8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bachmann K.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 496.44443, - 473.7, - 51.20395, - 12.642 - ], - "pageNumber": 3 - }, - { - "rectangle": [ - 56.8, - 459.9, - 11.604, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Bachmann Bachmann B. ", - "textAfter": " Bachmann M Bachmann", - "startOffset": 10818, - "endOffset": 10829, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955349928Z", - "requestedDate": "2024-03-13T08:48:18.708Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bachmann K." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955350459Z", - "requestedDate": "2024-03-13T08:48:18.802243Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e01c212594ffb0f196febcd9a2c845f1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Anderson", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 307.24, - 515.1, - 46.679993, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "L. Anderson M. ", - "textAfter": " Melanie Anderson R", - "startOffset": 5941, - "endOffset": 5949, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fe2ed3fbdcf924cc9fd24f5be54b221", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alden", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 99.784, - 211.50003, - 29.291992, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "R. Alcock Aldcroft ", - "textAfter": " Aldenberg Alder Alder", - "startOffset": 3413, - "endOffset": 3418, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955421793Z", - "requestedDate": "2024-03-13T08:45:48.497638Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "892bd30cac5c286e0e226d94e41ab2ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balogh", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 125.37999, - 239.1, - 34.59601, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Balmer Baloch Balog ", - "textAfter": " Balsa Balsaa Baltensperger", - "startOffset": 12339, - "endOffset": 12345, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.9554573Z", - "requestedDate": "2024-03-13T08:48:18.243Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balogh" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955457801Z", - "requestedDate": "2024-03-13T08:48:18.592147Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "204e74d8fe7140031b1772c4b81d260a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Roper", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 239.32002, - 722.1, - 29.292007, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "& Farrelly &M ", - "textAfter": " )avid Patton .", - "startOffset": 36, - "endOffset": 41, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 6, - "type": "ADDED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b2430421789aee957d772aa26a3ce51", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alder", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 213.856, - 211.50003, - 27.28801, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alden Aldenberg Alder ", - "textAfter": " L. Alderman Aldersdorf", - "startOffset": 3435, - "endOffset": 3440, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955531189Z", - "requestedDate": "2024-03-13T08:58:39.427068Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e38a2b746b98c73addae37b41645de6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aulerich", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 625.5, - 41.891994, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Augusiak J.A Aukema ", - "textAfter": " Auletta Auletta A.", - "startOffset": 9719, - "endOffset": 9727, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955567086Z", - "requestedDate": "2024-03-13T08:48:18.121789Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955567878Z", - "requestedDate": "2024-03-13T08:48:18.424Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Aulerich" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a7599fec691d20fe9516d04637b8dfaa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aikens P.J.", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 299.60803, - 335.7, - 52.97998, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aikens Aikens P. ", - "textAfter": " Airoldi Airs Airs", - "startOffset": 2617, - "endOffset": 2628, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955603665Z", - "requestedDate": "2024-03-13T08:45:49.276334Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.955604236Z", - "requestedDate": "2024-03-13T08:59:29.887062Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b309589863695b5fa8443adb9aeb231a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Altenkirch", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 373.12015, - 708.3, - 51.288086, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Altenburger Altenburger E. ", - "textAfter": " Alterbuger Alterburger Althaus", - "startOffset": 4730, - "endOffset": 4740, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e188003edabb919da47e36fa779d0168", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bandeira", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 392.18817, - 225.30002, - 43.212067, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Banasiak U. Bandeen ", - "textAfter": " Bandisode Bandong Bandow", - "startOffset": 12484, - "endOffset": 12492, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955674158Z", - "requestedDate": "2024-03-13T08:48:18.144Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bandeira" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955674759Z", - "requestedDate": "2024-03-13T08:48:18.888585Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6be7538b0c92a5be801e78d90321eda0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abdulla", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 597.9, - 38.603992, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abdou Abdu-Allah, G. ", - "textAfter": " Abdulrachman Abdurrachman Abe", - "startOffset": 846, - "endOffset": 853, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955710226Z", - "requestedDate": "2024-03-13T08:45:49.776213Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8f7700281e46dbfcfe3d84e796bf1450", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Asuncion", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 309.71207, - 722.1, - 45.900024, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Aston Astoux Astuti ", - "textAfter": " Asya Lyon Atallah", - "startOffset": 9109, - "endOffset": 9117, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955745292Z", - "requestedDate": "2024-03-13T08:48:18.191Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Asuncion" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955745813Z", - "requestedDate": "2024-03-13T08:48:19.237909Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87198eb2e01366f976e65e2f7872fa4b", - "type": "PII", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen L. Allen", - "reason": "Personal Information found, removed by manual override", - "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 343.96005, - 101.100006, - 68.95209, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "H. Allen J.A. ", - "textAfter": " M Allen M.", - "startOffset": 4243, - "endOffset": 4257, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95578148Z", - "requestedDate": "2024-03-13T08:58:39.566648Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "08714f9b70197e7bf845d66482bbf99c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Campbell", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 344.23605, - 321.9, - 46.608063, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "R. Aizawa AJ ", - "textAfter": " Ajao Ajayi Ajimi", - "startOffset": 2723, - "endOffset": 2731, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955816375Z", - "requestedDate": "2024-03-13T08:58:39.450885Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.955817027Z", - "requestedDate": "2024-03-13T08:59:30.001836Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "365cb4dc259de6b724241def1b7f5a50", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abellan", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 475.98407, - 597.9, - 37.896057, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abel P. Abell ", - "textAfter": " Abellan M. Abellan", - "startOffset": 924, - "endOffset": 931, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955851221Z", - "requestedDate": "2024-03-13T08:45:50.164702Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "764ef8428618fa427655beb66d25e21b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Anderson", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 80.188, - 487.5, - 46.680008, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "A. Anderson, T.D. ", - "textAfter": "-Long Anderson. R.", - "startOffset": 6076, - "endOffset": 6084, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60e81a3af1ea0f1888d2a7afa315c5af", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Akalach", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 149.39201, - 308.1, - 39.98401, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Ajimoko Akahavan Akahori ", - "textAfter": " Akashi Akashiba Akerman", - "startOffset": 2774, - "endOffset": 2781, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955920642Z", - "requestedDate": "2024-03-13T08:45:48.512Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.955921393Z", - "requestedDate": "2024-03-13T08:59:29.927172Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aaaac196160903fc9ea24e55998daaf9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balaz", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 447.1361, - 321.9, - 27.300049, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "J. A. Balasubramanian ", - "textAfter": " Balazs Balbinder Balchak", - "startOffset": 11830, - "endOffset": 11835, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.95595692Z", - "requestedDate": "2024-03-13T08:48:18.091077Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955957671Z", - "requestedDate": "2024-03-13T08:48:18.174Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balaz" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a39cf861450d3703189062673a3421ba", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Almeida A.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 232.348, - 59.700043, - 55.368027, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Almeida Almeida A ", - "textAfter": " Almeida A.A. Almond", - "startOffset": 4519, - "endOffset": 4529, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955991976Z", - "requestedDate": "2024-03-13T08:45:49.033815Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da5f8efdba9b5b598ae6dceaabe6e318", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atkinson S.", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 131.06801, - 694.5, - 56.664, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "C. Atkinson K. ", - "textAfter": " Atrashkova Atreya Atreya", - "startOffset": 9273, - "endOffset": 9284, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.956027242Z", - "requestedDate": "2024-03-13T08:48:18.045557Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.956027993Z", - "requestedDate": "2024-03-13T08:48:18.082Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atkinson S." - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f97664e35d2b5592d00dada90fd53fd1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adams", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 475.28818, - 501.3, - 33.876038, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adamczyk Adami Adamovics ", - "textAfter": " Adams Allen Adams", - "startOffset": 1559, - "endOffset": 1564, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956062779Z", - "requestedDate": "2024-03-13T08:45:49.959736Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d36c9be579098a6e234ac4f8d1cbb3c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abernethy A.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 301.03604, - 584.1, - 64.59604, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aberer Abernathy Abernethy ", - "textAfter": " Abi-Akar Abildgard Abildt", - "startOffset": 987, - "endOffset": 999, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956096953Z", - "requestedDate": "2024-03-13T08:45:48.883216Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cce741c3a7657f46ec31a88448cf11dd", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ahouangninou", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 257.75198, - 349.5, - 71.29202, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Ahmed A. Ahn ", - "textAfter": " Ahr H Ahrens", - "startOffset": 2517, - "endOffset": 2529, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956131278Z", - "requestedDate": "2024-03-13T08:45:48.532984Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.956131939Z", - "requestedDate": "2024-03-13T08:59:29.933934Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "55a36bf818e46af966299ca4635bbd06", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Algate", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 215.92003, - 142.50003, - 31.992004, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alford Alfred Algate ", - "textAfter": " D.R Algate D.R.", - "startOffset": 3915, - "endOffset": 3921, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956166133Z", - "requestedDate": "2024-03-13T08:58:39.583941Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22d3381523bacd561d7a9a9087b0b609", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abambres", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 398.2001, - 639.3, - 49.26004, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "V. Abadie Aballay ", - "textAfter": " Abanto Abass Abbay", - "startOffset": 637, - "endOffset": 645, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956201811Z", - "requestedDate": "2024-03-13T08:45:49.081005Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f22c6c8135b8d9e7c2a6be6c3c7b846", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "5SR Burke", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 161.68001, - 708.3, - 52.979996, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Matheson 0M Clarke ", - "textAfter": " 8 Wilson :tf:inia", - "startOffset": 117, - "endOffset": 126, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956239672Z", - "requestedDate": "2024-03-13T08:58:39.397098Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84801a4d899accc003ff6253f3403c83", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Akhavan M.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 471.3041, - 308.1, - 59.988007, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akhavan Akhavan M ", - "textAfter": " Akhavein Akhaven Akhtar", - "startOffset": 2832, - "endOffset": 2842, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956275239Z", - "requestedDate": "2024-03-13T08:45:48.522654Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2b0f6cc13c6c0970bcba981e3f179ee", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Anderson", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 458.488, - 515.1, - 46.679993, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Melanie Anderson R ", - "textAfter": " R. Anderson Rachel", - "startOffset": 5969, - "endOffset": 5977, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "10daaf609d6457147d05b6eecc0802d2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atallah", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 412.6721, - 722.1, - 35.196075, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Asuncion Asya Lyon ", - "textAfter": " Atallah Y.H. Ataulla", - "startOffset": 9128, - "endOffset": 9135, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.956346092Z", - "requestedDate": "2024-03-13T08:48:18.173Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atallah" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.956346613Z", - "requestedDate": "2024-03-13T08:48:19.149614Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b63d78af66d7287c39ec9ecdeed4370e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aufmuth", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 639.3, - 43.283993, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Auerbach S Aufederheide ", - "textAfter": " Augello Augello A.", - "startOffset": 9631, - "endOffset": 9638, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.956381889Z", - "requestedDate": "2024-03-13T08:48:18.048697Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.956382731Z", - "requestedDate": "2024-03-13T08:48:18.545Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Aufmuth" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c79fbb403e8c1d31341aa30720d30626", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Akkan", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 442.94806, - 294.3, - 31.992004, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akins Akintonwa Akiyama ", - "textAfter": " Akkan Z Akkan", - "startOffset": 2915, - "endOffset": 2920, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956418548Z", - "requestedDate": "2024-03-13T08:45:50.010924Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2c7d0bea4d75187e7aba26381b27280", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Airoldi", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 354.892, - 335.7, - 34.608032, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "P. Aikens P.J. ", - "textAfter": " Airs Airs D", - "startOffset": 2629, - "endOffset": 2636, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956453654Z", - "requestedDate": "2024-03-13T08:45:49.352307Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.956454316Z", - "requestedDate": "2024-03-13T08:59:29.992948Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fdcd3f3b40058bb6f5cfa7ae3cde4ffc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": ":tf:inia F. Gruber", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 263.63202, - 708.3, - 80.66412, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Burke 8 Wilson ", - "textAfter": " - - - diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog-with-validation.xml b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog-with-validation.xml deleted file mode 100644 index c988f71a..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog-with-validation.xml +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - { - validator: { - $jsonSchema: { - bsonType: "object", - required: ["entryId", "entityLogId", "type", "entryType", "state", "value", "reason", "matchedRule", "legalBasis", "containingNodeId", "closestHeadline", "section", - "positions", "textBefore", "textAfter", "startOffset", "endOffset", "imageHasTransparency", "dictionaryEntry", "dossierDictionaryEntry", "excluded", "changes", - "manualChanges", "engines", "reference", "importedRedactionIntersections", "numberOfComments"], - properties: { - entryId: { - bsonType: "string", - description: "The Entry ID" - }, - entityLogId: { - bsonType: "string", - description: "The Entity Log ID" - }, - type: { - bsonType: "string", - description: "The Type" - }, - entryType: { - bsonType: "string", - description: "The Entry Type" - }, - state: { - bsonType: "string", - description: "The Entry State" - }, - value: { - bsonType: "string", - description: "The Value" - }, - reason: { - bsonType: "string", - description: "The Reason" - }, - matchedRule: { - bsonType: "string", - description: "The Matched Rule" - }, - legalBasis: { - bsonType: "string", - description: "The Legal Basis" - }, - containingNodeId: { - bsonType: "array", - items: { - bsonType: "int", - description: "The Containing Node ID" - } - }, - closestHeadline: { - bsonType: "string", - description: "The Closest Headline" - }, - section: { - bsonType: "string", - description: "The Section" - }, - positions: { - bsonType: "array", - description: "The Positions", - items: { - bsonType: "object" - } - }, - textBefore: { - bsonType: "string", - description: "Text before the entry" - }, - textAfter: { - bsonType: "string", - description: "Text after the entry" - }, - startOffset: { - bsonType: "int", - description: "Start offset of the entry" - }, - endOffset: { - bsonType: "int", - description: "End offset of the entry" - }, - imageHasTransparency: { - bsonType: "bool", - description: "Whether the image has transparency" - }, - dictionaryEntry: { - bsonType: "bool", - description: "Whether it's a dictionary entry" - }, - dossierDictionaryEntry: { - bsonType: "bool", - description: "Whether it's a dossier dictionary entry" - }, - excluded: { - bsonType: "bool", - description: "Whether it's excluded" - }, - changes: { - bsonType: "array", - description: "The Changes", - items: { - bsonType: "object" - } - }, - manualChanges: { - bsonType: "array", - description: "The Manual Changes", - items: { - bsonType: "object" - } - }, - engines: { - bsonType: "array", - description: "The Engines", - items: { - bsonType: "string" - } - }, - reference: { - bsonType: "array", - description: "The Reference", - items: { - bsonType: "string" - } - }, - importedRedactionIntersections: { - bsonType: "array", - description: "The Imported Redaction Intersections", - items: { - bsonType: "string" - } - }, - numberOfComments: { - bsonType: "int", - description: "The Number of Comments" - } - } - } - }, - validationAction: "warn", - validationLevel: "strict" - } - - - - - - { - validator: { - $jsonSchema: { - bsonType: "object", - required: ["dossierId", "fileId", "analysisVersion", "analysisNumber", "entityLogEntryDocument", "legalBasis"], - properties: { - dossierId: { - bsonType: "string", - description: "The Dossier ID" - }, - fileId: { - bsonType: "string", - description: "The File ID" - }, - analysisVersion: { - bsonType: "long", - description: "The Analysis Version" - }, - analysisNumber: { - bsonType: "int", - description: "The Analysis Number" - }, - entityLogEntryDocument: { - bsonType: "array", - description: "The Entity Log Entry Documents", - items: { - bsonType: "objectId" - } - }, - legalBasis: { - bsonType: "array", - description: "The Legal Basis", - items: { - bsonType: "object" - } - }, - dictionaryVersion: { - bsonType: "long", - description: "The Dictionary Version" - }, - dossierDictionaryVersion: { - bsonType: "long", - description: "The Dossier Dictionary Version" - }, - rulesVersion: { - bsonType: "long", - description: "The Rules Version" - }, - legalBasisVersion: { - bsonType: "long", - description: "The Legal Basis Version" - } - } - } - }, - validationAction: "warn", - validationLevel: "strict" - } - - - - - - - \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog.xml b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog.xml deleted file mode 100644 index c8e1cbce..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/1-initial-database.changelog.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/2-create-indices-for-entries.xml b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/2-create-indices-for-entries.xml deleted file mode 100644 index 5fe9ed7c..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/2-create-indices-for-entries.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - { - "_id": 1, - "positions.pageNumber": 1 - } - - - {name: "positions_pageNumber_index"} - - - - - - { - "_id": 1, - "changes.analysisNumber": -1 - } - - - {name: "changes_analysisNumber_index"} - - - - - - - \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/example-remove-entry-number-of-comments.changelog.xml b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/example-remove-entry-number-of-comments.changelog.xml deleted file mode 100644 index 9665c17b..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/liquibase/changelog/tenant/example-remove-entry-number-of-comments.changelog.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - { - update: "entity-log-entries", - updates: [ - { - q: {}, - u: { $unset: { "numberOfComments": "" } }, - multi: true - } - ] - } - - - - - - \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/upd_bigentityfileid.ENTITY_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/upd_bigentityfileid.ENTITY_LOG.json deleted file mode 100644 index 2c2572b9..00000000 --- a/redaction-service-v1/redaction-service-server-v1/src/test/resources/mongo/upd_bigentityfileid.ENTITY_LOG.json +++ /dev/null @@ -1,120408 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 8, - "entityLogEntry": [ - { - "id": "715fac9474f3383918d19f60884f280f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Altenbach", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 500.84808, - 722.1, - 49.19983, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Alscher, A. Alston ", - "textAfter": " Altenbach ME Altenberger", - "startOffset": 4658, - "endOffset": 4667, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87eb85a37616f9d03985606ef2712601", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abbott", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 170.764, - 625.5, - 33.31201, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abbay Abbd-Alrahman Abbitt ", - "textAfter": " Abbott L. Abbotts", - "startOffset": 686, - "endOffset": 692, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95293822Z", - "requestedDate": "2024-03-13T08:45:49.005539Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9db60b07b7d013a188a4e5af7046eb19", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aldrige", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 253.74402, - 197.70004, - 36.600037, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aldinger Aldrich Aldridge ", - "textAfter": " Aldrige D. Aldwinckle", - "startOffset": 3538, - "endOffset": 3545, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953008683Z", - "requestedDate": "2024-03-13T08:45:50.085292Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "34cc497eb5e3e94b7b29447fbda82320", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aardema", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 103.084, - 639.3, - 43.908005, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aalderink Aamlid Aardema ", - "textAfter": " M. Aaron Aarup", - "startOffset": 581, - "endOffset": 588, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0245dbce0111d5ee2df270a8e78f3855", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alerman", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 112.9, - 170.1, - 41.892006, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alemanni Alen Alenberger ", - "textAfter": " Alesandrini Alessi Aletrari", - "startOffset": 3703, - "endOffset": 3710, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953103862Z", - "requestedDate": "2024-03-13T08:45:48.462405Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "737aeb490a777186bcbfbd2999a83b30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bade T", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 156.364, - 432.3, - 34.71602, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Bacsi Badawy Bade ", - "textAfter": " Bade T.R. Badelt", - "startOffset": 11025, - "endOffset": 11031, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953181237Z", - "requestedDate": "2024-03-13T08:48:18.188Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bade T" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953187249Z", - "requestedDate": "2024-03-13T08:48:18.799597Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dcf307efe545ad90f3fec3ff43919dc5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "A. Kwiatkowski A. Roth", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 263.03204, - 666.9, - 118.93201, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "A. H. Karrenbrock ", - "textAfter": " A. Shirmohammadi A.", - "startOffset": 425, - "endOffset": 447, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953236872Z", - "requestedDate": "2024-03-13T08:45:49.390631Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3e94c3516b420a46b937db82d67b0ecb", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Baluch", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 477.02826, - 239.1, - 33.900055, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Balu Balu, K. ", - "textAfter": " Bamber Bames Bammer", - "startOffset": 12410, - "endOffset": 12416, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.95328361Z", - "requestedDate": "2024-03-13T08:48:18.535Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Baluch" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953284351Z", - "requestedDate": "2024-03-13T08:48:18.594944Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "62ebb6143f9df4d82849bd30d667cef7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Awoyemi", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 267.65207, - 584.1, - 46.212036, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Avril Awazu Awong ", - "textAfter": " Axelrod Ayadi Aydin-Sinan", - "startOffset": 10039, - "endOffset": 10046, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953322433Z", - "requestedDate": "2024-03-13T08:48:18.194393Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953323245Z", - "requestedDate": "2024-03-13T08:48:18.473Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Awoyemi" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "55d686c53c7748e6f24e0d38a3b1afee", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Makiko", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 285.71204, - 556.5, - 37.29602, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Anai M. Anai ", - "textAfter": " Anaka Anand Ananth", - "startOffset": 5670, - "endOffset": 5676, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 3, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:11.339124572Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e4ab26a0961a71a582f763ca62cfb0fb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Akhavan M", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 412.01205, - 308.1, - 56.96405, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akerman Akesson Akhavan ", - "textAfter": " Akhavan M. Akhavein", - "startOffset": 2822, - "endOffset": 2831, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953399919Z", - "requestedDate": "2024-03-13T08:45:50.143058Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.953406241Z", - "requestedDate": "2024-03-13T08:59:29.965623Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9cdab8f6406921cd4c757755d1fdf73b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Anastacio Anastasiadou Anastasiadou P.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 542.7, - 193.15202, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Ananth Anas Anasaloni ", - "textAfter": " Anastasiou Anbari Ancay", - "startOffset": 5711, - "endOffset": 5749, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1808156dd06beb1e924d71c4e3451e32", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adair", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 482.68018, - 515.1, - 27.288025, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Zeist, NL Adair ", - "textAfter": " Jason Adam Adam", - "startOffset": 1475, - "endOffset": 1480, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d6d9c4461a0a0228f52fd32707eac30", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Banham PB.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 314.59604, - 197.70004, - 60.660034, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "PB Banham PB, ", - "textAfter": " Banhan Banica Banicova", - "startOffset": 12643, - "endOffset": 12653, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953519554Z", - "requestedDate": "2024-03-13T08:48:18.187Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Banham PB." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953520125Z", - "requestedDate": "2024-03-13T08:48:18.196436Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0cdb91bf350b46ab43c323fe950be3af", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alekseyev", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 371.9921, - 183.90005, - 50.496033, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "AlejandroArias Alekperov Aleksashina ", - "textAfter": " Aleksunes Alemanni Alen", - "startOffset": 3658, - "endOffset": 3667, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953557135Z", - "requestedDate": "2024-03-13T08:45:49.063833Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "642f0942aab80d6afd4b0d8e1a46bd21", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abellan Martinez", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 72.796005, - 584.1, - 84.192, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abellan Abellan M. ", - "textAfter": " Aberer Abernathy Abernethy", - "startOffset": 943, - "endOffset": 959, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953592241Z", - "requestedDate": "2024-03-13T08:45:48.60437Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e843c5de7636406d34198c8184730beb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allsup", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 59.700043, - 31.979992, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alllen Allochuku Allran ", - "textAfter": " Almaraz Almeida Almeida", - "startOffset": 4486, - "endOffset": 4492, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953626705Z", - "requestedDate": "2024-03-13T08:45:48.905789Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "21ed6c2f0e618aacc46d81b3c7319fad", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adams", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 297.73602, - 487.5, - 33.960022, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "K. Adams RA ", - "textAfter": " Richard Adams S.", - "startOffset": 1613, - "endOffset": 1618, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dafe2c394f2230fe891b872a56e69718", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Arnoux Arnus Arora Arpad Arpasy M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 384.484, - 170.1, - 167.93994, - 12.642 - ], - "pageNumber": 2 - }, - { - "rectangle": [ - 56.8, - 156.30002, - 13.5960045, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Arnold Arnold D.W. ", - "textAfter": " Arpino Arrhenius Arrhenius", - "startOffset": 8285, - "endOffset": 8319, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9225cc7c37f7b3a4fc2606103fb6e601", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Almeida A", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 290.02002, - 59.700043, - 52.344086, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "A Almeida A. ", - "textAfter": ".A. Almond Almond", - "startOffset": 4530, - "endOffset": 4539, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953732154Z", - "requestedDate": "2024-03-13T08:58:39.618107Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "31b190d20533e27230769116114e928b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alex Charlton,", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 322.3841, - 170.1, - 71.26807, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alessi Aletrari Alevra ", - "textAfter": " Alexander Alexander Gregory", - "startOffset": 3746, - "endOffset": 3760, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953766358Z", - "requestedDate": "2024-03-13T08:45:49.267467Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f2788c6966d0e3edd5ca16bd1fa29fb9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alban", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 287.392, - 239.1, - 29.292023, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "S Alba S. ", - "textAfter": " Albanese Albanese E.J.", - "startOffset": 3255, - "endOffset": 3260, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953800543Z", - "requestedDate": "2024-03-13T08:45:48.74127Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8e71e92c29f08c1112f4742eb92f606d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 468.48425, - 114.900055, - 26.592041, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allchin Alleman Allemann ", - "textAfter": " Allen B.C. Allen", - "startOffset": 4165, - "endOffset": 4170, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953834937Z", - "requestedDate": "2024-03-13T08:45:48.594494Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "04d31e73df649fb4cbb8a76bc257f67f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alba", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 177.73601, - 239.1, - 23.304, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alavez Alawi Alba ", - "textAfter": " A Alba S", - "startOffset": 3233, - "endOffset": 3237, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953869392Z", - "requestedDate": "2024-03-13T08:58:39.431293Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6eef8c459cc714eb1468d7f12760c647", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balsa", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 163.06, - 239.1, - 26.604004, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baloch Balog Balogh ", - "textAfter": " Balsaa Baltensperger Baltisberger", - "startOffset": 12346, - "endOffset": 12351, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.953906592Z", - "requestedDate": "2024-03-13T08:48:18.12Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balsa" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.953907223Z", - "requestedDate": "2024-03-13T08:48:19.233261Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0d74e644a7c36219f3de82a05c943d9e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aardema", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 639.3, - 43.908, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aagaard Aalderink Aamlid ", - "textAfter": " Aardema M. Aaron", - "startOffset": 573, - "endOffset": 580, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953942039Z", - "requestedDate": "2024-03-13T08:45:48.545746Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "843c418ed58a97614165c9c5a4d4c6c9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abildt", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 467.30817, - 584.1, - 30.61203, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "A. Abi-Akar Abildgard ", - "textAfter": " Abildt U. Abis", - "startOffset": 1019, - "endOffset": 1025, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.953976814Z", - "requestedDate": "2024-03-13T08:45:49.783535Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ae58788da8854c1f42ff429def4aff98", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adema", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 162.184, - 459.9, - 34.608, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adelberger I Adelson ", - "textAfter": " Ademola Adham Adhihetty", - "startOffset": 1758, - "endOffset": 1763, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954011089Z", - "requestedDate": "2024-03-13T08:45:48.967729Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e5a6654664d689949e3823e1681d6272", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Akesson", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 322.63608, - 308.1, - 41.375977, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akashi Akashiba Akerman ", - "textAfter": " Akhavan Akhavan M", - "startOffset": 2806, - "endOffset": 2813, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954045754Z", - "requestedDate": "2024-03-13T08:45:49.298559Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.954046415Z", - "requestedDate": "2024-03-13T08:59:29.8778Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ad3096cde99eac5a9c41ec85058efcfe", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen H.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 249.004, - 101.100006, - 41.28006, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "J. Allen D.J. ", - "textAfter": " Allen J.A. Allen", - "startOffset": 4223, - "endOffset": 4231, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954081842Z", - "requestedDate": "2024-03-13T08:45:48.820661Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "26710321b5cbdec8ad8431117bb34d1e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Baldridge", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 156.74799, - 294.3, - 47.208008, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baldrick Baldrick P. ", - "textAfter": " Baldwin Baldwin M.K.", - "startOffset": 11954, - "endOffset": 11963, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954118551Z", - "requestedDate": "2024-03-13T08:48:18.084Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Baldridge" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954119092Z", - "requestedDate": "2024-03-13T08:48:19.244317Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "711db44a5295a6a8ae96a58adfb8a23a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adams", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 511.58823, - 501.3, - 33.95993, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adami Adamovics Adams ", - "textAfter": " Allen Adams D.", - "startOffset": 1565, - "endOffset": 1570, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6f742899f1c6237f8504fe08dac27866", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Audrey V.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 198.376, - 653.1, - 48.888016, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Audouze Audouze K. ", - "textAfter": " Audus Audy Auer", - "startOffset": 9572, - "endOffset": 9581, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954190456Z", - "requestedDate": "2024-03-13T08:48:18.342Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Audrey V." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954191007Z", - "requestedDate": "2024-03-13T08:48:18.794003Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "3ec790054bdf095c6f9adace3a2cfabc", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Banwell", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 342.7961, - 183.90005, - 39.91205, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "A.J Bannwarth Banton ", - "textAfter": " Banyard Banyuls Banzar", - "startOffset": 12736, - "endOffset": 12743, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954225642Z", - "requestedDate": "2024-03-13T08:48:18.061524Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954226384Z", - "requestedDate": "2024-03-13T08:48:18.229Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Banwell" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7cb0ead3fcfb00dfc24178941b028fdc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Adams", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 136.77998, - 487.5, - 33.960007, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allen Adams D. ", - "textAfter": " DS Adams K.", - "startOffset": 1586, - "endOffset": 1591, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2755a69d36ea2b74af9b082a0036a41", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atreya NC", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 282.68802, - 694.5, - 52.272034, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "S. Atrashkova Atreya ", - "textAfter": " Atreys Atreyya Atsushi", - "startOffset": 9303, - "endOffset": 9312, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954296576Z", - "requestedDate": "2024-03-13T08:48:18.639Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atreya NC" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954297127Z", - "requestedDate": "2024-03-13T08:48:18.830217Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ae5c6edab43155a7f68b27546dda06aa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abd-Alrahman", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 295.73203, - 625.5, - 72.57605, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abbott L. Abbotts ", - "textAfter": " Abd-Ella AA Abdallah", - "startOffset": 711, - "endOffset": 723, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954332053Z", - "requestedDate": "2024-03-13T08:45:49.868331Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a55989c7e9ed50c5532e83ec54d70d2b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen D.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 99.78399, - 101.100006, - 41.27999, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "B.C. Allen C. ", - "textAfter": " Allen D. J.", - "startOffset": 4191, - "endOffset": 4199, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954366177Z", - "requestedDate": "2024-03-13T08:45:49.44948Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY", - "NER" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4c59c27ca5762407b5ef65e527f0f1a5", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aarup S.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 230.64401, - 639.3, - 42.671997, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "M. Aaron Aarup ", - "textAfter": " Aarup V. Abadie", - "startOffset": 604, - "endOffset": 612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954400942Z", - "requestedDate": "2024-03-13T08:45:49.907731Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9246b04b4e87dcc82a91443e2712319c", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aversa", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 235.576, - 597.9, - 33.107986, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Avault Aveline Aver ", - "textAfter": " Avery Aviado Avila", - "startOffset": 9934, - "endOffset": 9940, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954436649Z", - "requestedDate": "2024-03-13T08:48:18.293Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Aversa" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.95443716Z", - "requestedDate": "2024-03-13T08:48:18.558489Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1031714e84ee17f996985991545a8b7f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aldinger", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 124.78, - 197.70004, - 42.588013, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "S. Aldershof SA ", - "textAfter": " Aldrich Aldridge Aldrige", - "startOffset": 3512, - "endOffset": 3520, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954471665Z", - "requestedDate": "2024-03-13T08:45:49.839363Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8227c499c2cb6553a8268b176ec0fbe7", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 197.72798, - 101.100006, - 26.59201, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allen D. J. ", - "textAfter": " D.J. Allen H.", - "startOffset": 4212, - "endOffset": 4217, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95450595Z", - "requestedDate": "2024-03-13T08:58:39.402992Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "64c1106908b56e9d8fcde5e28a7b682f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aga", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 195.052, - 404.7, - 20.003998, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "AG Seville Aga ", - "textAfter": " D. S. Agarwal", - "startOffset": 2139, - "endOffset": 2142, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954540304Z", - "requestedDate": "2024-03-13T08:58:39.577173Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "529979f07c589a58324433de581f1970", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alger", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 399.42407, - 142.50003, - 27.288025, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "D.R. Algate Derek ", - "textAfter": " Ali Alim Aliouane", - "startOffset": 3951, - "endOffset": 3956, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954574799Z", - "requestedDate": "2024-03-13T08:45:48.538748Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "1bd5c4c513c146c62850cf8fe2502453", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Aldershof S", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 471.74808, - 211.50003, - 57.64798, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aldershof Aldershof S ", - "textAfter": ". Aldershof SA", - "startOffset": 3486, - "endOffset": 3497, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954608853Z", - "requestedDate": "2024-03-13T08:58:39.293665Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "937df935fab632abb4038339f9d2ba2c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Chamier", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 480.9162, - 722.1, - 41.27997, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Tummon 0. D. ", - "textAfter": " 0. W. Matheson", - "startOffset": 84, - "endOffset": 91, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954642727Z", - "requestedDate": "2024-03-13T08:58:39.548295Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "75b27037ff69dd81eb48894fe4f07a78", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adamovics", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 418.3001, - 501.3, - 54.564087, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adamczewska-Andrzejewska Adamczyk Adami ", - "textAfter": " Adams Adams Allen", - "startOffset": 1549, - "endOffset": 1558, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954676931Z", - "requestedDate": "2024-03-13T08:45:48.698964Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0b973ec922774f6df9243e85cdc09a6f", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atger", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 708.3, - 27.287998, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Atallah Y.H. Ataulla ", - "textAfter": " Athanaselis Atherton Athusi", - "startOffset": 9157, - "endOffset": 9162, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954712518Z", - "requestedDate": "2024-03-13T08:48:18.033968Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.9547134Z", - "requestedDate": "2024-03-13T08:48:18.136Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atger" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "32c33ef8d4d1e6fddfafc2bf4e50f06c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Magdalena", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 155.38, - 473.7, - 53.304, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adamska Magdalen Adamska ", - "textAfter": " Adanyi Adaskaveg Adato", - "startOffset": 1669, - "endOffset": 1678, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "4f23721ab5580a7dfd5b6c49716e7e32", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bach", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 383.1762, - 501.3, - 24.600037, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baccarelli Bacchus Bacci ", - "textAfter": " Bach B. Bach", - "startOffset": 10609, - "endOffset": 10613, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954781448Z", - "requestedDate": "2024-03-13T08:48:18.153093Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.95478222Z", - "requestedDate": "2024-03-13T08:48:18.332Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bach" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "10bbc22e5ccd549d0ff535563dbf7d82", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aloni", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 242.42801, - 722.1, - 27.312012, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Almond Richard Alongi ", - "textAfter": " Aloph Alpendurada Alsadek", - "startOffset": 4607, - "endOffset": 4612, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "50c88533fe01a91f38e6b306d368a8c2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Attique", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 333.29214, - 680.7, - 35.904053, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Attia Attila Attilio ", - "textAfter": " Atwa Atwal Atwood", - "startOffset": 9415, - "endOffset": 9422, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954854265Z", - "requestedDate": "2024-03-13T08:48:18.385Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Attique" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954854946Z", - "requestedDate": "2024-03-13T08:48:18.623858Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "dba9c6b2bf616e27a862e97a35ac29c4", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Abbott", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 206.45201, - 625.5, - 33.228012, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abbd-Alrahman Abbitt Abbott ", - "textAfter": " L. Abbotts Abd-Alrahman", - "startOffset": 693, - "endOffset": 699, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fa52ae8005f74a067472cd37e1e1ecf9", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 249.004, - 101.100006, - 26.592041, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "J. Allen D.J. ", - "textAfter": " H. Allen J.A.", - "startOffset": 4223, - "endOffset": 4228, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.954923896Z", - "requestedDate": "2024-03-13T08:58:39.422983Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7d93e285f46c31d3e952755ed3c30508", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Baldez", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 410.17627, - 308.1, - 33.216064, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Baldamus Baldarelli Balderacchi ", - "textAfter": " Baldi Baldi B.", - "startOffset": 11911, - "endOffset": 11917, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.954959413Z", - "requestedDate": "2024-03-13T08:48:18.208Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Baldez" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.954959964Z", - "requestedDate": "2024-03-13T08:48:19.127545Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "11c3b3212fe0591e5d24066f37c8084e", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adolphi H.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 187.74399, - 432.3, - 53.976013, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adolph S. Adolphi ", - "textAfter": " Adora Clark Adriaanse", - "startOffset": 1946, - "endOffset": 1956, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95499509Z", - "requestedDate": "2024-03-13T08:45:48.928955Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2c74180b4cac91a652842a78de9506ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balluf", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 363.73618, - 252.90005, - 29.89206, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Ballet Ballet-Besnard Ballsutwe ", - "textAfter": " Balluff Balluff M.", - "startOffset": 12293, - "endOffset": 12299, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955030437Z", - "requestedDate": "2024-03-13T08:48:18.574Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balluf" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955030938Z", - "requestedDate": "2024-03-13T08:48:18.685198Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e1a544ce45b4ae36eb94b3edd5dda8ca", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Al. Amin", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 442.01218, - 266.70004, - 44.676025, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Al-Sarar Al-Shaibani Al-Taher ", - "textAfter": " Aladjem Alagar Alamo", - "startOffset": 3097, - "endOffset": 3105, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955066274Z", - "requestedDate": "2024-03-13T08:45:49.558719Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "190f05c164689f7c37c7fb384f857468", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allin", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 209.74, - 73.50003, - 24.588013, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Allender Alley Allias ", - "textAfter": " Allingham Allinson Allison", - "startOffset": 4418, - "endOffset": 4423, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955100498Z", - "requestedDate": "2024-03-13T08:45:49.15997Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d6886f051bd757a8e40c8e071aac1cfb", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Altenburger E.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 299.74005, - 708.3, - 70.992096, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Altenberger Altenburg Altenburger ", - "textAfter": " Altenkirch Alterbuger Alterburger", - "startOffset": 4715, - "endOffset": 4729, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "7c948e439a62f8f2fa46e6d65eccdab0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Abraham", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 445.03613, - 570.3, - 44.616028, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abraham Abraham N. ", - "textAfter": " N.R. Abraham, N.R.", - "startOffset": 1107, - "endOffset": 1114, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "56facb7952f1c273d39204156840e84c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "$ D Jones", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 722.1, - 47.26801, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "", - "textAfter": " $.Friedrich & Farrelly", - "startOffset": 0, - "endOffset": 9, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955207149Z", - "requestedDate": "2024-03-13T08:45:49.116166Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d709ac992b5802bc56b695e4d479fac8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "B. Schmid", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 437.10416, - 528.9, - 50.580048, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Pavlowitz B. Kerr, ", - "textAfter": " B.A. LACKEY Ba", - "startOffset": 10441, - "endOffset": 10450, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955242586Z", - "requestedDate": "2024-03-13T08:48:18.281118Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955243367Z", - "requestedDate": "2024-03-13T08:48:18.676Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "B. Schmid" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "ac29eda843f8e638355ee9443eb02827", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ballantine L.G.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 305.88412, - 280.5, - 74.2561, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Ballantine Ballantine L. ", - "textAfter": " Ballantine L.G.. Ballantyne", - "startOffset": 12075, - "endOffset": 12090, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955278593Z", - "requestedDate": "2024-03-13T08:48:18.327Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Ballantine L.G." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955279094Z", - "requestedDate": "2024-03-13T08:48:18.737835Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "481ddcb3cfaf559d3c6889dc0c73f27f", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 482.18814, - 87.30002, - 26.592041, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "L. Allen, Lisa ", - "textAfter": ", M Allen,", - "startOffset": 4377, - "endOffset": 4382, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955314862Z", - "requestedDate": "2024-03-13T08:58:39.47052Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "bfe79514a1a2b0d9676ce945ca1048f8", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bachmann K.", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 496.44443, - 473.7, - 51.20395, - 12.642 - ], - "pageNumber": 3 - }, - { - "rectangle": [ - 56.8, - 459.9, - 11.604, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Bachmann Bachmann B. ", - "textAfter": " Bachmann M Bachmann", - "startOffset": 10818, - "endOffset": 10829, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955349928Z", - "requestedDate": "2024-03-13T08:48:18.708Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bachmann K." - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955350459Z", - "requestedDate": "2024-03-13T08:48:18.802243Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e01c212594ffb0f196febcd9a2c845f1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Anderson", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 307.24, - 515.1, - 46.679993, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "L. Anderson M. ", - "textAfter": " Melanie Anderson R", - "startOffset": 5941, - "endOffset": 5949, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0fe2ed3fbdcf924cc9fd24f5be54b221", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alden", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 99.784, - 211.50003, - 29.291992, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "R. Alcock Aldcroft ", - "textAfter": " Aldenberg Alder Alder", - "startOffset": 3413, - "endOffset": 3418, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955421793Z", - "requestedDate": "2024-03-13T08:45:48.497638Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "892bd30cac5c286e0e226d94e41ab2ea", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balogh", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 125.37999, - 239.1, - 34.59601, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Balmer Baloch Balog ", - "textAfter": " Balsa Balsaa Baltensperger", - "startOffset": 12339, - "endOffset": 12345, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.9554573Z", - "requestedDate": "2024-03-13T08:48:18.243Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balogh" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955457801Z", - "requestedDate": "2024-03-13T08:48:18.592147Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "204e74d8fe7140031b1772c4b81d260a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Roper", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 239.32002, - 722.1, - 29.292007, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "& Farrelly &M ", - "textAfter": " )avid Patton .", - "startOffset": 36, - "endOffset": 41, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 6, - "type": "ADDED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "2b2430421789aee957d772aa26a3ce51", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Alder", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 213.856, - 211.50003, - 27.28801, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alden Aldenberg Alder ", - "textAfter": " L. Alderman Aldersdorf", - "startOffset": 3435, - "endOffset": 3440, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955531189Z", - "requestedDate": "2024-03-13T08:58:39.427068Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "5e38a2b746b98c73addae37b41645de6", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aulerich", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 625.5, - 41.891994, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Augusiak J.A Aukema ", - "textAfter": " Auletta Auletta A.", - "startOffset": 9719, - "endOffset": 9727, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955567086Z", - "requestedDate": "2024-03-13T08:48:18.121789Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955567878Z", - "requestedDate": "2024-03-13T08:48:18.424Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Aulerich" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a7599fec691d20fe9516d04637b8dfaa", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aikens P.J.", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 299.60803, - 335.7, - 52.97998, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aikens Aikens P. ", - "textAfter": " Airoldi Airs Airs", - "startOffset": 2617, - "endOffset": 2628, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955603665Z", - "requestedDate": "2024-03-13T08:45:49.276334Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.955604236Z", - "requestedDate": "2024-03-13T08:59:29.887062Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b309589863695b5fa8443adb9aeb231a", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Altenkirch", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 373.12015, - 708.3, - 51.288086, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Altenburger Altenburger E. ", - "textAfter": " Alterbuger Alterburger Althaus", - "startOffset": 4730, - "endOffset": 4740, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "e188003edabb919da47e36fa779d0168", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Bandeira", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 392.18817, - 225.30002, - 43.212067, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Banasiak U. Bandeen ", - "textAfter": " Bandisode Bandong Bandow", - "startOffset": 12484, - "endOffset": 12492, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955674158Z", - "requestedDate": "2024-03-13T08:48:18.144Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Bandeira" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955674759Z", - "requestedDate": "2024-03-13T08:48:18.888585Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "6be7538b0c92a5be801e78d90321eda0", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abdulla", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 597.9, - 38.603992, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abdou Abdu-Allah, G. ", - "textAfter": " Abdulrachman Abdurrachman Abe", - "startOffset": 846, - "endOffset": 853, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955710226Z", - "requestedDate": "2024-03-13T08:45:49.776213Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "8f7700281e46dbfcfe3d84e796bf1450", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Asuncion", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 309.71207, - 722.1, - 45.900024, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Aston Astoux Astuti ", - "textAfter": " Asya Lyon Atallah", - "startOffset": 9109, - "endOffset": 9117, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955745292Z", - "requestedDate": "2024-03-13T08:48:18.191Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Asuncion" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.955745813Z", - "requestedDate": "2024-03-13T08:48:19.237909Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "87198eb2e01366f976e65e2f7872fa4b", - "type": "PII", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Allen L. Allen", - "reason": "Personal Information found, removed by manual override", - "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 343.96005, - 101.100006, - 68.95209, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "H. Allen J.A. ", - "textAfter": " M Allen M.", - "startOffset": 4243, - "endOffset": 4257, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.95578148Z", - "requestedDate": "2024-03-13T08:58:39.566648Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "08714f9b70197e7bf845d66482bbf99c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Campbell", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 344.23605, - 321.9, - 46.608063, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "R. Aizawa AJ ", - "textAfter": " Ajao Ajayi Ajimi", - "startOffset": 2723, - "endOffset": 2731, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955816375Z", - "requestedDate": "2024-03-13T08:58:39.450885Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.955817027Z", - "requestedDate": "2024-03-13T08:59:30.001836Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "365cb4dc259de6b724241def1b7f5a50", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abellan", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 475.98407, - 597.9, - 37.896057, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Abel P. Abell ", - "textAfter": " Abellan M. Abellan", - "startOffset": 924, - "endOffset": 931, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955851221Z", - "requestedDate": "2024-03-13T08:45:50.164702Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "764ef8428618fa427655beb66d25e21b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Anderson", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 80.188, - 487.5, - 46.680008, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "A. Anderson, T.D. ", - "textAfter": "-Long Anderson. R.", - "startOffset": 6076, - "endOffset": 6084, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "60e81a3af1ea0f1888d2a7afa315c5af", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Akalach", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 149.39201, - 308.1, - 39.98401, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Ajimoko Akahavan Akahori ", - "textAfter": " Akashi Akashiba Akerman", - "startOffset": 2774, - "endOffset": 2781, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955920642Z", - "requestedDate": "2024-03-13T08:45:48.512Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.955921393Z", - "requestedDate": "2024-03-13T08:59:29.927172Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "aaaac196160903fc9ea24e55998daaf9", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Balaz", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 447.1361, - 321.9, - 27.300049, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "J. A. Balasubramanian ", - "textAfter": " Balazs Balbinder Balchak", - "startOffset": 11830, - "endOffset": 11835, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.95595692Z", - "requestedDate": "2024-03-13T08:48:18.091077Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.955957671Z", - "requestedDate": "2024-03-13T08:48:18.174Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Balaz" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "a39cf861450d3703189062673a3421ba", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Almeida A.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 232.348, - 59.700043, - 55.368027, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Almeida Almeida A ", - "textAfter": " Almeida A.A. Almond", - "startOffset": 4519, - "endOffset": 4529, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.955991976Z", - "requestedDate": "2024-03-13T08:45:49.033815Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "da5f8efdba9b5b598ae6dceaabe6e318", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atkinson S.", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 131.06801, - 694.5, - 56.664, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "C. Atkinson K. ", - "textAfter": " Atrashkova Atreya Atreya", - "startOffset": 9273, - "endOffset": 9284, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.956027242Z", - "requestedDate": "2024-03-13T08:48:18.045557Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.956027993Z", - "requestedDate": "2024-03-13T08:48:18.082Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atkinson S." - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "f97664e35d2b5592d00dada90fd53fd1", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Adams", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 475.28818, - 501.3, - 33.876038, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Adamczyk Adami Adamovics ", - "textAfter": " Adams Allen Adams", - "startOffset": 1559, - "endOffset": 1564, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956062779Z", - "requestedDate": "2024-03-13T08:45:49.959736Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "9d36c9be579098a6e234ac4f8d1cbb3c", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abernethy A.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 301.03604, - 584.1, - 64.59604, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Aberer Abernathy Abernethy ", - "textAfter": " Abi-Akar Abildgard Abildt", - "startOffset": 987, - "endOffset": 999, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956096953Z", - "requestedDate": "2024-03-13T08:45:48.883216Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "cce741c3a7657f46ec31a88448cf11dd", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Ahouangninou", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 257.75198, - 349.5, - 71.29202, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Ahmed A. Ahn ", - "textAfter": " Ahr H Ahrens", - "startOffset": 2517, - "endOffset": 2529, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956131278Z", - "requestedDate": "2024-03-13T08:45:48.532984Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.956131939Z", - "requestedDate": "2024-03-13T08:59:29.933934Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "55a36bf818e46af966299ca4635bbd06", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Algate", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 215.92003, - 142.50003, - 31.992004, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Alford Alfred Algate ", - "textAfter": " D.R Algate D.R.", - "startOffset": 3915, - "endOffset": 3921, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956166133Z", - "requestedDate": "2024-03-13T08:58:39.583941Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "22d3381523bacd561d7a9a9087b0b609", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Abambres", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 398.2001, - 639.3, - 49.26004, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "V. Abadie Aballay ", - "textAfter": " Abanto Abass Abbay", - "startOffset": 637, - "endOffset": 645, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956201811Z", - "requestedDate": "2024-03-13T08:45:49.081005Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "0f22c6c8135b8d9e7c2a6be6c3c7b846", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "5SR Burke", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 161.68001, - 708.3, - 52.979996, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Matheson 0M Clarke ", - "textAfter": " 8 Wilson :tf:inia", - "startOffset": 117, - "endOffset": 126, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 6, - "type": "REMOVED", - "dateTime": "2024-03-13T08:58:41.082712591Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956239672Z", - "requestedDate": "2024-03-13T08:58:39.397098Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "84801a4d899accc003ff6253f3403c83", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Akhavan M.", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 471.3041, - 308.1, - 59.988007, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akhavan Akhavan M ", - "textAfter": " Akhavein Akhaven Akhtar", - "startOffset": 2832, - "endOffset": 2842, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956275239Z", - "requestedDate": "2024-03-13T08:45:48.522654Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c2b0f6cc13c6c0970bcba981e3f179ee", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Anderson", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 0 - ], - "closestHeadline": "", - "section": "[1, 0]: Paragraph: Almond R.H. Almond Richard", - "color": null, - "positions": [ - { - "rectangle": [ - 458.488, - 515.1, - 46.679993, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Melanie Anderson R ", - "textAfter": " R. Anderson Rachel", - "startOffset": 5969, - "endOffset": 5977, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 4, - "type": "ADDED", - "dateTime": "2024-03-13T08:47:19.694336707Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "10daaf609d6457147d05b6eecc0802d2", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Atallah", - "reason": "Recategorized entities are applied by default., legal basis was manually changed, recategorized by manual override", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 412.6721, - 722.1, - 35.196075, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Asuncion Asya Lyon ", - "textAfter": " Atallah Y.H. Ataulla", - "startOffset": 9128, - "endOffset": 9135, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.956346092Z", - "requestedDate": "2024-03-13T08:48:18.173Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Atallah" - } - }, - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.956346613Z", - "requestedDate": "2024-03-13T08:48:19.149614Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "b63d78af66d7287c39ec9ecdeed4370e", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Aufmuth", - "reason": "Recategorized entities are applied by default., recategorized by manual override, legal basis was manually changed", - "matchedRule": "MAN.3.3", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 2, - 0 - ], - "closestHeadline": "", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "color": null, - "positions": [ - { - "rectangle": [ - 56.8, - 639.3, - 43.283993, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "Auerbach S Aufederheide ", - "textAfter": " Augello Augello A.", - "startOffset": 9631, - "endOffset": 9638, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "RECATEGORIZE", - "processedDate": "2024-03-13T09:05:21.956381889Z", - "requestedDate": "2024-03-13T08:48:18.048697Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "type": "CBI_address" - } - }, - { - "manualRedactionType": "LEGAL_BASIS_CHANGE", - "processedDate": "2024-03-13T09:05:21.956382731Z", - "requestedDate": "2024-03-13T08:48:18.545Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "section": "[2, 0]: Paragraph: Assaad Assad Assiagada Astete b", - "value": "Aufmuth" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "c79fbb403e8c1d31341aa30720d30626", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": "Akkan", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 442.94806, - 294.3, - 31.992004, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Akins Akintonwa Akiyama ", - "textAfter": " Akkan Z Akkan", - "startOffset": 2915, - "endOffset": 2920, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956418548Z", - "requestedDate": "2024-03-13T08:45:50.010924Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "d2c7d0bea4d75187e7aba26381b27280", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Airoldi", - "reason": "Author found, removed by manual override, forced by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 354.892, - 335.7, - 34.608032, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "P. Aikens P.J. ", - "textAfter": " Airs Airs D", - "startOffset": 2629, - "endOffset": 2636, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2024-03-13T08:44:54.811245839Z" - }, - { - "analysisNumber": 2, - "type": "REMOVED", - "dateTime": "2024-03-13T08:45:53.93986414Z" - }, - { - "analysisNumber": 7, - "type": "ADDED", - "dateTime": "2024-03-13T08:59:31.444615299Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "REMOVE", - "processedDate": "2024-03-13T09:05:21.956453654Z", - "requestedDate": "2024-03-13T08:45:49.352307Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": {} - }, - { - "manualRedactionType": "FORCE", - "processedDate": "2024-03-13T09:05:21.956454316Z", - "requestedDate": "2024-03-13T08:59:29.992948Z", - "userId": "abbc3e3a-c499-48da-9346-063e1863a7f5", - "propertyChanges": { - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" - } - } - ], - "engines": [ - "MANUAL", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "numberOfComments": 0 - }, - { - "id": "fdcd3f3b40058bb6f5cfa7ae3cde4ffc", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "IGNORED", - "value": ":tf:inia F. Gruber", - "reason": "Author found, removed by manual override", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 0 - ], - "closestHeadline": "", - "section": "[0, 0]: Paragraph: $ D Jones $.Friedrich", - "color": null, - "positions": [ - { - "rectangle": [ - 263.63202, - 708.3, - 80.66412, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Burke 8 Wilson ", - "textAfter": "