diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java index 531e7d6..d7beb99 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java @@ -6,6 +6,7 @@ import java.util.HashSet; import java.util.List; import java.util.Locale; import java.util.Map; +import java.util.Optional; import java.util.Set; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -156,14 +157,21 @@ public class EntityLogConverterService { if (pages.isEmpty() || !pages.contains(position.getPageNumber())) { pages.add(position.getPageNumber()); + + Optional optionalEntityLogLegalBasis = legalBasisMappings.stream() + .filter(lbm -> lbm.getTechnicalName().equalsIgnoreCase(entry.getLegalBasis())) + .findAny(); + + EntityLogLegalBasis entityLogLegalBasis = optionalEntityLogLegalBasis.orElse(new EntityLogLegalBasis("", "", "", "")); + reportEntries.add(new ReportRedactionEntry(position.getPageNumber(), position.x(), position.y(), getSection(entry, position), - checkTextForNull(entry.getLegalBasis()) + " " + getJustificationReason(legalBasisMappings, entry), - entry.getLegalBasis(), + entityLogLegalBasis.getReason() + " " + entityLogLegalBasis.getDescription(), + entityLogLegalBasis.getReason(), entry.getParagraphPageIdx(), - getJustificationReason(legalBasisMappings, entry), + entityLogLegalBasis.getDescription(), checkTextForNull(entry.getTextBefore()) + entry.getValue() + checkTextForNull(entry.getTextAfter()), entry.getValue(), mapOfEntityDisplayName.get(entry.getType()) @@ -188,16 +196,6 @@ public class EntityLogConverterService { } - private static String getJustificationReason(List legalBasisMappings, EntityLogEntry entry) { - - return legalBasisMappings.stream() - .filter(lbm -> lbm.getReason().equalsIgnoreCase(entry.getLegalBasis())) - .findAny() - .map(EntityLogLegalBasis::getDescription) - .orElse(""); - } - - private static ManualChange getLastManualChange(EntityLogEntry entry) { return entry.getManualChanges() diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index c9090f6..0e324cd 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -306,7 +306,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("filename").build(); EntityLog entityLog = objectMapper.readValue(new ClassPathResource("files/entityLog.json").getInputStream(), EntityLog.class); - List legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() { + List legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMappingIUCLID.json").getInputStream(), new TypeReference<>() { }); List reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java index 7a9ab45..c755fa7 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java @@ -89,7 +89,7 @@ public class EntityLogConverterServiceTest { assertEquals(62, reportEntries.size()); assertEquals(reportEntries.get(0).getPage(), 1); assertEquals(reportEntries.get(0).getSection(), "[1]: Section: Rule 1/2: Redact CBI"); - assertEquals(reportEntries.get(0).getJustification(), "Article 39(e)(3) of Regulation (EC) No 178/2002 "); + assertEquals(reportEntries.get(0).getJustification(), "Article 39(e)(3) of Regulation (EC) No 178/2002 (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)"); assertEquals(reportEntries.get(0).getJustificationParagraph(), "Article 39(e)(3) of Regulation (EC) No 178/2002"); assertFalse(reportEntries.get(0).isSkipped()); } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/expected/iuclid.txt b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/expected/iuclid.txt index 20a8736..b3faff9 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/expected/iuclid.txt +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/expected/iuclid.txt @@ -1,11 +1,11 @@ filename -Reg (EC) No 1107/2009 Art. 63 (2e) +Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002) commercial links between a producer or importer and the applicant or the authorisation holder, where applicable relates to: P5 +49 2113 2311 563, P5 +49 2113 2311 560, P5 +81 764770164, P5 +81 6653 44563, P5 Seriknowmobil@co.uk, P5 maximiliamschmitt@arcor.de, P5 maximiliamschmitt@t-online.de, P5 example@mail.com, P5 +27414328992, P5 +274 1432 8990, P5 +274 34223331, P5 +274 1432 8933, P6 +82 122 34188, P6 +82 122 34180, P6 food-industry@korea.com, P6 +275 5678 1234 132, P6 +49 2113 2311 563, P6 +49 2113 2311 560, P6 +81 764770164, P6 +81 6653 44563, P6 Seriknowmobil@co.uk, P6 maximiliamschmitt@arcor.de, P6 maximiliamschmitt@t-online.de, P6 example@mail.com, P6 +27414328992, P6 +274 1432 8990, P6 +274 34223331, P6 +274 1432 8933, P7 +82 122 34188, P7 +82 122 34180, P7 pharma-industry@korea.com -Article 39(e)(3) of Regulation (EC) No 178/2002 +Article 39(e)(3) of Regulation (EC) No 178/2002 (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) relates to: P1 Logo - non-readable content, P1 Doe J., P2 Michael N., P2 Funnarie B., P2 Feuer A., P3 Desiree, P3 Melanie, P4 library@outlook.com, P4 gordonjcp@msn.com, P4 dinther@comcast.net, P4 kawasaki@me.com, P5 Central Research Industry, P5 Maximiliam Schmitt, P5 +274 1432 8991, P5 493 1223 4592, P5 European Central Institute, P5 Emilia Lockhart, P6 This is a special case, everything between this and the next keyword should be redacted, P6 Central Research Industry, P6 Maximiliam Schmitt, P6 +274 1432 8991, P6 493 1223 4592, P6 European Central Institute, P6 Emilia Lockhart, P7 Dr. Alan Grant, P7 Dr. Alan Grant, P9 Signature - non-readable content, P9 Signature - non-readable content, P9 Müller, P9 Logo - non-readable content \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/65-S10redactionLog.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/65-S10redactionLog.json deleted file mode 100644 index 094b5f9..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/65-S10redactionLog.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 1, - "redactionLogEntry": [ - { - "id": "28562647b117cbee1737768475ae3607", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 143.0472, - "y": 727.91 - }, - "width": 10.452833, - "height": 33.710693, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": "Owner (SYN = ", - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476409899Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "1f44b16adada98a40be977d224b62d4b", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 546.96716, - "y": 72.89051 - }, - "width": 10.452818, - "height": 33.71469, - "page": 1 - } - ], - "sectionNumber": 5, - "textBefore": "the active substance ", - "textAfter": " – 6", - "comments": null, - "startOffset": 219, - "endOffset": 227, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476423585Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "91ef6d1848e433516662408700de5790", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 61.0888, - "y": 428.5304 - }, - "width": 11.591162, - "height": 32.84558, - "page": 1 - } - ], - "sectionNumber": 5, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 147, - "endOffset": 153, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476427502Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": true, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "1c2b8863d0348ec57b337ce2712f0847", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 111.60883, - "y": 72.89054 - }, - "width": 11.591154, - "height": 32.80046, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476432602Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": true, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", - "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 18, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 2 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/65-S10redactionLogWithRedaction.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/65-S10redactionLogWithRedaction.json deleted file mode 100644 index 2786c63..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/65-S10redactionLogWithRedaction.json +++ /dev/null @@ -1,355 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 1, - "redactionLogEntry": [ - { - "id": "28562647b117cbee1737768475ae3607", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 143.0472, - "y": 727.91 - }, - "width": 10.452833, - "height": 33.710693, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": "Owner (SYN = ", - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476409899Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "1f44b16adada98a40be977d224b62d4b", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 546.96716, - "y": 72.89051 - }, - "width": 10.452818, - "height": 33.71469, - "page": 1 - } - ], - "sectionNumber": 5, - "textBefore": "the active substance ", - "textAfter": " – 6", - "comments": null, - "startOffset": 219, - "endOffset": 227, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476423585Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "91ef6d1848e433516662408700de5790", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 61.0888, - "y": 428.5304 - }, - "width": 11.591162, - "height": 32.84558, - "page": 1 - } - ], - "sectionNumber": 5, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 147, - "endOffset": 153, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476427502Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": true, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "1c2b8863d0348ec57b337ce2712f0847", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 111.60883, - "y": 72.89054 - }, - "width": 11.591154, - "height": 32.80046, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:51.476432602Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": true, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "b1372ac26ef7c9ac846636dc90ddcf05", - "type": "manual", - "value": "Published", - "reason": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "matchedRule": 0, - "rectangle": false, - "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", - "imported": false, - "redacted": true, - "section": "Text in table", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 157.0195, - "y": 350.69205 - }, - "width": 13.96788, - "height": -47.821453, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": "", - "textAfter": "", - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2023-03-20T11:27:09.936Z" - } - ], - "manualChanges": [ - { - "annotationStatus": "APPROVED", - "manualRedactionType": "ADD_LOCALLY", - "processedDate": "2023-03-20T11:27:09.944Z", - "requestedDate": "2023-03-20T11:27:09.936Z", - "userId": "98755882-a216-44e6-92c1-0c191ad134ce", - "propertyChanges": {}, - "processed": true - } - ], - "engines": null, - "reference": null, - "importedRedactionIntersections": [], - "localManualRedaction": true, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", - "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 18, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 2 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/67-S6redactionLog.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/67-S6redactionLog.json deleted file mode 100644 index 3dca638..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/67-S6redactionLog.json +++ /dev/null @@ -1,639 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 1, - "redactionLogEntry": [ - { - "id": "ac54224bab3fa173a28c1fc943abcb2b", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 143.0472, - "y": 727.85 - }, - "width": 10.452833, - "height": 33.710693, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": "Owner (SYN = ", - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477812432Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "badbdba336f4d754024bb1f820a61b0a", - "type": "CBI_author", - "value": "Green R.", - "reason": "Author found", - "matchedRule": 10, - "rectangle": false, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "redacted": true, - "section": "Text in table", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 253.67392, - "y": 162.84514 - }, - "width": 11.54608, - "height": 36.198288, - "page": 1 - } - ], - "sectionNumber": 6, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 15, - "endOffset": 23, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477821319Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "DICTIONARY", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "0cbb552705d3294bf579dcfa97ea6766", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 290.2385, - "y": 644.72015 - }, - "width": 10.981504, - "height": 33.48163, - "page": 1 - } - ], - "sectionNumber": 9, - "textBefore": "providing access to ", - "textAfter": " specific know-how", - "comments": null, - "startOffset": 393, - "endOffset": 401, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477826438Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "c688622f3544cd4d9c4aafef2c77f15d", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 237.65378, - "y": 302.87067 - }, - "width": 11.546049, - "height": 37.251373, - "page": 1 - } - ], - "sectionNumber": 5, - "textBefore": "to Document J ", - "textAfter": " File No", - "comments": null, - "startOffset": 102, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477828843Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "8ac1b192ab6ca20375149f01a8ce7334", - "type": "CBI_author", - "value": "Akkan Z., Botham J.", - "reason": "Author found", - "matchedRule": 10, - "rectangle": false, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "redacted": true, - "section": "Text in table", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 214.67392, - "y": 162.85521 - }, - "width": 11.546062, - "height": 83.2892, - "page": 1 - } - ], - "sectionNumber": 5, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 15, - "endOffset": 34, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477830937Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false - }, - { - "id": "a6a7198a8089e8e06107af5f6a2d1e73", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 290.2385, - "y": 75.3515 - }, - "width": 10.981504, - "height": 33.536697, - "page": 1 - } - ], - "sectionNumber": 9, - "textBefore": "2013 ZA1296_10191 *", - "textAfter": " requests data", - "comments": null, - "startOffset": 237, - "endOffset": 245, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477833081Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "2a0f1f825a91671322b6c7adef385367", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 111.60883, - "y": 162.83318 - }, - "width": 11.591154, - "height": 32.800476, - "page": 1 - } - ], - "sectionNumber": 2, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 11, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477835365Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": true, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "a22c85dd1d9005345e48e1e573745567", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 546.96716, - "y": 72.830505 - }, - "width": 10.452818, - "height": 33.714684, - "page": 1 - } - ], - "sectionNumber": 9, - "textBefore": "the active substance ", - "textAfter": " – 6", - "comments": null, - "startOffset": 196, - "endOffset": 204, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477837359Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "181eec8da7dff594abd8181370a4b2b5", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 290.2385, - "y": 442.6209 - }, - "width": 10.981504, - "height": 33.48181, - "page": 1 - } - ], - "sectionNumber": 9, - "textBefore": "information might undermine ", - "textAfter": "’s commercial interests", - "comments": null, - "startOffset": 338, - "endOffset": 346, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477839473Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - }, - { - "id": "b907ba9ef5993bd3d12d2098cb03759e", - "type": "CBI_address", - "value": "Syngenta", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "rectangle": false, - "legalBasis": null, - "imported": false, - "redacted": false, - "section": "Text in table", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 276.65378, - "y": 302.87067 - }, - "width": 11.54608, - "height": 37.251373, - "page": 1 - } - ], - "sectionNumber": 6, - "textBefore": "to Document J ", - "textAfter": " File No", - "comments": null, - "startOffset": 91, - "endOffset": 99, - "imageHasTransparency": false, - "excluded": false, - "sourceId": null, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-02-28T10:05:46.477841627Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [], - "localManualRedaction": false, - "manuallyRemoved": false, - "hint": false, - "recommendation": false, - "falsePositive": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", - "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 18, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 2 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/S1116LegalBasis.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/S1116LegalBasis.json deleted file mode 100644 index 2a84d87..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/S1116LegalBasis.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(1)", - "description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.", - "reason": "Article 39(e)(1) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } -] \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/S11RedactionLog.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/S11RedactionLog.json deleted file mode 100644 index d33e58f..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/S11RedactionLog.json +++ /dev/null @@ -1,275 +0,0 @@ -{ - "analysisVersion": 1, - "redactionLogEntry": [ - { - "id": "c65033cf94d9d0011cbb45184225e2c6", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG CH 4002 – Basel Switzerland", - "reason": "Address found", - "matchedRule": 3, - "legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: ", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 301.27, - "y": 687.38 - }, - "width": 120.99826, - "height": 10.526819, - "page": 1 - }, - { - "topLeft": { - "x": 301.27, - "y": 675.86 - }, - "width": 69.64087, - "height": 10.526819, - "page": 1 - }, - { - "topLeft": { - "x": 301.27, - "y": 664.34 - }, - "width": 48.55905, - "height": 10.526819, - "page": 1 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 148, - "endOffset": 203, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-20T15:30:11.024443Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "dbf366de6f9338b6246a1555058bf652", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG Schwarzwaldalle 215 P.O. Box CH-4002 Basel Switzerland", - "reason": "Address found", - "matchedRule": 3, - "legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: ", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 301.27, - "y": 745.34 - }, - "width": 120.99826, - "height": 10.526819, - "page": 1 - }, - { - "topLeft": { - "x": 301.27, - "y": 733.82 - }, - "width": 86.676025, - "height": 10.526819, - "page": 1 - }, - { - "topLeft": { - "x": 301.27, - "y": 722.3 - }, - "width": 37.971527, - "height": 10.526819, - "page": 1 - }, - { - "topLeft": { - "x": 301.27, - "y": 710.9 - }, - "width": 62.99005, - "height": 10.526819, - "page": 1 - }, - { - "topLeft": { - "x": 301.27, - "y": 699.38 - }, - "width": 48.55905, - "height": 10.526819, - "page": 1 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 99, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-20T15:30:11.024476Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c0ab0793f4bd54dc02e09606ad58583f", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: ", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 105.14, - "y": 405.23 - }, - "width": 24.537277, - "height": 10.929359, - "page": 1 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 868, - "endOffset": 873, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-20T15:30:11.024482Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(1)", - "description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.", - "reason": "Article 39(e)(1) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 24, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 1 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/Seite13log.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/Seite13log.json deleted file mode 100644 index ffaf3db..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/Seite13log.json +++ /dev/null @@ -1,543 +0,0 @@ -{ - "analysisVersion": 1, - "redactionLogEntry": [ - { - "id": "c1189b63b3293a2cb315c30feaec3a02", - "type": "false_positive", - "value": "Not stated", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.93, - "y": 568.67 - }, - "width": 45.965927, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 1, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 713, - "endOffset": 723, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081665Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "2e9ba259e223dc1205b5c2b6085bec60", - "type": "CBI_author", - "value": "Cheung", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Materials and methods:", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 153.5, - "y": 403.91 - }, - "width": 35.3013, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "ABR89090 (see above, ", - "textAfter": ", 1990 RIP9800436).", - "comments": null, - "startOffset": 425, - "endOffset": 431, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081673Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "4424ae80a70d7b0ce6d39272ca8b7a19", - "type": "CBI_author", - "value": "Cheung", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Materials and methods:", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 341.23, - "y": 416.51 - }, - "width": 35.30124, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "ABR-89089 (see above, ", - "textAfter": ", 1990, RIP9800437)", - "comments": null, - "startOffset": 374, - "endOffset": 380, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081673Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "d5b033c5e84d2c9d5a8eb0478d8acf20", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.31998, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081674Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "e80985688619cc8d4fdff3091a7b397a", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 289.84998, - "y": 605.3 - }, - "width": 42.112946, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 1, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 630, - "endOffset": 638, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081674Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "4745a1125efdc81700e0ab9be95e5c75", - "type": "CBI_author", - "value": "Rollins R.D.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 409.96426, - "y": 618.02 - }, - "width": 56.28833, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 1, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "freezer storage conditions, ", - "textAfter": ", 1995, Study", - "comments": null, - "startOffset": 586, - "endOffset": 598, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081674Z" - } - ], - "engines": [ - "NER", - "DICTIONARY" - ], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "379492d57d7cf987f7177fb8b31ce0bc", - "type": "recommendation_CBI_author", - "value": "Guideline", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 586.82 - }, - "width": 46.95952, - "height": 10.929359, - "page": 1 - } - ], - "sectionNumber": 1, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "No CGA24705/2567, RIP9800438 ", - "textAfter": "(s): Not specified", - "comments": null, - "startOffset": 673, - "endOffset": 682, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081675Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": false, - "recommendation": true, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "39b497ef7a81c0283a01c0156fb523ab", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 489.86035, - "y": 740.42 - }, - "width": 32.82184, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 1, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 90, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081675Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c0eace8eb34ea01a13a7a55c14dc6e1b", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Materials and methods:", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 378.57 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 1 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 451, - "endOffset": 454, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-09-09T08:00:53.081675Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(1)", - "description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.", - "reason": "Article 39(e)(1) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 28, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 1 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLog.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLog.json index 3d017be..713d7b4 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLog.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLog.json @@ -10,7 +10,7 @@ "value": "Dr. Alan Grant", "reason": "AUTHOR(S) was found", "matchedRule": "PII.9.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 17, @@ -118,7 +118,7 @@ "value": "Funnarie B.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -175,7 +175,7 @@ "value": "Central Research Industry", "reason": "Found after \"Contact point:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -231,7 +231,7 @@ "value": "food-industry@korea.com", "reason": "Found after \"E-mail:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -286,7 +286,7 @@ "value": "+274 1432 8991", "reason": "Found between contact keywords", "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -342,7 +342,7 @@ "value": "+49 2113 2311 563", "reason": "Found after \"Phone:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -506,7 +506,7 @@ "value": "+274 1432 8933", "reason": "Found after \"Phone No.\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -562,7 +562,7 @@ "value": "This is a special case, everything between this and the next keyword should be redacted", "reason": "Found between contact keywords", "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -682,7 +682,7 @@ "value": "example@mail.com", "reason": "Found after \"E-mail address:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -801,7 +801,7 @@ "value": "Maximiliam Schmitt", "reason": "Found between contact keywords", "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -911,7 +911,7 @@ "value": "gordonjcp@msn.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -965,7 +965,7 @@ "value": "+81 764770164", "reason": "Found after \"Tel.:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -1021,7 +1021,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -1076,7 +1076,7 @@ "value": "+274 34223331", "reason": "Found after \"Telephone:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -1132,7 +1132,7 @@ "value": "+49 2113 2311 560", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -1262,7 +1262,7 @@ "value": "+82 122 34188", "reason": "Found after \"Phone:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -1373,7 +1373,7 @@ "value": "maximiliamschmitt@arcor.de", "reason": "Found after \"Email:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -1429,7 +1429,7 @@ "value": "dinther@comcast.net", "reason": "Found by Email Regex", "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1727,7 +1727,7 @@ "value": "European Central Institute", "reason": "Found after \"European contact:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -1857,7 +1857,7 @@ "value": "Müller", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -1911,7 +1911,7 @@ "value": "maximiliamschmitt@arcor.de", "reason": "Found after \"Email:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -2021,7 +2021,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -2075,7 +2075,7 @@ "value": "+274 1432 8991", "reason": "Found between contact keywords", "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2513,7 +2513,7 @@ "value": "library@outlook.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -2675,7 +2675,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -2783,7 +2783,7 @@ "value": "Michael N.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -3011,7 +3011,7 @@ "value": "kawasaki@me.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -3065,7 +3065,7 @@ "value": "Central Research Industry", "reason": "Found after \"Contact point:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -3121,7 +3121,7 @@ "value": "+81 764770164", "reason": "Found after \"Tel.:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -3231,7 +3231,7 @@ "value": "+82 122 34180", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 15, @@ -3285,7 +3285,7 @@ "value": "+275 5678 1234 132", "reason": "Found after \"Tel.:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -3396,7 +3396,7 @@ "value": "Maximiliam Schmitt", "reason": "Found between contact keywords", "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -3618,7 +3618,7 @@ "value": "+49 2113 2311 560", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -3784,7 +3784,7 @@ "value": "+274 1432 8933", "reason": "Found after \"Phone No.\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -3840,7 +3840,7 @@ "value": "+82 122 34188", "reason": "Found after \"Phone:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 15, @@ -3948,7 +3948,7 @@ "value": "+82 122 34180", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -4057,7 +4057,7 @@ "value": "+49 2113 2311 563", "reason": "Found after \"Phone:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -4176,7 +4176,7 @@ "value": "+27414328992", "reason": "Found after \"Telephone number:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -4232,7 +4232,7 @@ "value": "Doe J.", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -4397,7 +4397,7 @@ "value": "European Central Institute", "reason": "Found after \"European contact:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -4516,7 +4516,7 @@ "value": "example@mail.com", "reason": "Found after \"E-mail address:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -4572,7 +4572,7 @@ "value": "Emilia Lockhart", "reason": "Found after \"Alternative contact:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4628,7 +4628,7 @@ "value": "+274 1432 8990", "reason": "Found after \"Fax number:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -4684,7 +4684,7 @@ "value": "pharma-industry@korea.com", "reason": "Found after \"E-mail:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 15, @@ -4738,7 +4738,7 @@ "value": "+274 1432 8990", "reason": "Found after \"Fax number:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -4794,7 +4794,7 @@ "value": "+81 6653 44563", "reason": "Found after \"Tel:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -4906,7 +4906,7 @@ "value": "+81 6653 44563", "reason": "Found after \"Tel:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -4962,7 +4962,7 @@ "value": "Feuer A.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -5072,7 +5072,7 @@ "value": "Seriknowmobil@co.uk", "reason": "Found after \"E-mail:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -5128,7 +5128,7 @@ "value": "+274 34223331", "reason": "Found after \"Telephone:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -5184,7 +5184,7 @@ "value": "+27414328992", "reason": "Found after \"Telephone number:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -5294,7 +5294,7 @@ "value": "Dr. Alan Grant", "reason": "AUTHOR(S) was found", "matchedRule": "PII.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 16, @@ -5348,7 +5348,7 @@ "value": "maximiliamschmitt@t-online.de", "reason": "Found after \"e-mail:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 13, @@ -5404,7 +5404,7 @@ "value": "493 1223 4592", "reason": "Found after \"Contact:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -5460,7 +5460,7 @@ "value": "maximiliamschmitt@t-online.de", "reason": "Found after \"e-mail:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -5516,7 +5516,7 @@ "value": "493 1223 4592", "reason": "Found after \"Contact:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5635,7 +5635,7 @@ "value": "Seriknowmobil@co.uk", "reason": "Found after \"E-mail:\" contact keyword", "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", + "legalBasis": "links_producer_applicant", "imported": false, "containingNodeId": [ 14, @@ -5745,7 +5745,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -5799,7 +5799,7 @@ "value": "Emilia Lockhart", "reason": "Found after \"Alternative contact:\" contact keyword", "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -5855,7 +5855,7 @@ "value": "Image:Logo", "reason": "Logo Found", "matchedRule": "ETC.3.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -5907,7 +5907,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -5959,7 +5959,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -6011,7 +6011,7 @@ "value": "Image:Logo", "reason": "Logo Found", "matchedRule": "ETC.3.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -6060,47 +6060,56 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ], "dictionaryVersion": 21, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json index 92ffa1b..f00c05b 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json @@ -73,7 +73,7 @@ "value": "Michael, J.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -181,7 +181,7 @@ "value": "Veronica Smith", "reason": "Found after \"Contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -288,7 +288,7 @@ "value": "KML", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -395,7 +395,7 @@ "value": "+49 331 441 551 44", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -500,7 +500,7 @@ "value": "Phillips", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -552,7 +552,7 @@ "value": "Julie Ben", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -605,7 +605,7 @@ "value": "0049 331 441 551 7", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -820,7 +820,7 @@ "value": "993-221", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -873,7 +873,7 @@ "value": "+49 331 441551-10", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -925,7 +925,7 @@ "value": "Belkov", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1102,7 +1102,7 @@ "value": "luthor.lex1@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -1154,7 +1154,7 @@ "value": "Lain", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 41, @@ -1269,7 +1269,7 @@ "value": "Byron, C.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -1324,7 +1324,7 @@ "value": "Madame Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -1539,7 +1539,7 @@ "value": "BECH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -1593,7 +1593,7 @@ "value": "Redact between No and F/ax", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -1646,7 +1646,7 @@ "value": "sabine.heldt02@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -1699,7 +1699,7 @@ "value": "Greg, M.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -1807,7 +1807,7 @@ "value": "gordonjcp@msn.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -1860,7 +1860,7 @@ "value": "Charalampos Schenk", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -2018,7 +2018,7 @@ "value": "Sonja Nier", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -2123,7 +2123,7 @@ "value": "+49 331 441 551 45", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -2176,7 +2176,7 @@ "value": "Madame . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -2228,7 +2228,7 @@ "value": "0049 331 441 551 4", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -2280,7 +2280,7 @@ "value": "Yuko Suzuki", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -2334,7 +2334,7 @@ "value": "Morpheus Duvall", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -2389,7 +2389,7 @@ "value": "Xinyi Y. Tao", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -2442,7 +2442,7 @@ "value": "Mrs Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -2494,7 +2494,7 @@ "value": "Dr. Alan Miller", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -2546,7 +2546,7 @@ "value": "Sabine Heldt", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -2599,7 +2599,7 @@ "value": "Feuer A.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -2654,7 +2654,7 @@ "value": "Ms. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -2759,7 +2759,7 @@ "value": "+49 331 441 551 36", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -2866,7 +2866,7 @@ "value": "+49 331 441 551 31", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -2919,7 +2919,7 @@ "value": "library@outlook.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -2972,7 +2972,7 @@ "value": "Sonnenschein", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 32, @@ -3024,7 +3024,7 @@ "value": "Tommy Neilson", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -3184,7 +3184,7 @@ "value": "Sude Halide Nurullah", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -3343,7 +3343,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -3447,7 +3447,7 @@ "value": "Maximus Coleman", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -3501,7 +3501,7 @@ "value": "Mrs . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -3553,7 +3553,7 @@ "value": "Christine Henri", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -3606,7 +3606,7 @@ "value": "0049 331 441 551 3", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -3658,7 +3658,7 @@ "value": "Norman", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -3815,7 +3815,7 @@ "value": "Miss . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -3974,7 +3974,7 @@ "value": "Sir Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -4026,7 +4026,7 @@ "value": "Igarashi Akitaka", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -4079,7 +4079,7 @@ "value": "Redact between No and F/ax", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -4185,7 +4185,7 @@ "value": "Lawson Stafford", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -4239,7 +4239,7 @@ "value": "0049 331 441 551 24", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -4291,7 +4291,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 40, @@ -4343,7 +4343,7 @@ "value": "Phillip", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -4395,7 +4395,7 @@ "value": "Carrol Ferris", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -4501,7 +4501,7 @@ "value": "LexCo", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -4553,7 +4553,7 @@ "value": "Ross", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -4607,7 +4607,7 @@ "value": "sabine.heldt07@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -4714,7 +4714,7 @@ "value": "sabine.heldt05@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -4767,7 +4767,7 @@ "value": "luthor.lex3@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -4872,7 +4872,7 @@ "value": "Miss Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -4924,7 +4924,7 @@ "value": "Sir. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -4976,7 +4976,7 @@ "value": "Leon", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -5081,7 +5081,7 @@ "value": "Alley", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -5199,7 +5199,7 @@ "value": "Redact beween contact and T/el", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -5252,7 +5252,7 @@ "value": "Class", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -5306,7 +5306,7 @@ "value": "sabine.heldt03@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -5359,7 +5359,7 @@ "value": "William, B.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -5413,7 +5413,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -5467,7 +5467,7 @@ "value": "+49 (331) 441 551 12", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -5519,7 +5519,7 @@ "value": "0049 331 441 551 27", "reason": "Found between contact keywords", "matchedRule": "PII.6.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -5571,7 +5571,7 @@ "value": "+49 331 441 551 38", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -5731,7 +5731,7 @@ "value": "+49 331-441 551 11", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -5783,7 +5783,7 @@ "value": "+49 331 441 551 33", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -5836,7 +5836,7 @@ "value": "Smith", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -5892,7 +5892,7 @@ "value": "+49 331 441551-13", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -6005,7 +6005,7 @@ "value": "Ashley", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 39, @@ -6111,7 +6111,7 @@ "value": "Osborn", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -6164,7 +6164,7 @@ "value": "0049 331 441 551 2", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -6216,7 +6216,7 @@ "value": "BECH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -6321,7 +6321,7 @@ "value": "+49 331 441 551 29", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -6374,7 +6374,7 @@ "value": "Allan Smith", "reason": "Found after \"Contact point:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -6426,7 +6426,7 @@ "value": "0049 331 441 551 25", "reason": "Found between contact keywords", "matchedRule": "PII.6.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -6478,7 +6478,7 @@ "value": "Coleman Charles", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -6584,7 +6584,7 @@ "value": "luthor.lex2@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -6636,7 +6636,7 @@ "value": "Belkov", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -6689,7 +6689,7 @@ "value": "Lex Luthor", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -6741,7 +6741,7 @@ "value": "0049 331 441 551 28", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -6793,7 +6793,7 @@ "value": "Sminko", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6897,7 +6897,7 @@ "value": "BECH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -7056,7 +7056,7 @@ "value": "Madame. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -7108,7 +7108,7 @@ "value": "0049 331 441 551 17", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -7160,7 +7160,7 @@ "value": "Michelle Carge", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -7213,7 +7213,7 @@ "value": "0049 331 441 551 26", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -7265,7 +7265,7 @@ "value": "+49 331 441 551 41", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -7371,7 +7371,7 @@ "value": "David Ksenia", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -7476,7 +7476,7 @@ "value": "Carter Stein", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -7531,7 +7531,7 @@ "value": "0049 331 441 551 16", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -7691,7 +7691,7 @@ "value": "Richard", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 40, @@ -7743,7 +7743,7 @@ "value": "0049 331 441 551 23", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -7795,7 +7795,7 @@ "value": "Michael N.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -7849,7 +7849,7 @@ "value": "Sonnenschein", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 32, @@ -7901,7 +7901,7 @@ "value": "Daniel", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 40, @@ -7953,7 +7953,7 @@ "value": "Class", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -8060,7 +8060,7 @@ "value": "Alley", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -8221,7 +8221,7 @@ "value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -8274,7 +8274,7 @@ "value": "Isaiah Hansen", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -8431,7 +8431,7 @@ "value": "0049 331 441 551 1", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -8483,7 +8483,7 @@ "value": "Sminko", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -8644,7 +8644,7 @@ "value": "Carter", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -8698,7 +8698,7 @@ "value": "+49 331 441 551 30", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -8751,7 +8751,7 @@ "value": "+49 331 441 551 35", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -8804,7 +8804,7 @@ "value": "Wayne, L.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -8859,7 +8859,7 @@ "value": "Jun", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -8965,7 +8965,7 @@ "value": "KATH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -9018,7 +9018,7 @@ "value": "Sir . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -9070,7 +9070,7 @@ "value": "+49 331 441 551 37", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -9123,7 +9123,7 @@ "value": "0049 331 441 551 6", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -9175,7 +9175,7 @@ "value": "+49 331 441 551 34", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -9228,7 +9228,7 @@ "value": "Silver", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -9280,7 +9280,7 @@ "value": "sabine.heldt01@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -9386,7 +9386,7 @@ "value": "0049 331 441 551 0", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -9553,7 +9553,7 @@ "value": "+49 331 441 551 43", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -9606,7 +9606,7 @@ "value": "Tyler Durden", "reason": "Found after \"European contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -9658,7 +9658,7 @@ "value": "Ms. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -9710,7 +9710,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -9763,7 +9763,7 @@ "value": "B. Rahim", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -9816,7 +9816,7 @@ "value": "Wilson Fisk", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -9869,7 +9869,7 @@ "value": "+49 331 441 551 39", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -9922,7 +9922,7 @@ "value": "Peoples", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 37, @@ -9989,7 +9989,7 @@ "value": "993-222", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -10042,7 +10042,7 @@ "value": "Sebastian Shaw", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -10201,7 +10201,7 @@ "value": "Kara Hunt", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -10255,7 +10255,7 @@ "value": "dinther@comcast.net", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -10308,7 +10308,7 @@ "value": "Keith Arving", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -10572,7 +10572,7 @@ "value": "sabine.heldt08@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -10625,7 +10625,7 @@ "value": "0049 331 441 551 5", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -10677,7 +10677,7 @@ "value": "Morpheus Duvall", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -10730,7 +10730,7 @@ "value": "David Chubb Research Director Ivan Musk, Msc Bioanalysis Tom Scrott Team Leader", "reason": "On behalf of Sequani Ltd.: Name Title was found", "matchedRule": "PII.11.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -10827,7 +10827,7 @@ "value": "John Clemens", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -10881,7 +10881,7 @@ "value": "KML", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -10991,7 +10991,7 @@ "value": "Manuel", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 39, @@ -11044,7 +11044,7 @@ "value": "kawasaki@me.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -11149,7 +11149,7 @@ "value": "Michael", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -11203,7 +11203,7 @@ "value": "+49 331 441 551 46", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -11256,7 +11256,7 @@ "value": "Redact beween contact and T/el", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -11309,7 +11309,7 @@ "value": "Maximilion Pegasus", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -11415,7 +11415,7 @@ "value": "Professor Alexia Ashford", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -11468,7 +11468,7 @@ "value": "Richard", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -11521,7 +11521,7 @@ "value": "j.jiwoo@collab.co.kr", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -11575,7 +11575,7 @@ "value": "Mme. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -11627,7 +11627,7 @@ "value": "+49 331 441 551 8", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -11742,7 +11742,7 @@ "value": "Ranya Eikenboom", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -11795,7 +11795,7 @@ "value": "Stein", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -11848,7 +11848,7 @@ "value": "0049 331 441 551 15", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -11900,7 +11900,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -12007,7 +12007,7 @@ "value": "+49 331 441 551 42", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -12060,7 +12060,7 @@ "value": "+49 331 441 551 32", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -12113,7 +12113,7 @@ "value": "Dr. Sergei Vladimir", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -12222,7 +12222,7 @@ "value": "Funnarie B.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -12329,7 +12329,7 @@ "value": "Mrs. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -12381,7 +12381,7 @@ "value": "0049 331 441 551 18", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -12541,7 +12541,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -12594,7 +12594,7 @@ "value": "Belkov", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -12754,7 +12754,7 @@ "value": "Max Mustermann", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -12807,7 +12807,7 @@ "value": "m.grandfield@umbrella.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -12861,7 +12861,7 @@ "value": "luthor.lex4@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -12975,7 +12975,7 @@ "value": "Ross Hamster", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -13083,7 +13083,7 @@ "value": "Mme . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -13187,7 +13187,7 @@ "value": "Ms Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -13239,7 +13239,7 @@ "value": "Dr. Alan Milwer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -13291,7 +13291,7 @@ "value": "Mme Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 30, @@ -13343,7 +13343,7 @@ "value": "sabine.heldt04@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -13451,7 +13451,7 @@ "value": "KML", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -13504,7 +13504,7 @@ "value": "Özgür U. Reyhan", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -13557,7 +13557,7 @@ "value": "0049 331 441 551 14", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -13785,7 +13785,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -13837,7 +13837,7 @@ "value": "Smith", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -13943,7 +13943,7 @@ "value": "0049 331 441 551 19 Telephone: 0049 331 441 551 20 Phone No. 0049 331 441 551 21 Phone: 0049 331 441 551 22", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -14101,7 +14101,7 @@ "value": "Sminko", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -14154,7 +14154,7 @@ "value": "sabine.heldt06@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -14207,7 +14207,7 @@ "value": "+49 (331) 441 551 9", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -14418,7 +14418,7 @@ "value": "C. J. Alfred", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -14471,7 +14471,7 @@ "value": "Steffanie Soja", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -14524,7 +14524,7 @@ "value": "KATH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -14578,7 +14578,7 @@ "value": "+49 331 441 551 40", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -14683,7 +14683,7 @@ "value": "Simon Stagg", "reason": "Found after \"Alternative contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -14735,7 +14735,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 33, @@ -14785,7 +14785,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 33, @@ -14985,7 +14985,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 33, @@ -15035,7 +15035,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 33, @@ -15435,7 +15435,7 @@ "value": "Image:Other", "reason": "", "matchedRule": "", - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "legalBasis": "vertebrate_study_personal_data_geolocation_article_39e2", "imported": false, "containingNodeId": [ 36, @@ -15603,7 +15603,7 @@ "value": "Image:Other", "reason": "forced by manual override", "matchedRule": "", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 37, @@ -15782,47 +15782,56 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ], "dictionaryVersion": 20, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithManualRedactions.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithManualRedactions.json deleted file mode 100644 index 553542d..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithManualRedactions.json +++ /dev/null @@ -1,6203 +0,0 @@ -{ - "analysisVersion": 1, - "analysisNumber": 3, - "entityLogEntry": [ - { - "id": "ca97a858f03e846f66a8dc3acc54889d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Funnarie B.", - "reason": "Author(s) found", - "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 4, - 2, - 0, - 11 - ], - "closestHeadline": "Rule 6-11 (Authors Table) ", - "section": "[4, 2, 0, 11]: Table_cell: Funnarie B.", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 140, - 313.8, - 49.48651, - 11.81175 - ], - "pageNumber": 2 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 1338, - "endOffset": 1349, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "c03fec9be82e19086bafd1736a8e7a26", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Lastname, J.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 0, - 1 - ], - "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", - "section": "[0, 1]: Paragraph: F. Lastname, J. Doe,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 68.5, - 416.5, - 60.276, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "F. ", - "textAfter": " Doe, M. Mustermann", - "startOffset": 54, - "endOffset": 66, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "3e3bacce051445765e02d6ee34c1e09b", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Michael N.", - "reason": "Author(s) found", - "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 4, - 2, - 0, - 6 - ], - "closestHeadline": "Rule 6-11 (Authors Table) ", - "section": "[4, 2, 0, 6]: Table_cell: Michael N.", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 141.2, - 343.5, - 47.197525, - 11.81175 - ], - "pageNumber": 2 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 1243, - "endOffset": 1253, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "678a43fc7b744b82c03942e7cc4b731c", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+81 764770164", - "reason": "Found after \"Tel.:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 327.06104, - 391.3, - 56.889008, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "2311 560 Tel.: ", - "textAfter": " Tel: +81 6653", - "startOffset": 6175, - "endOffset": 6188, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "f857a59cbdb48d3c00ee2540f7e693d1", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Doe, M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 0, - 1 - ], - "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", - "section": "[0, 1]: Paragraph: F. Lastname, J. Doe,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 131.776, - 416.5, - 39.684006, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "F. Lastname, J. ", - "textAfter": " Mustermann Lastname M.,", - "startOffset": 67, - "endOffset": 74, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "dd820dfa919a0dae39cc49a2444b880b", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Lei W. Huang", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 472.04813, - 589, - 66.98398, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Mah, Ning Liu, ", - "textAfter": ", Ru X.", - "startOffset": 3497, - "endOffset": 3509, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "d465dc8846e6e451127aad813d198998", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "7232 CX Warnsveld", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 2, - 2 - ], - "closestHeadline": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", - "section": "[2, 2]: Paragraph: Warnsveld, 7232 CX Warnsveld,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 113.787994, - 635, - 97.380005, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Warnsveld, ", - "textAfter": ", Netherlands, NL", - "startOffset": 511, - "endOffset": 528, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "e163a5a124dbb29f629d302a1599209b", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "18300 Saint-Satur, France, FR Lesdo Industries", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 2, - 2 - ], - "closestHeadline": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", - "section": "[2, 2]: Paragraph: Warnsveld, 7232 CX Warnsveld,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 179.16402, - 607.4, - 145.74007, - 12.642 - ], - "pageNumber": 2 - }, - { - "rectangle": [ - 56.8, - 593.6, - 79.548004, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Chem. des Varennes, ", - "textAfter": ", Chäppelisträssli, 6078", - "startOffset": 638, - "endOffset": 684, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ff9f4d1cc9e49f703802e6dd642c7608", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "food-industry@korea.com", - "reason": "Found after \"E-mail:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 1, - 1 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 1, 1]: Paragraph: Name: Soylent Corporation Contact", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 164.8, - 496.9, - 126.60005, - 12.642 - ], - "pageNumber": 6 - } - ], - "textBefore": "122 34180 E-mail: ", - "textAfter": " Contact: This is", - "startOffset": 5679, - "endOffset": 5702, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "3e498977fa126b4b86896d66cdf4f9ac", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Central Research Industry", - "reason": "Found after \"Contact point:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 362.22406, - 617.9, - 93.77109, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "Contact point: ", - "textAfter": " Phone: +49 2113", - "startOffset": 4707, - "endOffset": 4732, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "314c4bb851eda157b38754915e48c03e", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Chäppelisträssli, 6078 Lungern, Switzerland Shlissel'burgskaya Ulitsa, Nizhny Novgorod Oblast, Russia, 603034, RU Karl Johans Gate 11, 0154 Oslo, Norway", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 2, - 2 - ], - "closestHeadline": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", - "section": "[2, 2]: Paragraph: Warnsveld, 7232 CX Warnsveld,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 142.37201, - 593.6, - 213.51614, - 12.642 - ], - "pageNumber": 2 - }, - { - "rectangle": [ - 56.8, - 579.8, - 350.02808, - 12.642 - ], - "pageNumber": 2 - }, - { - "rectangle": [ - 56.8, - 566, - 197.44803, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "FR Lesdo Industries, ", - "textAfter": ", NOR ←", - "startOffset": 686, - "endOffset": 838, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "54ad7cf7287037d8f99aad99ed7a3afe", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+49 2113 2311 563", - "reason": "Found after \"Phone:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 335.98, - 607.6, - 69.68704, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "Research Industry Phone: ", - "textAfter": " Fax: +49 2113", - "startOffset": 4740, - "endOffset": 4757, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "a9bcc357ffb5b6ccc30aba1889146afc", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 203.90005, - 31.919994, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because case sensitive ", - "textAfter": " >99% ← not", - "startOffset": 8529, - "endOffset": 8536, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "c6be5277f5ee60dc3d83527798b7fe02", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dr. Alan Grant", - "reason": "AUTHOR(S) was found", - "matchedRule": "PII.9.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 17, - 2 - ], - "closestHeadline": "Rule 29/30/31/32: (additional) negative Test for Study completion dates ", - "section": "[17, 2]: Paragraph: Study Report___ AUTHOR(S): Dr.", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 236.8, - 182.90005, - 70.89604, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "Study Report___ AUTHOR(S): ", - "textAfter": "", - "startOffset": 7486, - "endOffset": 7500, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "02cabde4f6168c0d757c12da3c1c2c51", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 245.30002, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because additional symbols ", - "textAfter": " 45%aa ← should", - "startOffset": 8398, - "endOffset": 8405, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8eeb64168872f5e9689ccdba6029b07c", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 1432 8991", - "reason": "Found between contact keywords", - "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 364.03302, - 308.5, - 59.085022, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "+27414328992 Telephone No: ", - "textAfter": " Fax number: +274", - "startOffset": 6415, - "endOffset": 6429, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8ad9b84ea55b7237116f744275e4f4c3", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "example@mail.com", - "reason": "Found after \"E-mail address:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 367.21008, - 339.5, - 72.387085, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "maximiliamschmitt@t-online.de E-mail address: ", - "textAfter": " Contact: Maximiliam Schmitt", - "startOffset": 6325, - "endOffset": 6341, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5167dc654781f5b75fa7d32a6f65f3a9", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 1432 8933", - "reason": "Found after \"Phone No.\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 348.976, - 277.40002, - 59.085022, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "34223331 Phone No. ", - "textAfter": " Contact: 493 1223", - "startOffset": 6492, - "endOffset": 6506, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "05dc5e05fbb60b9367fab460653e8253", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+49 2113 2311 560", - "reason": "Found after \"Fax:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 326.98, - 401.6, - 69.68704, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "2311 563 Fax: ", - "textAfter": " Tel.: +81 764770164", - "startOffset": 6151, - "endOffset": 6168, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "f3032dc994f4997289f9ec4cd1392bf7", - "type": "CBI_address", - "entryType": "ENTITY", - "state": "SKIPPED", - "value": "Umbrella Corporation", - "reason": "PERFORMING LABORATORY was found for non vertebrate study", - "matchedRule": "CBI.20.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 18, - 2 - ], - "closestHeadline": "Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between ", - "section": "[18, 2]: Paragraph: Study Report___ PERFORMING LABORATORY:", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 236.8, - 605, - 106.16414, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "Report___ PERFORMING LABORATORY: ", - "textAfter": " LABORATORY PROJECT ID:", - "startOffset": 7750, - "endOffset": 7770, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "c769f7d3f6872f9e7b8e7858276852dd", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "gordonjcp@msn.com", - "reason": "Found by Email Regex", - "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 12, - 1 - ], - "closestHeadline": "Rule 21/22: Redact Emails by RegEx ", - "section": "[12, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 404.96823, - 305, - 103.308075, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "reprehenderit in voluptate ", - "textAfter": " velit esse cillum", - "startOffset": 4029, - "endOffset": 4046, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "da092064ce4267b3481029233e6806a5", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 355.7, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "should be Hint ", - "textAfter": " <45% ← should", - "startOffset": 7962, - "endOffset": 7969, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "e7be8631d7c8e89b31cbefe8f4dede05", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "PERFORMING LABORATORY", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 18, - 2 - ], - "closestHeadline": "Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between ", - "section": "[18, 2]: Paragraph: Study Report___ PERFORMING LABORATORY:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 605, - 170.66403, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "Study Report___ ", - "textAfter": ": Umbrella Corporation", - "startOffset": 7727, - "endOffset": 7748, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5b4211c51e72014a9e79ecfa836c3c39", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Maximiliam Schmitt", - "reason": "Found between contact keywords", - "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 341.44302, - 329.2, - 74.59213, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "address: example@mail.com Contact: ", - "textAfter": " Telephone number: +27414328992", - "startOffset": 6351, - "endOffset": 6369, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "3045501320a681b07a6033144b4ad9fc", - "type": "manual", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "David Ksenia", - "reason": "manual entries are applied by default, created by manual change", - "matchedRule": "MAN.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 2 - ], - "closestHeadline": "Rule 1/2: Redact CBI Authors based on Dict ", - "section": "[1, 2]: Paragraph: David Ksenia Max Mustermann", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 295.2, - 65.591995, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "", - "textAfter": " Max Mustermann Ranya", - "startOffset": 234, - "endOffset": 246, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 2, - "type": "ADDED", - "dateTime": "2023-10-16T13:34:03.801904836Z" - } - ], - "manualChanges": [ - { - "manualRedactionType": "ADD_LOCALLY", - "processedDate": "2023-10-16T13:34:16.281180842Z", - "requestedDate": "2023-10-16T13:33:58.295Z", - "userId": "57004e15-c169-4eeb-be07-2013570cad5d", - "propertyChanges": { - "value": "David Ksenia" - }, - "processed": true - } - ], - "engines": [], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "952877404d776391144b65a2fb763183", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Melanie", - "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": [ - 6, - 1 - ], - "closestHeadline": "Rule 14/15: Redact and add recommendation for et al. ", - "section": "[6, 1]: Paragraph: Redact Term “Desiree”, “Melanie”", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 214.66, - 442.5, - 39.300003, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "dolore magna aliqua ", - "textAfter": " et al. Reference", - "startOffset": 2191, - "endOffset": 2198, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "88dde91f922e251c9d4ea33fa5eef9ce", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 34223331", - "reason": "Found after \"Telephone:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 350.83902, - 287.8, - 56.79901, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "1432 8990 Telephone: ", - "textAfter": " Phone No. +274", - "startOffset": 6468, - "endOffset": 6481, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5a6f43d6456bfa98a2f355b7247128c3", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Riddley Scott Address: 359-21 Huam-dong Yongsan-gu", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 14, - 1, - 1 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 1, 1]: Paragraph: Name: Soylent Corporation Contact", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 164.8, - 579.7, - 65.59201, - 12.642 - ], - "pageNumber": 6 - }, - { - "rectangle": [ - 56.8, - 565.9, - 42.612003, - 12.642 - ], - "pageNumber": 6 - }, - { - "rectangle": [ - 164.8, - 565.9, - 94.28401, - 12.642 - ], - "pageNumber": 6 - }, - { - "rectangle": [ - 164.8, - 552.1, - 57.39601, - 12.642 - ], - "pageNumber": 6 - } - ], - "textBefore": "Corporation Contact point: ", - "textAfter": " Seoul, South Korea", - "startOffset": 5561, - "endOffset": 5611, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "aa8c23e1deef03e46eec3d1b4a46c330", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+82 122 34188", - "reason": "Found after \"Phone:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 1, - 1 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 1, 1]: Paragraph: Name: Soylent Corporation Contact", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 164.8, - 524.5, - 72.696, - 12.642 - ], - "pageNumber": 6 - } - ], - "textBefore": "South Korea Phone: ", - "textAfter": " Fax: +82 122", - "startOffset": 5638, - "endOffset": 5651, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "55b398ad77a7c9325c514307a073209e", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "maximiliamschmitt@arcor.de", - "reason": "Found after \"Email:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 334.94504, - 360.2, - 106.83017, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "E-mail: Seriknowmobil@co.uk Email: ", - "textAfter": " e-mail: maximiliamschmitt@t-online.de E-mail", - "startOffset": 6244, - "endOffset": 6270, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "304f631a0ac43b939a815e751457932a", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Cyberdyne Systems Tower Defense 121a Hong Kong", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 394.9, - 421.3, - 71.739044, - 10.981501 - ], - "pageNumber": 5 - }, - { - "rectangle": [ - 393.6, - 410.9, - 74.31302, - 10.981501 - ], - "pageNumber": 5 - }, - { - "rectangle": [ - 387.1, - 400.6, - 42.290985, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "Lockhart Alternative contact: ", - "textAfter": ", BT District", - "startOffset": 5245, - "endOffset": 5291, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "9d943df1cc7b8a32d26a286feb467657", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Reyhan B.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 1 - ], - "closestHeadline": "Rule 19/20: Redacted PII Personal Identification Information based on Dict ", - "section": "[11, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 104.392006, - 453.9, - 36.6, - 12.642 - ], - "pageNumber": 4 - }, - { - "rectangle": [ - 56.8, - 440.1, - 10.992001, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Nurullah Özgür U. ", - "textAfter": " Rahim C. J.", - "startOffset": 3748, - "endOffset": 3757, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "6b2b02af72591c516319e99b3891ce6f", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Hanke Mendel", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 432.0761, - 616.6, - 70.920044, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Madsen, Alexandra Häusler, ", - "textAfter": ", Ranya Eikenboom.", - "startOffset": 3296, - "endOffset": 3308, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "21b2e0c88de07d8bc39a42c8f37e7cc2", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "dinther@comcast.net", - "reason": "Found by Email Regex", - "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 12, - 1 - ], - "closestHeadline": "Rule 21/22: Redact Emails by RegEx ", - "section": "[12, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 333.89212, - 291.2, - 101.98816, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "pariatur. Excepteur sint ", - "textAfter": " occaecat cupidatat non", - "startOffset": 4113, - "endOffset": 4132, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "b3ceefd47d497bfd156d48518fdd6962", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Nomi, Ishikawa 923-1101, Japan", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 1 - ], - "closestHeadline": "Rule 19/20: Redacted PII Personal Identification Information based on Dict ", - "section": "[11, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 150.376, - 481.5, - 158.43607, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "No Naka-27 Aomachi, ", - "textAfter": ", JP Sude", - "startOffset": 3683, - "endOffset": 3713, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "887d8edc28218c38d143e8c1a1bbd427", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "European Central Institute", - "reason": "Found after \"European contact:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 376.09305, - 452.3, - 94.86011, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "4592 European contact: ", - "textAfter": " Alternative contact: Emilia", - "startOffset": 5160, - "endOffset": 5186, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "c3bb7486b933d2ab3760be4e93ca71bd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Asya Lyon", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 199.75601, - 616.6, - 52.29602, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Geiger, Julian Ritter, ", - "textAfter": ", Carina Madsen,", - "startOffset": 3251, - "endOffset": 3260, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "27552e39984db453385503a8d63674e4", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "18000 Bourges, France", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 2, - 2 - ], - "closestHeadline": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", - "section": "[2, 2]: Paragraph: Warnsveld, 7232 CX Warnsveld,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 247.924, - 621.2, - 111.39607, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Rue Jean Baffier, ", - "textAfter": ", FR 4-6", - "startOffset": 588, - "endOffset": 609, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "9ec6418f3d3b2603fa8152a545fc265d", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Müller", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 2 - ], - "closestHeadline": "Rule 41/42: Redact Signatures ", - "section": "[22, 2]: Paragraph: __________________________ __________________________ Signed by:", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 397.98404, - 456.3, - 32.676025, - 12.642 - ], - "pageNumber": 9 - } - ], - "textBefore": "Signed by: Tobias ", - "textAfter": "", - "startOffset": 9121, - "endOffset": 9127, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "e36256dc02fd8b760c11991866a645c3", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "maximiliamschmitt@arcor.de", - "reason": "Found after \"Email:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 334.94504, - 555.8, - 106.83017, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "E-mail: Seriknowmobil@co.uk Email: ", - "textAfter": " e-mail: maximiliamschmitt@t-online.de E-mail", - "startOffset": 4856, - "endOffset": 4882, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8363da993a73f5d4a6ce0b5867b884d8", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "APPLIED", - "value": "Melanie", - "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": [ - 6, - 1 - ], - "closestHeadline": "Rule 14/15: Redact and add recommendation for et al. ", - "section": "[6, 1]: Paragraph: Redact Term “Desiree”, “Melanie”", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 162.12, - 469.7, - 32.710007, - 11.535 - ], - "pageNumber": 3 - } - ], - "textBefore": "Term “Desiree”, “", - "textAfter": "” and add", - "startOffset": 1976, - "endOffset": 1983, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ef6bb0f1cf37de71498403aa46a9d09e", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 1432 8991", - "reason": "Found between contact keywords", - "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 364.03302, - 504.1, - 59.085022, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "+27414328992 Telephone No: ", - "textAfter": " Fax number: +274", - "startOffset": 5027, - "endOffset": 5041, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "3d104b66a0417d63b41d4b97e57cb181", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "This is a special case, everything between this and the next keyword should be redacted", - "reason": "Found between contact keywords", - "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 1, - 1 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 1, 1]: Paragraph: Name: Soylent Corporation Contact", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 164.8, - 483.1, - 282.74426, - 12.642 - ], - "pageNumber": 6 - }, - { - "rectangle": [ - 164.8, - 469.3, - 134.86809, - 12.642 - ], - "pageNumber": 6 - } - ], - "textBefore": "E-mail: food-industry@korea.com Contact: ", - "textAfter": " Tel.: +275 5678", - "startOffset": 5712, - "endOffset": 5799, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "2032f9f45093b8ff3d01c6bdafed2823", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Qiang Suen", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 303.80798, - 589, - 56.28006, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "K., Tu Wong, ", - "textAfter": ", Zhou Mah,", - "startOffset": 3465, - "endOffset": 3475, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "e74a327e7ef8c2c89fb3a358a3ca7448", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Jill Valentine Address: 359-21 Huam-dong Yongsan-gu", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 15, - 3 - ], - "closestHeadline": "Rule 27/28: Redact contact Information (contains Producer) ", - "section": "[15, 3]: Paragraph: Name: Umbrella Corporation Contact:", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 128.8, - 584.3, - 62.676025, - 12.642 - ], - "pageNumber": 7 - }, - { - "rectangle": [ - 56.8, - 570.5, - 42.612003, - 12.642 - ], - "pageNumber": 7 - }, - { - "rectangle": [ - 128.8, - 570.5, - 94.28401, - 12.642 - ], - "pageNumber": 7 - }, - { - "rectangle": [ - 128.8, - 556.7, - 57.39601, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "Umbrella Corporation Contact: ", - "textAfter": " Seoul, South Korea", - "startOffset": 6931, - "endOffset": 6982, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8895a45f5cc1c9a0903ce80eb1d860f9", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Alfred Xinyi Y.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 1 - ], - "closestHeadline": "Rule 19/20: Redacted PII Personal Identification Information based on Dict ", - "section": "[11, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 80.788, - 426.3, - 31.284004, - 12.642 - ], - "pageNumber": 4 - }, - { - "rectangle": [ - 56.8, - 412.5, - 39.99599, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Rahim C. J. ", - "textAfter": " Tao Clara Siegfried", - "startOffset": 3770, - "endOffset": 3785, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8275f366212e19c10e59102005497ed3", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "library@outlook.com", - "reason": "Found by Email Regex", - "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 12, - 1 - ], - "closestHeadline": "Rule 21/22: Redact Emails by RegEx ", - "section": "[12, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 171.748, - 305, - 103.296036, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "irure dolor in ", - "textAfter": " reprehenderit in voluptate", - "startOffset": 3982, - "endOffset": 4001, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ad65637f91f57c6abd471c1732773864", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+82 122 34180", - "reason": "Found after \"Fax:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 15, - 3 - ], - "closestHeadline": "Rule 27/28: Redact contact Information (contains Producer) ", - "section": "[15, 3]: Paragraph: Name: Umbrella Corporation Contact:", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 128.8, - 515.3, - 72.696, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "122 34188 Fax: ", - "textAfter": " E-mail: pharma-industry@korea.com", - "startOffset": 7028, - "endOffset": 7041, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "d9dd98321a8eab4f5560eb62fc0f8429", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "kawasaki@me.com", - "reason": "Found by Email Regex", - "matchedRule": "PII.1.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 12, - 1 - ], - "closestHeadline": "Rule 21/22: Redact Emails by RegEx ", - "section": "[12, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 138.06398, - 277.40002, - 93.99602, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "proident, sunt in ", - "textAfter": " culpa qui officia", - "startOffset": 4174, - "endOffset": 4189, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ce328c9ba82daa2977829f78aafdf024", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Desiree", - "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": [ - 6, - 1 - ], - "closestHeadline": "Rule 14/15: Redact and add recommendation for et al. ", - "section": "[6, 1]: Paragraph: Redact Term “Desiree”, “Melanie”", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 324.28015, - 456.3, - 36.57602, - 12.642 - ], - "pageNumber": 3 - } - ], - "textBefore": "consectetur adipiscing elit ", - "textAfter": " et al sed", - "startOffset": 2111, - "endOffset": 2118, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "6d18fbfeba0f27ba28c3f1ff4c4cbb26", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 369.5, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "Test Item: Soda ", - "textAfter": " 45% ← should", - "startOffset": 7933, - "endOffset": 7940, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "68a69b1086ff83507afdc9973050c570", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+275 5678 1234 132", - "reason": "Found after \"Tel.:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 1, - 1 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 1, 1]: Paragraph: Name: Soylent Corporation Contact", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 164.8, - 455.5, - 99.696, - 12.642 - ], - "pageNumber": 6 - } - ], - "textBefore": "be redacted Tel.: ", - "textAfter": "", - "startOffset": 5806, - "endOffset": 5824, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "2a21ba8f8b4f4b9f7556860c483bf2a8", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+81 764770164", - "reason": "Found after \"Tel.:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 327.06104, - 586.9, - 56.889008, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "2311 560 Tel.: ", - "textAfter": " Tel: +81 6653", - "startOffset": 4787, - "endOffset": 4800, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "2ba37a4b924d804783bcc065fc26943a", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Maximiliam Schmitt", - "reason": "Found between contact keywords", - "matchedRule": "PII.6.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 341.44302, - 524.8, - 74.59213, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "address: example@mail.com Contact: ", - "textAfter": " Telephone number: +27414328992", - "startOffset": 4963, - "endOffset": 4981, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "007239e6b9a1bae07ea98a0c940ebf5f", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 259.1, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because additional symbols ", - "textAfter": " aa45% ← should", - "startOffset": 8336, - "endOffset": 8343, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "c3443c378292c1f18a0a882a3ad65715", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "NL Institut Industries, 33", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 2, - 2 - ], - "closestHeadline": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", - "section": "[2, 2]: Paragraph: Warnsveld, 7232 CX Warnsveld,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 281.14, - 635, - 16.007996, - 12.642 - ], - "pageNumber": 2 - }, - { - "rectangle": [ - 56.8, - 621.2, - 102.239975, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "CX Warnsveld, Netherlands, ", - "textAfter": " Rue Jean Baffier,", - "startOffset": 543, - "endOffset": 569, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "17b1c827c875d72ed934eb88219ba904", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Carina Madsen", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 258.05203, - 616.6, - 72.87604, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Ritter, Asya Lyon, ", - "textAfter": ", Alexandra Häusler,", - "startOffset": 3262, - "endOffset": 3275, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "661d1913e4be05be89d18d9b92b33825", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Rue Jean Baffier", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 2, - 2 - ], - "closestHeadline": "Rule 3/4: Redact (not) CBI Add/ress based on Dict ", - "section": "[2, 2]: Paragraph: Warnsveld, 7232 CX Warnsveld,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 162.03998, - 621.2, - 80.37602, - 12.642 - ], - "pageNumber": 2 - } - ], - "textBefore": "Institut Industries, 33 ", - "textAfter": ", 18000 Bourges,", - "startOffset": 570, - "endOffset": 586, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "98777500e5819deb966266ec171bf7dc", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Zhou Mah", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 366.17206, - 589, - 50.292023, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Wong, Qiang Suen, ", - "textAfter": ", Ning Liu,", - "startOffset": 3477, - "endOffset": 3485, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "121fce5cdda0855399ba9a480d92b6fe", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Kwok, Jun K.", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 181.35999, - 589, - 66.66, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "est laborum. Min ", - "textAfter": ", Tu Wong,", - "startOffset": 3442, - "endOffset": 3454, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "26fce1c738497c52bffaffddc56d5546", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Alexandra Häusler", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 336.31607, - 616.6, - 90.252045, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Lyon, Carina Madsen, ", - "textAfter": ", Hanke Mendel,", - "startOffset": 3277, - "endOffset": 3294, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "af56963d342febdf5208ec447ed84ed9", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+49 2113 2311 563", - "reason": "Found after \"Phone:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 335.98, - 412, - 69.68704, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "Research Industry Phone: ", - "textAfter": " Fax: +49 2113", - "startOffset": 6128, - "endOffset": 6145, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "7b0ab610a2bc0e3903288676378e6787", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+82 122 34180", - "reason": "Found after \"Fax:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 1, - 1 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 1, 1]: Paragraph: Name: Soylent Corporation Contact", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 164.8, - 510.7, - 72.696, - 12.642 - ], - "pageNumber": 6 - } - ], - "textBefore": "122 34188 Fax: ", - "textAfter": " E-mail: food-industry@korea.com Contact:", - "startOffset": 5657, - "endOffset": 5670, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "3854927261dc227bf4592387eaabe0dd", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Ru X.", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 575.2, - 28.596004, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Lei W. Huang, ", - "textAfter": " Wu", - "startOffset": 3511, - "endOffset": 3516, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "a04f643706b72675d07959222a824463", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+49 2113 2311 560", - "reason": "Found after \"Fax:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 326.98, - 597.2, - 69.68704, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "2311 563 Fax: ", - "textAfter": " Tel.: +81 764770164", - "startOffset": 4763, - "endOffset": 4780, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "2cd7fc82fd708c384ad126b41ec422a2", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 1432 8933", - "reason": "Found after \"Phone No.\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 348.976, - 473, - 59.085022, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "34223331 Phone No. ", - "textAfter": " Contact: 493 1223", - "startOffset": 5104, - "endOffset": 5118, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "4be6e95bea7d614dca6434e09763fbcd", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Doe J.", - "reason": "Author found", - "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 0, - 1 - ], - "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", - "section": "[0, 1]: Paragraph: F. Lastname, J. Doe,", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 126.076, - 402.7, - 30.58799, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "Mustermann Lastname M., ", - "textAfter": " Mustermann M.", - "startOffset": 99, - "endOffset": 105, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER", - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "47df975a386a7e43d0fa14820b413a37", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "example@mail.com", - "reason": "Found after \"E-mail address:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 367.21008, - 535.1, - 72.387085, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "maximiliamschmitt@t-online.de E-mail address: ", - "textAfter": " Contact: Maximiliam Schmitt", - "startOffset": 4937, - "endOffset": 4953, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5095b6e325be0b6adc3990c4dac4bd20", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Central Research Industry", - "reason": "Found after \"Contact point:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 362.22406, - 422.3, - 93.77109, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "Contact point: ", - "textAfter": " Phone: +49 2113", - "startOffset": 6095, - "endOffset": 6120, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ffba177bdf2b23748e6b8f03f2b5c378", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "European Central Institute", - "reason": "Found after \"European contact:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 376.09305, - 256.7, - 94.86011, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "4592 European contact: ", - "textAfter": " Alternative contact: Emilia", - "startOffset": 6548, - "endOffset": 6574, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "a9f30b6bd9fbaef315b93c1b0bdf7dd8", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Cyberdyne Systems Tower Defense 121a Hong Kong", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 394.9, - 225.70001, - 71.739044, - 10.981501 - ], - "pageNumber": 6 - }, - { - "rectangle": [ - 393.6, - 215.29999, - 74.31302, - 10.981501 - ], - "pageNumber": 6 - }, - { - "rectangle": [ - 387.1, - 205, - 42.290985, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "Lockhart Alternative contact: ", - "textAfter": ", BT District", - "startOffset": 6633, - "endOffset": 6679, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "abbabbbe6bab2ca96040b184dc3a5169", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Mustermann Lastname M.", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 0, - 1 - ], - "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", - "section": "[0, 1]: Paragraph: F. Lastname, J. Doe,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 174.46, - 416.5, - 60.576004, - 12.642 - ], - "pageNumber": 1 - }, - { - "rectangle": [ - 56.8, - 402.7, - 63.275997, - 12.642 - ], - "pageNumber": 1 - } - ], - "textBefore": "J. Doe, M. ", - "textAfter": ", Doe J.", - "startOffset": 75, - "endOffset": 97, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "a34b7b45173867b320d969e59e563141", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 1432 8990", - "reason": "Found after \"Fax number:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 356.75204, - 493.7, - 58.995026, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "8991 Fax number: ", - "textAfter": " Telephone: +274 34223331", - "startOffset": 5054, - "endOffset": 5068, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "590f1d6adfb6dfcdd6964371887a5f30", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+81 6653 44563", - "reason": "Found after \"Tel:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 324.86502, - 380.9, - 59.085022, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "+81 764770164 Tel: ", - "textAfter": " E-mail: Seriknowmobil@co.uk Email:", - "startOffset": 6194, - "endOffset": 6208, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "462f491d2dce257982e75dfc70469839", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 272.90002, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because additional symbols ", - "textAfter": " 45% aa ←", - "startOffset": 8273, - "endOffset": 8280, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "9cb9ed7fa659e159773cd98c877f64b5", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Tu Wong", - "reason": "Published Information found in section", - "matchedRule": "CBI.7.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 2 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 2]: Paragraph: Iakovos Geiger, Julian Ritter,", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 253.816, - 589, - 43.99199, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "Kwok, Jun K., ", - "textAfter": ", Qiang Suen,", - "startOffset": 3456, - "endOffset": 3463, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [ - "57efdca78517cd27e69c58b4937223c9" - ], - "importedRedactionIntersections": [] - }, - { - "id": "f1f149ee406dbe6d1be6d6ed2baec479", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "pharma-industry@korea.com", - "reason": "Found after \"E-mail:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 15, - 3 - ], - "closestHeadline": "Rule 27/28: Redact contact Information (contains Producer) ", - "section": "[15, 3]: Paragraph: Name: Umbrella Corporation Contact:", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 128.8, - 501.5, - 140.59203, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "122 34180 E-mail: ", - "textAfter": "", - "startOffset": 7050, - "endOffset": 7075, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5c4f162056016991d607139c3ce83fd9", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 341.9, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "should be Hint ", - "textAfter": " >45% ← should", - "startOffset": 7992, - "endOffset": 7999, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8a608a02e03bd4c1d441b7848e108883", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 1432 8990", - "reason": "Found after \"Fax number:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 356.75204, - 298.1, - 58.995026, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "8991 Fax number: ", - "textAfter": " Telephone: +274 34223331", - "startOffset": 6442, - "endOffset": 6456, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "7d304a6da1463a7139c667ede1b730f3", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Emilia Lockhart", - "reason": "Found after \"Alternative contact:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 382.0601, - 442, - 58.69806, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "Institute Alternative contact: ", - "textAfter": " Alternative contact: Cyberdyne", - "startOffset": 5208, - "endOffset": 5223, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "695522182862f98156788ddd2954aff4", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+27414328992", - "reason": "Found after \"Telephone number:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 380.51205, - 514.4, - 54.593994, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "Schmitt Telephone number: ", - "textAfter": " Telephone No: +274", - "startOffset": 5000, - "endOffset": 5012, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "26cb6b8ff4acf9ea301e8813e40ad658", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+274 34223331", - "reason": "Found after \"Telephone:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 350.83902, - 483.4, - 56.79901, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "1432 8990 Telephone: ", - "textAfter": " Phone No. +274", - "startOffset": 5080, - "endOffset": 5093, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ca73940817b2f1dd5e85282623a5fff7", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+27414328992", - "reason": "Found after \"Telephone number:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 380.51205, - 318.8, - 54.593994, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "Schmitt Telephone number: ", - "textAfter": " Telephone No: +274", - "startOffset": 6388, - "endOffset": 6400, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "7d97630c0c76c9c39789ad81478a40b6", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "493 1223 4592", - "reason": "Found after \"Contact:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 341.44302, - 267.09998, - 53.991028, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "1432 8933 Contact: ", - "textAfter": " European contact: European", - "startOffset": 6516, - "endOffset": 6529, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8d7c25fd198ffc240787ac76663536c0", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 314.3, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "is not possible ", - "textAfter": " =>45% ← should", - "startOffset": 8086, - "endOffset": 8093, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "9127c945998923ae7b6f6a590e30c243", - "type": "CBI_address", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Umbrella Corporation", - "reason": "PERFORMING LABORATORY was found for non vertebrate study", - "matchedRule": "CBI.20.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 15, - 3 - ], - "closestHeadline": "Rule 27/28: Redact contact Information (contains Producer) ", - "section": "[15, 3]: Paragraph: Name: Umbrella Corporation Contact:", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 128.8, - 598.1, - 106.16403, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "Name: ", - "textAfter": " Contact: Jill Valentine", - "startOffset": 6901, - "endOffset": 6921, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5c4f91eff023d0628d7406941a821a74", - "type": "CBI_author", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Feuer A.", - "reason": "Author(s) found", - "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 4, - 2, - 0, - 16 - ], - "closestHeadline": "Rule 6-11 (Authors Table) ", - "section": "[4, 2, 0, 16]: Table_cell: Feuer A.", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 146.8, - 284, - 36.193512, - 11.81175 - ], - "pageNumber": 2 - } - ], - "textBefore": "", - "textAfter": "", - "startOffset": 1432, - "endOffset": 1440, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "d2d36dec03ec135f3d53d20c65494791", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+81 6653 44563", - "reason": "Found after \"Tel:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 324.86502, - 576.5, - 59.085022, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "+81 764770164 Tel: ", - "textAfter": " E-mail: Seriknowmobil@co.uk Email:", - "startOffset": 4806, - "endOffset": 4820, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "7178cec9462a3b3498b1e6356f75abd5", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Dr. Alan Grant", - "reason": "AUTHOR(S) was found", - "matchedRule": "PII.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 16, - 2 - ], - "closestHeadline": "Rule 29/30/31/32: If Text contains \"AUTHORS:\" and \"COMPLETION DATES\" but not \"STUDY COMPLETION DATES\", then Redact between both ", - "section": "[16, 2]: Paragraph: Study Report___ AUTHOR(S): Dr.", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 200.8, - 334, - 70.89604, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "Study Report___ AUTHOR(S): ", - "textAfter": "", - "startOffset": 7302, - "endOffset": 7316, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "5b347cc95c9728dde3a972172433fd8d", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 286.7, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because additional symbols ", - "textAfter": " aa 45% ←", - "startOffset": 8210, - "endOffset": 8217, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "f7dffc84f5498600487aed935d705d34", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 328.1, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "should be Hint ", - "textAfter": " 101% ← should", - "startOffset": 8022, - "endOffset": 8029, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "f08f036114bf3198eaa5ddfc0b5f1c60", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "+82 122 34188", - "reason": "Found after \"Phone:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 15, - 3 - ], - "closestHeadline": "Rule 27/28: Redact contact Information (contains Producer) ", - "section": "[15, 3]: Paragraph: Name: Umbrella Corporation Contact:", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 128.8, - 529.1, - 72.696, - 12.642 - ], - "pageNumber": 7 - } - ], - "textBefore": "South Korea Phone: ", - "textAfter": " Fax: +82 122", - "startOffset": 7009, - "endOffset": 7022, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "57efdca78517cd27e69c58b4937223c9", - "type": "published_information", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Oxford University Press", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 10, - 1 - ], - "closestHeadline": "Rule 18: Do not redact Names and Addresses if Published Information found ", - "section": "[10, 1]: Paragraph: Do not redact Names", - "color": [ - 0.52156866, - 0.92156863, - 1 - ], - "positions": [ - { - "rectangle": [ - 193.03601, - 644.2, - 116.50806, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "dolor sit amet ", - "textAfter": " in voluptate velit", - "startOffset": 3164, - "endOffset": 3187, - "imageHasTransparency": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "0bec8fc6f1ef7b61c3bc4bc4c9d093aa", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 190.1, - 31.919994, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because case sensitive ", - "textAfter": " <99% ← not", - "startOffset": 8576, - "endOffset": 8583, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "65a4c57509b098b6fd8224a0c816f5b3", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Seriknowmobil@co.uk", - "reason": "Found after \"E-mail:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 337.94205, - 566.2, - 83.52905, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "6653 44563 E-mail: ", - "textAfter": " Email: maximiliamschmitt@arcor.de e-mail:", - "startOffset": 4829, - "endOffset": 4848, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "52122cb7209009e45eec2dd65faec2d2", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "maximiliamschmitt@t-online.de", - "reason": "Found after \"e-mail:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 336.43906, - 545.5, - 116.82919, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "Email: maximiliamschmitt@arcor.de e-mail: ", - "textAfter": " E-mail address: example@mail.com", - "startOffset": 4891, - "endOffset": 4920, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "ad9b7bd229cb2ff9e2074a062f4ba06c", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "Purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 300.5, - 32.603992, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "because additional symbols ", - "textAfter": " =<45% ← should", - "startOffset": 8148, - "endOffset": 8155, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "67eb808fb747e3658979d852159cbdee", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "493 1223 4592", - "reason": "Found after \"Contact:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 13, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 23/24: Redact contact information (contains \"Contact point:\") ", - "section": "[13, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 341.44302, - 462.7, - 53.991028, - 10.981501 - ], - "pageNumber": 5 - } - ], - "textBefore": "1432 8933 Contact: ", - "textAfter": " European contact: European", - "startOffset": 5128, - "endOffset": 5141, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "9e7bc61babf818dd547c7b0fada0b350", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "maximiliamschmitt@t-online.de", - "reason": "Found after \"e-mail:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 336.43906, - 349.9, - 116.82919, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "Email: maximiliamschmitt@arcor.de e-mail: ", - "textAfter": " E-mail address: example@mail.com", - "startOffset": 6279, - "endOffset": 6308, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "8673a0ff8a79189c5ad6a1b78228c837", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Emilia Lockhart", - "reason": "Found after \"Alternative contact:\" contact keyword", - "matchedRule": "PII.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 382.0601, - 246.40002, - 58.69806, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "Institute Alternative contact: ", - "textAfter": " Alternative contact: Cyberdyne", - "startOffset": 6596, - "endOffset": 6611, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "504cc7794e8e0adf04d9c33ad386e7a2", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "APPLIED", - "value": "Desiree", - "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": [ - 6, - 1 - ], - "closestHeadline": "Rule 14/15: Redact and add recommendation for et al. ", - "section": "[6, 1]: Paragraph: Redact Term “Desiree”, “Melanie”", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 115.27, - 469.7, - 30.700005, - 11.535 - ], - "pageNumber": 3 - } - ], - "textBefore": "Redact Term “", - "textAfter": "”, “Melanie” and", - "startOffset": 1965, - "endOffset": 1972, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "c665024f7cdd8c03cb61879f671bc564", - "type": "CBI_author", - "entryType": "RECOMMENDATION", - "state": "SKIPPED", - "value": "Nurullah Özgür", - "reason": "", - "matchedRule": "", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 11, - 1 - ], - "closestHeadline": "Rule 19/20: Redacted PII Personal Identification Information based on Dict ", - "section": "[11, 1]: Paragraph: Redact when Vertebrate Study", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "rectangle": [ - 118.768, - 467.7, - 42.58802, - 12.642 - ], - "pageNumber": 4 - }, - { - "rectangle": [ - 56.8, - 453.9, - 29.988003, - 12.642 - ], - "pageNumber": 4 - } - ], - "textBefore": "JP Sude Halide ", - "textAfter": " U. Reyhan B.", - "startOffset": 3730, - "endOffset": 3744, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "NER" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "e68617fda2c6e1efcae4000a04d9410d", - "type": "PII", - "entryType": "ENTITY", - "state": "APPLIED", - "value": "Seriknowmobil@co.uk", - "reason": "Found after \"E-mail:\" contact keyword", - "matchedRule": "PII.4.1", - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)", - "imported": false, - "containingNodeId": [ - 14, - 2, - 0, - 3 - ], - "closestHeadline": "Rule 25/26: Redact contact information (contains \"Applicant\" as Headline or Text) ", - "section": "[14, 2, 0, 3]: Table_cell: Contact point: Central Research", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 337.94205, - 370.6, - 83.52905, - 10.981501 - ], - "pageNumber": 6 - } - ], - "textBefore": "6653 44563 E-mail: ", - "textAfter": " Email: maximiliamschmitt@arcor.de e-mail:", - "startOffset": 6217, - "endOffset": 6236, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "d7874746cbe773ae8cec33b6f92b9ca9", - "type": "hint_only", - "entryType": "HINT", - "state": "SKIPPED", - "value": "purity:", - "reason": "hint only", - "matchedRule": "ETC.0.0", - "legalBasis": "", - "imported": false, - "containingNodeId": [ - 20, - 2 - ], - "closestHeadline": "Rule 39: Purity Hint ", - "section": "[20, 2]: Paragraph: Test Item: Soda Purity:", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "rectangle": [ - 56.8, - 217.70004, - 31.919994, - 12.642 - ], - "pageNumber": 8 - } - ], - "textBefore": "symbols Product-Code: EAK-L443 ", - "textAfter": " 99% ← not", - "startOffset": 8483, - "endOffset": 8490, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [ - "RULE" - ], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "aa4998f9f3418380acf643578529be00", - "type": "logo", - "entryType": "IMAGE", - "state": "APPLIED", - "value": "Image:Logo", - "reason": "Logo Found", - "matchedRule": "ETC.3.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 1, - 3 - ], - "closestHeadline": "Rule 1/2: Redact CBI Authors based on Dict ", - "section": "[1]: Section: Rule 1/2: Redact CBI", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 177, - 470, - 258, - 237 - ], - "pageNumber": 1 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "90773d6509cedfcc7131235325d510e6", - "type": "signature", - "entryType": "IMAGE", - "state": "APPLIED", - "value": "Image:Signature", - "reason": "Signature Found", - "matchedRule": "ETC.2.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 21, - 3 - ], - "closestHeadline": "Rule 40: Ignore Dossier-Redaction if Confidentiality is not set ", - "section": "[21]: Section: Rule 40: Ignore Dossier-Redaction", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 68, - 472, - 139, - 61 - ], - "pageNumber": 9 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - }, - { - "analysisNumber": 2, - "type": "CHANGED", - "dateTime": "2023-10-16T13:34:03.801904836Z" - }, - { - "analysisNumber": 3, - "type": "CHANGED", - "dateTime": "2023-10-16T13:34:16.307926005Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "6c1fea09a2ccdca17cf7c9d903ae781e", - "type": "signature", - "entryType": "IMAGE", - "state": "APPLIED", - "value": "Image:Signature", - "reason": "Signature Found", - "matchedRule": "ETC.2.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 21, - 4 - ], - "closestHeadline": "Rule 40: Ignore Dossier-Redaction if Confidentiality is not set ", - "section": "[21]: Section: Rule 40: Ignore Dossier-Redaction", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 319, - 471, - 157, - 73 - ], - "pageNumber": 9 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - }, - { - "analysisNumber": 2, - "type": "CHANGED", - "dateTime": "2023-10-16T13:34:03.801904836Z" - }, - { - "analysisNumber": 3, - "type": "CHANGED", - "dateTime": "2023-10-16T13:34:16.307926005Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [] - }, - { - "id": "92c8f8d848e734c10c1376b4a97b7b26", - "type": "logo", - "entryType": "IMAGE", - "state": "APPLIED", - "value": "Image:Logo", - "reason": "Logo Found", - "matchedRule": "ETC.3.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "imported": false, - "containingNodeId": [ - 22, - 3 - ], - "closestHeadline": "Rule 41/42: Redact Signatures ", - "section": "[22]: Section: Rule 41/42: Redact Signatures", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "rectangle": [ - 186, - 217, - 198, - 142 - ], - "pageNumber": 9 - } - ], - "textBefore": null, - "textAfter": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "excluded": false, - "changes": [ - { - "analysisNumber": 1, - "type": "ADDED", - "dateTime": "2023-10-16T13:31:47.467630673Z" - }, - { - "analysisNumber": 2, - "type": "CHANGED", - "dateTime": "2023-10-16T13:34:03.801904836Z" - }, - { - "analysisNumber": 3, - "type": "CHANGED", - "dateTime": "2023-10-16T13:34:16.307926005Z" - } - ], - "manualChanges": [], - "engines": [], - "reference": [], - "importedRedactionIntersections": [] - } - ], - "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-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithParagraphIdx.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithParagraphIdx.json index 29a2380..5d066c5 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithParagraphIdx.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithParagraphIdx.json @@ -116,7 +116,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -221,7 +221,7 @@ "value": "Maximiliam Schmitt", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -275,7 +275,7 @@ "value": "food-industry@korea.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -328,7 +328,7 @@ "value": "gordonjcp@msn.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -380,7 +380,7 @@ "value": "Ranya Eikenboom", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -432,7 +432,7 @@ "value": "maximiliamschmitt@t-online.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -486,7 +486,7 @@ "value": "Siegfried", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -538,7 +538,7 @@ "value": "+81 764770164", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -592,7 +592,7 @@ "value": "Doe J.", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -724,7 +724,7 @@ "value": "+274 1432 8933", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -778,7 +778,7 @@ "value": "Xinyi Y. Tao", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -830,7 +830,7 @@ "value": "+274 1432 8933", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -884,7 +884,7 @@ "value": "+27414328992", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -938,7 +938,7 @@ "value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -990,7 +990,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -1042,7 +1042,7 @@ "value": "+274 34223331", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1148,7 +1148,7 @@ "value": "CTL/with dictionary entry 1234 with Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -1200,7 +1200,7 @@ "value": "+274 1432 8991", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1306,7 +1306,7 @@ "value": "+82 122 34180", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -1359,7 +1359,7 @@ "value": "David Ksenia", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -1411,7 +1411,7 @@ "value": "Schmitt", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -1463,7 +1463,7 @@ "value": "Emilia Lockhart", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -1571,7 +1571,7 @@ "value": "+82 122 34180", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -1623,7 +1623,7 @@ "value": "maximiliamschmitt@t-online.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1677,7 +1677,7 @@ "value": "Seriknowmobil@co.uk", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1731,7 +1731,7 @@ "value": "Özgür U. Reyhan", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -1783,7 +1783,7 @@ "value": "Central Research Industry", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1837,7 +1837,7 @@ "value": "+81 6653 44563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1891,7 +1891,7 @@ "value": "+81 6653 44563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2053,7 +2053,7 @@ "value": "+274 1432 8990", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2107,7 +2107,7 @@ "value": "Central Research Industry", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2215,7 +2215,7 @@ "value": "Dr. Alan Grant", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 15, @@ -2346,7 +2346,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -2404,7 +2404,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -2462,7 +2462,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -2520,7 +2520,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3334,7 +3334,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3536,7 +3536,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3594,7 +3594,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3652,7 +3652,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3737,7 +3737,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3795,7 +3795,7 @@ "value": "CTL with dictionary entry 5678 without Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -3847,7 +3847,7 @@ "value": "Riddley Scott", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -3900,7 +3900,7 @@ "value": "library@outlook.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -3952,7 +3952,7 @@ "value": "Maximiliam Schmitt", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4006,7 +4006,7 @@ "value": "example@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4060,7 +4060,7 @@ "value": "Jill Valentine", "reason": "Found after \"Contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -4112,7 +4112,7 @@ "value": "Kong", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4220,7 +4220,7 @@ "value": "493 1223 4592", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4382,7 +4382,7 @@ "value": "example@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4436,7 +4436,7 @@ "value": "+49 2113 2311 563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4544,7 +4544,7 @@ "value": "+49 2113 2311 563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4598,7 +4598,7 @@ "value": "Emilia Lockhart", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4652,7 +4652,7 @@ "value": "Max Mustermann", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -4756,7 +4756,7 @@ "value": "maximiliamschmitt@arcor.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4864,7 +4864,7 @@ "value": "+274 1432 8991", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4918,7 +4918,7 @@ "value": "kawasaki@me.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -4970,7 +4970,7 @@ "value": "Seriknowmobil@co.uk", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5024,7 +5024,7 @@ "value": "This is a special case, everything between this and the next keyword should be redacted", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5086,7 +5086,7 @@ "value": "Feuer A.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -5247,7 +5247,7 @@ "value": "+275 5678 1234 132", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5458,7 +5458,7 @@ "value": "Sude Halide Nurullah", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -5510,7 +5510,7 @@ "value": "Key", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -5616,7 +5616,7 @@ "value": "Funnarie B.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -5671,7 +5671,7 @@ "value": "European Central Institute", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5725,7 +5725,7 @@ "value": "+274 1432 8990", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -5779,7 +5779,7 @@ "value": "+274 34223331", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5833,7 +5833,7 @@ "value": "dinther@comcast.net", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -5885,7 +5885,7 @@ "value": "M. Mustermann", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -5989,7 +5989,7 @@ "value": "Charalampos Schenk", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -6041,7 +6041,7 @@ "value": "BL with dictionary entry 5678 without Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -6093,7 +6093,7 @@ "value": "+27414328992", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6147,7 +6147,7 @@ "value": "+82 122 34188", "reason": "Found after \"Phone:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -6251,7 +6251,7 @@ "value": "+81 764770164", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6305,7 +6305,7 @@ "value": "+82 122 34188", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -6358,7 +6358,7 @@ "value": "Michael N.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -6413,7 +6413,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -6465,7 +6465,7 @@ "value": "493 1223 4592", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -6582,7 +6582,7 @@ "value": "BL/with dictionary entry 1234 with Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -6634,7 +6634,7 @@ "value": "C. J. Alfred", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -6686,7 +6686,7 @@ "value": "+49 2113 2311 560", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6740,7 +6740,7 @@ "value": "B. Rahim", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -6896,7 +6896,7 @@ "value": "pharma-industry@korea.com", "reason": "Found after \"E-mail:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -6948,7 +6948,7 @@ "value": "maximiliamschmitt@arcor.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -7002,7 +7002,7 @@ "value": "+49 2113 2311 560", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -7110,7 +7110,7 @@ "value": "Kong", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -7218,7 +7218,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -7270,7 +7270,7 @@ "value": "Doe", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -7374,7 +7374,7 @@ "value": "European Central Institute", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -7530,7 +7530,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -7580,7 +7580,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -7680,7 +7680,7 @@ "value": "Clarissa’s Donut", "reason": "manual entries are applied by default, created by manual change", "matchedRule": "MAN.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -7743,7 +7743,7 @@ "value": "Simpson's To", "reason": "manual entries are applied by default, created by manual change", "matchedRule": "MAN.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -7803,47 +7803,56 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ], "dictionaryVersion": 20, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithPendingEntries.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithPendingEntries.json index 9d21fea..9702923 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithPendingEntries.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithPendingEntries.json @@ -10,7 +10,7 @@ "value": "Yuko Suzuki", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -129,7 +129,7 @@ "value": "Michael, J.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -185,7 +185,7 @@ "value": "BECH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -240,7 +240,7 @@ "value": "0049 331 441 551 23", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -293,7 +293,7 @@ "value": "+49 331 441551-13", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -355,7 +355,7 @@ "value": "0049 331 441 551 24", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -681,7 +681,7 @@ "value": "+49 331 441 551 34", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -735,7 +735,7 @@ "value": "+49 331 441 551 42", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -789,7 +789,7 @@ "value": "Maximilion Pegasus", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -843,7 +843,7 @@ "value": "Phillips", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -896,7 +896,7 @@ "value": "0049 331 441 551 18", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -1002,7 +1002,7 @@ "value": "library@outlook.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -1110,7 +1110,7 @@ "value": "0049 331 441 551 25", "reason": "Found between contact keywords", "matchedRule": "PII.6.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -1329,7 +1329,7 @@ "value": "+49 331 441 551 40", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -1440,7 +1440,7 @@ "value": "Christine Henri", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -1494,7 +1494,7 @@ "value": "Mme Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -1547,7 +1547,7 @@ "value": "BECH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -1601,7 +1601,7 @@ "value": "Mrs . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -1654,7 +1654,7 @@ "value": "Belkov", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1834,7 +1834,7 @@ "value": "B. Rahim", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -1888,7 +1888,7 @@ "value": "Richard Loewe", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -1942,7 +1942,7 @@ "value": "Byron, C.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -2053,7 +2053,7 @@ "value": "luthor.lex3@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -2271,7 +2271,7 @@ "value": "Simon Stagg", "reason": "Found after \"Alternative contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -2324,7 +2324,7 @@ "value": "Osborn", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -2378,7 +2378,7 @@ "value": "Julie Ben", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -2432,7 +2432,7 @@ "value": "Sir . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -2485,7 +2485,7 @@ "value": "Greg, M.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -2541,7 +2541,7 @@ "value": "0049 331 441 551 6", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -2594,7 +2594,7 @@ "value": "Charalampos Schenk", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -2701,7 +2701,7 @@ "value": "+49 331 441 551 43", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -2755,7 +2755,7 @@ "value": "+49 331 441 551 35", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -2809,7 +2809,7 @@ "value": "sabine.heldt04@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -2863,7 +2863,7 @@ "value": "+49 331 441 551 39", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -2917,7 +2917,7 @@ "value": "Morpheus Duvall", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -2973,7 +2973,7 @@ "value": "gordonjcp@msn.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -3027,7 +3027,7 @@ "value": "Feuer A.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -3083,7 +3083,7 @@ "value": "Alley", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -3137,7 +3137,7 @@ "value": "Ms. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -3190,7 +3190,7 @@ "value": "0049 331 441 551 26", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -3243,7 +3243,7 @@ "value": "sabine.heldt06@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -3405,7 +3405,7 @@ "value": "+49 331 441 551 41", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -3514,7 +3514,7 @@ "value": "Michelle Carge", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -3568,7 +3568,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -3621,7 +3621,7 @@ "value": "Maximus Coleman", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -3676,7 +3676,7 @@ "value": "sabine.heldt05@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -3730,7 +3730,7 @@ "value": "sabine.heldt07@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -3890,7 +3890,7 @@ "value": "Mme . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -3998,7 +3998,7 @@ "value": "Sonnenschein", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 31, @@ -4051,7 +4051,7 @@ "value": "Sebastian Shaw", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -4105,7 +4105,7 @@ "value": "Mrs Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -4211,7 +4211,7 @@ "value": "j.jiwoo@collab.co.kr", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -4266,7 +4266,7 @@ "value": "Igarashi Akitaka", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -4374,7 +4374,7 @@ "value": "Lawson Stafford", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -4483,7 +4483,7 @@ "value": "KML", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -4537,7 +4537,7 @@ "value": "Phillip", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -4643,7 +4643,7 @@ "value": "Ross", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -4698,7 +4698,7 @@ "value": "Manuel", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 38, @@ -4752,7 +4752,7 @@ "value": "+49 (331) 441 551 12", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -4805,7 +4805,7 @@ "value": "Madame . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -4858,7 +4858,7 @@ "value": "sabine.heldt02@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -4967,7 +4967,7 @@ "value": "Sir. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -5074,7 +5074,7 @@ "value": "+49 (331) 441 551 9", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -5184,7 +5184,7 @@ "value": "0049 331 441 551 5", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -5291,7 +5291,7 @@ "value": "kawasaki@me.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -5345,7 +5345,7 @@ "value": "Lain", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 40, @@ -5454,7 +5454,7 @@ "value": "LexCo", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -5507,7 +5507,7 @@ "value": "+49 331 441 551 46", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -5561,7 +5561,7 @@ "value": "Ms. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -5614,7 +5614,7 @@ "value": "Allan Smith", "reason": "Found after \"Contact point:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -5667,7 +5667,7 @@ "value": "0049 331 441 551 27", "reason": "Found between contact keywords", "matchedRule": "PII.6.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -5774,7 +5774,7 @@ "value": "Class", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -5882,7 +5882,7 @@ "value": "William, B.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -5937,7 +5937,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -6045,7 +6045,7 @@ "value": "+49 331 441 551 29", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -6099,7 +6099,7 @@ "value": "Funnarie B.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -6209,7 +6209,7 @@ "value": "0049 331 441 551 15", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -6262,7 +6262,7 @@ "value": "0049 331 441 551 4", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -6315,7 +6315,7 @@ "value": "luthor.lex2@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -6368,7 +6368,7 @@ "value": "Smith", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -6425,7 +6425,7 @@ "value": "Redact between No and F/ax", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -6479,7 +6479,7 @@ "value": "KML", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -6533,7 +6533,7 @@ "value": "Miss Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -6639,7 +6639,7 @@ "value": "Coleman Charles", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -6693,7 +6693,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 39, @@ -6909,7 +6909,7 @@ "value": "Belkov", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -6963,7 +6963,7 @@ "value": "Dr. Sergei Vladimir", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -7017,7 +7017,7 @@ "value": "Miss . Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -7070,7 +7070,7 @@ "value": "Sonja Nier", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -7177,7 +7177,7 @@ "value": "Sminko", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -7230,7 +7230,7 @@ "value": "Leon", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -7283,7 +7283,7 @@ "value": "0049 331 441 551 2", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -7336,7 +7336,7 @@ "value": "Daniel", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 39, @@ -7389,7 +7389,7 @@ "value": "0049 331 441 551 14", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -7496,7 +7496,7 @@ "value": "Tommy Neilson", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -7606,7 +7606,7 @@ "value": "Norman", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -7660,7 +7660,7 @@ "value": "Carrol Ferris", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -7713,7 +7713,7 @@ "value": "David Chubb Research Director Ivan Musk, Msc Bioanalysis Tom Scrott Team Leader", "reason": "On behalf of Sequani Ltd.: Name Title was found", "matchedRule": "PII.11.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 28, @@ -7811,7 +7811,7 @@ "value": "Steffanie Soja", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -7865,7 +7865,7 @@ "value": "+49 331 441 551 32", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -7973,7 +7973,7 @@ "value": "David Ksenia", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -8027,7 +8027,7 @@ "value": "Xinyi Y. Tao", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -8081,7 +8081,7 @@ "value": "+49 331 441 551 44", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -8135,7 +8135,7 @@ "value": "+49 331 441551-10", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -8188,7 +8188,7 @@ "value": "Carter Stein", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -8355,7 +8355,7 @@ "value": "Michael N.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -8463,7 +8463,7 @@ "value": "Sabine Heldt", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -8570,7 +8570,7 @@ "value": "Class", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -8625,7 +8625,7 @@ "value": "Madame. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -8678,7 +8678,7 @@ "value": "Alley", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -8788,7 +8788,7 @@ "value": "0049 331 441 551 17", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -8841,7 +8841,7 @@ "value": "Isaiah Hansen", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -8951,7 +8951,7 @@ "value": "m.grandfield@umbrella.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -9069,7 +9069,7 @@ "value": "Sminko", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -9179,7 +9179,7 @@ "value": "Redact beween contact and T/el", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -9286,7 +9286,7 @@ "value": "Carter", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -9341,7 +9341,7 @@ "value": "Wayne, L.", "reason": "Author found", "matchedRule": "CBI.9.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 9, @@ -9397,7 +9397,7 @@ "value": "Sude Halide Nurullah", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -9451,7 +9451,7 @@ "value": "0049 331 441 551 0", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -9559,7 +9559,7 @@ "value": "Mrs. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -9612,7 +9612,7 @@ "value": "Silver", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -9665,7 +9665,7 @@ "value": "Michael", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -9774,7 +9774,7 @@ "value": "0049 331 441 551 7", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -10050,7 +10050,7 @@ "value": "+49 331 441 551 33", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -10104,7 +10104,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -10158,7 +10158,7 @@ "value": "+49 331-441 551 11", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -10211,7 +10211,7 @@ "value": "KML", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -10266,7 +10266,7 @@ "value": "+49 331 441 551 30", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -10320,7 +10320,7 @@ "value": "+49 331 441 551 38", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -10374,7 +10374,7 @@ "value": "993-221", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -10535,7 +10535,7 @@ "value": "BECH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -10644,7 +10644,7 @@ "value": "Kara Hunt", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -10699,7 +10699,7 @@ "value": "Wilson Fisk", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -10806,7 +10806,7 @@ "value": "Sir Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -10859,7 +10859,7 @@ "value": "Dr. Alan Milwer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 17, @@ -10913,7 +10913,7 @@ "value": "Keith Arving", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -11022,7 +11022,7 @@ "value": "sabine.heldt03@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -11076,7 +11076,7 @@ "value": "0049 331 441 551 1", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -11129,7 +11129,7 @@ "value": "Madame Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -11182,7 +11182,7 @@ "value": "Morpheus Duvall", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -11236,7 +11236,7 @@ "value": "John Clemens", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -11348,7 +11348,7 @@ "value": "0049 331 441 551 19 Telephone: 0049 331 441 551 20 Phone No. 0049 331 441 551 21 Phone: 0049 331 441 551 22", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -11617,7 +11617,7 @@ "value": "Lex Luthor", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -11724,7 +11724,7 @@ "value": "993-222", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -11831,7 +11831,7 @@ "value": "+49 331 441 551 36", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -11885,7 +11885,7 @@ "value": "0049 331 441 551 28", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 24, @@ -11938,7 +11938,7 @@ "value": "0049 331 441 551 3", "reason": "Found by Phone and Fax Regex", "matchedRule": "PII.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -12045,7 +12045,7 @@ "value": "Ashley", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 38, @@ -12153,7 +12153,7 @@ "value": "Sonnenschein", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 31, @@ -12270,7 +12270,7 @@ "value": "Ranya Eikenboom", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -12324,7 +12324,7 @@ "value": "Stein", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -12378,7 +12378,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -12433,7 +12433,7 @@ "value": "luthor.lex4@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -12486,7 +12486,7 @@ "value": "Özgür U. Reyhan", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -12597,7 +12597,7 @@ "value": "Redact beween contact and T/el", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -12651,7 +12651,7 @@ "value": "Ms Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -12704,7 +12704,7 @@ "value": "Peoples", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 36, @@ -12757,7 +12757,7 @@ "value": "KATH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -12811,7 +12811,7 @@ "value": "Dr. Alan Miller", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 17, @@ -12865,7 +12865,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -12919,7 +12919,7 @@ "value": "Belkov", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -13029,7 +13029,7 @@ "value": "Max Mustermann", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -13083,7 +13083,7 @@ "value": "Tyler Durden", "reason": "Found after \"European contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -13318,7 +13318,7 @@ "value": "Ross Hamster", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -13374,7 +13374,7 @@ "value": "+49 331 441 551 8", "reason": "Telephone number found by regex", "matchedRule": "PII.3.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 21, @@ -13481,7 +13481,7 @@ "value": "Redact between No and F/ax", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -13535,7 +13535,7 @@ "value": "Mme. Claire", "reason": "Expanded PII with salutation prefix", "matchedRule": "PII.12.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 29, @@ -13588,7 +13588,7 @@ "value": "Jun", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -13696,7 +13696,7 @@ "value": "C. J. Alfred", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -13750,7 +13750,7 @@ "value": "luthor.lex1@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -13860,7 +13860,7 @@ "value": "sabine.heldt08@mail.com", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -13914,7 +13914,7 @@ "value": "+49 331 441 551 45", "reason": "Producer was found", "matchedRule": "PII.8.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 26, @@ -13968,7 +13968,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -14021,7 +14021,7 @@ "value": "Veronica Smith", "reason": "Found after \"Contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 23, @@ -14074,7 +14074,7 @@ "value": "Smith", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -14182,7 +14182,7 @@ "value": "Professor Alexia Ashford", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -14236,7 +14236,7 @@ "value": "dinther@comcast.net", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 19, @@ -14290,7 +14290,7 @@ "value": "0049 331 441 551 16", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 22, @@ -14343,7 +14343,7 @@ "value": "+49 331 441 551 37", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -14397,7 +14397,7 @@ "value": "Sminko", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -14451,7 +14451,7 @@ "value": "sabine.heldt01@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -14505,7 +14505,7 @@ "value": "KATH", "reason": "Personal information found", "matchedRule": "PII.10.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 27, @@ -14722,7 +14722,7 @@ "value": "Richard", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 39, @@ -14828,7 +14828,7 @@ "value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 18, @@ -14882,7 +14882,7 @@ "value": "+49 331 441 551 31", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 25, @@ -14936,7 +14936,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 32, @@ -14987,7 +14987,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 32, @@ -15335,7 +15335,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 32, @@ -16047,47 +16047,56 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ], "dictionaryVersion": 20, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/excelReportRedactionLog.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/excelReportRedactionLog.json deleted file mode 100644 index a3c1b29..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/excelReportRedactionLog.json +++ /dev/null @@ -1,348 +0,0 @@ -{ - "redactionLogEntry": [ - { - "id": "ba922aabe15e334569dc06b212b3a15b", - "type": "address", - "value": "regina.dorn@syngenta.com", - "reason": "Applicant information was found", - "matchedRule": 6, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1 Identity", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 517.43 - }, - "width": 122.451065, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "b841bb2734863a14e95cb15efdf98172", - "type": "address", - "value": "+41 (61) 323 6358", - "reason": "Applicant information was found", - "matchedRule": 6, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1 Identity", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 542.75 - }, - "width": 83.41362, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "d39269482f83c64453153826d8de0a5f", - "type": "address", - "value": "Patrick Gardinal", - "reason": "Producer was found", - "matchedRule": 7, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1.1.2 Producer of the plant protection product", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 404.39 - }, - "width": 73.40033, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "9ddda875972c0fbcda02ae551cd0d07a", - "type": "address", - "value": "+41 (0) 61 323 60 51", - "reason": "Producer was found", - "matchedRule": 7, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1.1.2 Producer of the plant protection product", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 328.53 - }, - "width": 94.33217, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "9e289c70c17cb2b3bf7c96b070d44533", - "type": "address", - "value": "patrick.gardinal@syngenta.com", - "reason": "Producer was found", - "matchedRule": 7, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1.1.2 Producer of the plant protection product", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 303.21002 - }, - "width": 141.26324, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "10a4893ec30e268c951b8026e0dc3e11", - "type": "address", - "value": "Syngenta Crop Protection AG", - "reason": "Applicant information was found", - "matchedRule": 6, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1 Identity", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 631.34 - }, - "width": 133.3113, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "86b754bc4e70f45038b465a66c0e927b", - "type": "address", - "value": "Regina Dorn", - "reason": "Applicant information was found", - "matchedRule": 6, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1 Identity", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 555.47 - }, - "width": 57.624176, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "fd367ab592da09165d1bcd52cfddaf68", - "type": "address", - "value": "Syngenta Crop Protection AG", - "reason": "Producer was found", - "matchedRule": 7, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1.1.2 Producer of the plant protection product", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 455.03 - }, - "width": 133.34088, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "3ae8841f1e9a6e022af1880aaa2853ef", - "type": "address", - "value": "Syngenta Crop Protection AG", - "reason": "Producer was found", - "matchedRule": 7, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1.1.2 Producer of the plant protection product", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 391.77 - }, - "width": 133.23718, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "027e744e97c8c1cecb974023f8792055", - "type": "address", - "value": "+41 (61) 323 6155", - "reason": "Applicant information was found", - "matchedRule": 6, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1 Identity", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 530.15 - }, - "width": 83.41362, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - }, - { - "id": "a022f9ecad5b06f9da7bc2ebdcc97c17", - "type": "address", - "value": "+41 (0) 61 323 61 55", - "reason": "Producer was found", - "matchedRule": 7, - "legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)", - "redacted": true, - "section": "B.1.1.2 Producer of the plant protection product", - "color": [ - 0.0, - 1.0, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 315.81 - }, - "width": 94.33217, - "height": 11.017679, - "page": 4 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "hint": false - } - ], - "dictionaryVersion": 0, - "rulesVersion": 0, - "filename": null -} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legal13.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legal13.json deleted file mode 100644 index 2a84d87..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legal13.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(1)", - "description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.", - "reason": "Article 39(e)(1) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } -] \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMapping.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMapping.json index f7ca25b..bfa90f7 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMapping.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMapping.json @@ -1,42 +1,50 @@ [ { - "name": "1. personal data (incl. geolocation)", - "description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.\nand except for personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(1) and Article 39(e)(2) of Regulation (EC) No 178/2002" + "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", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "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)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ] diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMappingNew.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMappingIUCLID.json similarity index 77% rename from redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMappingNew.json rename to redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMappingIUCLID.json index ab3f8c0..bb85c87 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMappingNew.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisMappingIUCLID.json @@ -2,46 +2,55 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } -] \ No newline at end of file +] diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisSingleStudyOral.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisSingleStudyOral.json deleted file mode 100644 index ab3f8c0..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/legalBasisSingleStudyOral.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "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" - } -] \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redaction-log.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redaction-log.json index 5603529..4901b14 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redaction-log.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redaction-log.json @@ -268,7 +268,7 @@ "value": "www.syngenta.com", "reason": "PII (Personal Identification Information) found", "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": true, "section": "", "color": [ @@ -313,7 +313,7 @@ "value": "N Robinson", "reason": "Author found", "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": true, "section": "", "color": [ @@ -511,7 +511,7 @@ "value": "F J Lewis", "reason": "PII (Personal Identification Information) found", "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": true, "section": "", "color": [ @@ -3157,7 +3157,7 @@ "value": "Thomas", "reason": "Published Information found", "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": false, "section": "References", "color": [ @@ -3301,7 +3301,7 @@ "value": "Tummon O J", "reason": "Published Information found", "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": false, "section": "References", "color": [ @@ -4579,7 +4579,7 @@ "value": "Mill", "reason": "Published Information found", "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": false, "section": "References", "color": [ @@ -4714,7 +4714,7 @@ "value": "Ford, PA", "reason": "Published Information found", "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": false, "section": "References", "color": [ @@ -4813,7 +4813,7 @@ "value": "Court", "reason": "Published Information found", "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": false, "section": "References", "color": [ @@ -4858,7 +4858,7 @@ "value": "Mill", "reason": "Published Information found", "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": false, "section": "References", "color": [ @@ -10069,7 +10069,7 @@ "value": "Rectangle", "reason": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", "matchedRule": 0, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "redacted": true, "section": "Signature", "color": [ @@ -10114,7 +10114,7 @@ "value": "Rectangle", "reason": "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", "matchedRule": 0, - "legalBasis": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "legalBasis": "specification_impurity", "redacted": true, "section": "Formula", "color": [ @@ -10158,47 +10158,56 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ], "dictionaryVersion": 780, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redactionLog2817.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redactionLog2817.json deleted file mode 100644 index 4bf59a4..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redactionLog2817.json +++ /dev/null @@ -1,8443 +0,0 @@ -{ - "analysisVersion": 1, - "redactionLogEntry": [ - { - "id": "31bea2d45fb9c5faf9da4229f8b554d2", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 72.84, - "y": 37.980286 - }, - "width": 34.71469, - "height": 10.452841, - "page": 1 - } - ], - "sectionNumber": 64, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726203Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "05b262f24720f07ed9f362d0280a8d10", - "type": "false_positive", - "value": "Page 1", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 496.98047, - "y": 785.4001 - }, - "width": 26.310974, - "height": 10.452841, - "page": 1 - } - ], - "sectionNumber": 53, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 40, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726212Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cdda0e0bf4573fb2c5ba6fc32ce9eb88", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 122.160385, - "y": 37.980286 - }, - "width": 37.880356, - "height": 10.452841, - "page": 1 - } - ], - "sectionNumber": 64, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726215Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "5f696eae5261bc0e336f00e33e708225", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.86, - "y": 688.74 - }, - "width": 22.695312, - "height": 11.591161, - "page": 2 - } - ], - "sectionNumber": 2, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726218Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "027f25f30ec9c7f2715572965879f9c6", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 72.84, - "y": 37.980286 - }, - "width": 34.71469, - "height": 10.452841, - "page": 2 - } - ], - "sectionNumber": 65, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726221Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a88ba853bd22b719b47210cbd2e9e26d", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 122.160385, - "y": 37.980286 - }, - "width": 37.880356, - "height": 10.452841, - "page": 2 - } - ], - "sectionNumber": 65, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726223Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "45a104a3107ea756ddb2bc68e9b188db", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 496.98047, - "y": 785.4001 - }, - "width": 19.647705, - "height": 10.452841, - "page": 2 - } - ], - "sectionNumber": 54, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 40, - "endOffset": 44, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726226Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "add190891c21af9fde83a64b028d4575", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 72.84, - "y": 37.980286 - }, - "width": 34.71469, - "height": 10.452841, - "page": 3 - } - ], - "sectionNumber": 66, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726228Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3ef162ef55343f07fead0d384ea4e35d", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 122.160385, - "y": 37.980286 - }, - "width": 37.880356, - "height": 10.452841, - "page": 3 - } - ], - "sectionNumber": 66, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726231Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "72c25280ca268e4d16dd658b01b33610", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 496.98047, - "y": 785.4001 - }, - "width": 19.647705, - "height": 10.452841, - "page": 3 - } - ], - "sectionNumber": 55, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 40, - "endOffset": 44, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726234Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "95bc5d0bc3b5e19c2154308521ac1066", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 278.65378, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 4 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 92, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726237Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "e705fe1a489534d607b5d066eb2e3916", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 414.1939, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 4 - } - ], - "sectionNumber": 12, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726239Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1f17f30198e3d6ca4c268e51fcaf41c3", - "type": "CBI_author", - "value": "Fish L.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 162.84918 - }, - "width": 9.546066, - "height": 29.856632, - "page": 4 - } - ], - "sectionNumber": 9, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 20, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726242Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3eb60800ba82ce2a6866fac7d199459e", - "type": "CBI_author", - "value": "Graham R., Gilbert J.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 294.67392, - "y": 162.77803 - }, - "width": 9.546082, - "height": 78.524734, - "page": 4 - }, - { - "topLeft": { - "x": 306.1939, - "y": 162.83014 - }, - "width": 9.546082, - "height": 7.905796, - "page": 4 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726245Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "d7bfb269b95cfed3cd03efcf236c2f0b", - "type": "CBI_author", - "value": "Hardy I.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 391.15393, - "y": 162.83017 - }, - "width": 9.546082, - "height": 34.874622, - "page": 4 - } - ], - "sectionNumber": 12, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 19, - "endOffset": 27, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726247Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "056bd279e2ed8989a9cd1a6325f3d0d1", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 162.83319 - }, - "width": 9.591164, - "height": 32.9027, - "page": 4 - } - ], - "sectionNumber": 7, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 11, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72625Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a843569afb3dcd7bf0928dbff5fe0ff9", - "type": "CBI_author", - "value": "Hand L.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 255.67393, - "y": 162.82913 - }, - "width": 9.546066, - "height": 34.290455, - "page": 4 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726252Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1b41267655945ca8ce4333e7c114f1e9", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 4 - } - ], - "sectionNumber": 68, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726255Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c76780a0b6ffbf1124cc2d2e3456a3f7", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 743.6299 - }, - "width": 8.452839, - "height": 18.208395, - "page": 4 - } - ], - "sectionNumber": 56, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726257Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "aadc5d638e7f5496c0f22a7d8ba1c25b", - "type": "CBI_author", - "value": "Hand L., Davison K.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 430.15393, - "y": 162.82716 - }, - "width": 9.546082, - "height": 84.824295, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 19, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72626Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "b6285b5227050cb4bb96f2b873d6b65f", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 375.1936, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.80248, - "page": 4 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 217, - "endOffset": 225, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726262Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "19f4befd6edb33dd03b7aa9c08100331", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 239.6538, - "y": 302.87067 - }, - "width": 9.546066, - "height": 36.80248, - "page": 4 - } - ], - "sectionNumber": 9, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 88, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726265Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6da873dbc4ffc97580a76a69cd8ef596", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 4 - } - ], - "sectionNumber": 7, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726268Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c0b1fd5f231bd4a1e780019817d6cbe4", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 4 - } - ], - "sectionNumber": 68, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72627Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "f7bd0c35d10af741e897664bb7a4b841", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 329.17377, - "y": 302.86966 - }, - "width": 9.546082, - "height": 177.06721, - "page": 4 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of [14C]Mesotrione Syngenta ", - "textAfter": ", Covance Laboratories", - "comments": null, - "startOffset": 101, - "endOffset": 143, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726273Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7b3724c4a5d56bc917547e9681c5427d", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 4 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1020, - "endOffset": 1028, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726276Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "85ca7f1bbb225576f08ead8492d6c626", - "type": "CBI_address", - "value": "Covance Laboratories Limited, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 340.69376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 183.51622, - "page": 4 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Ltd, Harrogate, UK, ", - "textAfter": ", 8252086 GLP,", - "comments": null, - "startOffset": 145, - "endOffset": 188, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726279Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "121e03611c211fa5b9e5fd93cd26f161", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 317.65378, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.816517, - "page": 4 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 92, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726281Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "fb678e759199108e4e457b7c7986250b", - "type": "CBI_address", - "value": "Syngenta - Jealott’s Hill, Bracknell, United Kingdom", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 476.17377, - "y": 302.87067 - }, - "width": 9.546082, - "height": 171.98543, - "page": 4 - }, - { - "topLeft": { - "x": 487.63364, - "y": 302.87067 - }, - "width": 9.546082, - "height": 34.075947, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AG, Basel, Switzerland ", - "textAfter": ", RJ3635B GLP,", - "comments": null, - "startOffset": 160, - "endOffset": 212, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726284Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c32abdee3e56898280602019560da6ac", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 510.67365, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.804523, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 241, - "endOffset": 249, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726286Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "0ee0389698c2099153fecbd82b8219ec", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 453.1939, - "y": 302.87067 - }, - "width": 9.546082, - "height": 151.51546, - "page": 4 - }, - { - "topLeft": { - "x": 464.65378, - "y": 302.87067 - }, - "width": 9.546082, - "height": 46.74535, - "page": 4 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Volcanic Ash Soil ", - "textAfter": " Syngenta -", - "comments": null, - "startOffset": 112, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726289Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7679fa9aba9f6ec532888c4769d70da9", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 251.17378, - "y": 302.86966 - }, - "width": 9.546066, - "height": 151.51546, - "page": 5 - }, - { - "topLeft": { - "x": 262.69376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 46.74535, - "page": 5 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "in Four Soils ", - "textAfter": " Syngenta Crop", - "comments": null, - "startOffset": 156, - "endOffset": 203, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726292Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "95242fcfc2c8901568e4c555096de0c6", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 162.83319 - }, - "width": 9.591164, - "height": 32.9027, - "page": 5 - } - ], - "sectionNumber": 15, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 11, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726294Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c9a634923c4f999519dc8c0ee6df5054", - "type": "CBI_address", - "value": "Syngenta - Jealott’s Hill International, Bracknell, Berkshire, United Kingdom", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 467.17377, - "y": 302.86966 - }, - "width": 9.546082, - "height": 154.58565, - "page": 5 - }, - { - "topLeft": { - "x": 478.63364, - "y": 302.86966 - }, - "width": 9.546082, - "height": 151.5114, - "page": 5 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AG, Basel, Switzerland ", - "textAfter": ", RJ3634B 04JH012", - "comments": null, - "startOffset": 170, - "endOffset": 247, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726297Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "fb09074a84f55b5347b7c1073fde9983", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 5 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1120, - "endOffset": 1128, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.7263Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6e057165bd3522e142c6c41da55e0b8e", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 370.69376, - "y": 302.87067 - }, - "width": 9.546082, - "height": 177.06721, - "page": 5 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of Mesotrione Syngenta ", - "textAfter": ", 8252095 GLP,", - "comments": null, - "startOffset": 145, - "endOffset": 187, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726302Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "63cefd77b47aeb584f1319a41c4c10e6", - "type": "CBI_author", - "value": "Bramley YM, Pinheiro S I, Verity A A", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 162.79306 - }, - "width": 9.546066, - "height": 57.074924, - "page": 5 - }, - { - "topLeft": { - "x": 228.19392, - "y": 162.83014 - }, - "width": 9.546066, - "height": 77.28433, - "page": 5 - }, - { - "topLeft": { - "x": 239.6538, - "y": 162.83014 - }, - "width": 9.546066, - "height": 13.718403, - "page": 5 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 19, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726305Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "0421d12d22911615e982466e9179bb5e", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 405.1936, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.794483, - "page": 5 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 216, - "endOffset": 224, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726308Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "834296703d94ac6787b6d3ba65d21170", - "type": "false_positive", - "value": "Salt in", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 228.19392, - "y": 463.9641 - }, - "width": 9.546066, - "height": 24.821552, - "page": 5 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 137, - "endOffset": 144, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72631Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "fd08e0fcc0d6fa42f12631e87a91e73a", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 274.15363, - "y": 302.86966 - }, - "width": 9.546082, - "height": 151.51546, - "page": 5 - }, - { - "topLeft": { - "x": 285.6736, - "y": 302.86966 - }, - "width": 9.546082, - "height": 46.750294, - "page": 5 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AG, Basel, Switzerland ", - "textAfter": ", RJ3289B GLP,", - "comments": null, - "startOffset": 204, - "endOffset": 251, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726313Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "dfd167f65c5448368f873b398a9685aa", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 359.17377, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.816517, - "page": 5 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 136, - "endOffset": 144, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726315Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7eab2e39474da6e6dff2446da8d64bfa", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 5 - } - ], - "sectionNumber": 69, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726318Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "ce0fabdb671445c705f9da88bd157356", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 743.6299 - }, - "width": 8.452839, - "height": 18.208395, - "page": 5 - } - ], - "sectionNumber": 57, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72632Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "25b823f412b5235d1abcec5ddb277c06", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 5 - } - ], - "sectionNumber": 15, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726323Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "0e05029211b87f0ccd93e906d4594ffb", - "type": "CBI_author", - "value": "Hurst L.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 324.67392, - "y": 162.82416 - }, - "width": 9.546082, - "height": 34.86661, - "page": 5 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 19, - "endOffset": 27, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726326Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "052b8b86334252a283c304a5fb9ade2c", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 308.65347, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.804523, - "page": 5 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 280, - "endOffset": 288, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726328Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1803d871f17fba5eb1e50ef7c0cc76dd", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 513.1335, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.804523, - "page": 5 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 284, - "endOffset": 292, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726331Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a6c3f290e8ad4f74977b6f8e104e3c95", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 5 - } - ], - "sectionNumber": 69, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726334Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "479436f69afc7897beef5f980d70c2e4", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 444.1939, - "y": 302.86966 - }, - "width": 9.546082, - "height": 151.51546, - "page": 5 - }, - { - "topLeft": { - "x": 455.65378, - "y": 302.86966 - }, - "width": 9.546082, - "height": 46.74535, - "page": 5 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Natural Water Photolysis ", - "textAfter": " Syngenta -", - "comments": null, - "startOffset": 122, - "endOffset": 169, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726337Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c659a619345bd34dd17442a8c2854170", - "type": "CBI_author", - "value": "Oliver R., Edwards P.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 421.15393, - "y": 162.77803 - }, - "width": 9.546082, - "height": 77.43254, - "page": 5 - }, - { - "topLeft": { - "x": 432.67392, - "y": 162.83014 - }, - "width": 9.546082, - "height": 9.578144, - "page": 5 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72634Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "138c5fb156b06fe508f3036de2aff179", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 6 - } - ], - "sectionNumber": 70, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726342Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "5f5ff9847b88dc2e4e1691a59f848f53", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 6 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1220, - "endOffset": 1228, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726345Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "4f17fc47cdd6ab4d06c9c763b9893d72", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 446.1985, - "y": 442.6209 - }, - "width": 8.981506, - "height": 33.4858, - "page": 6 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1389, - "endOffset": 1397, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726347Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1ff49b07552d824f8d3ee57d325c883f", - "type": "CBI_address", - "value": "Covance Laboratories Limited, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 359.1736, - "y": 302.86966 - }, - "width": 9.546082, - "height": 183.51622, - "page": 6 - } - ], - "sectionNumber": 24, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Ltd, Harrogate, UK, ", - "textAfter": ", 8236956 GLP,", - "comments": null, - "startOffset": 187, - "endOffset": 230, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72635Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "b9734b2e7a1d21e5868d6a30ece95659", - "type": "CBI_author", - "value": "Hardy I.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 409.6939, - "y": 162.77103 - }, - "width": 9.546082, - "height": 34.862644, - "page": 6 - } - ], - "sectionNumber": 25, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 25, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726353Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a5415ecb7fcd428b88aa13287c7a2bd4", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 347.65363, - "y": 302.86966 - }, - "width": 9.546082, - "height": 177.06721, - "page": 6 - } - ], - "sectionNumber": 24, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of [Phenyl-14C]Mesotrione Syngenta ", - "textAfter": ", Covance Laboratories", - "comments": null, - "startOffset": 143, - "endOffset": 185, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726355Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "53fc128cf19dcff5b06b2cb7d4db5b9b", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 432.67377, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 6 - } - ], - "sectionNumber": 25, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 94, - "endOffset": 102, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726358Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "e6da4bc6e0b1594fe3229e77ace72abe", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 446.1985, - "y": 644.72015 - }, - "width": 8.981506, - "height": 33.48565, - "page": 6 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1444, - "endOffset": 1452, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726361Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "18cdaf12ba98be0312699f65767a2ad3", - "type": "CBI_author", - "value": "Graham R., Gilbert J.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 301.6939, - "y": 162.77803 - }, - "width": 9.546082, - "height": 78.524734, - "page": 6 - }, - { - "topLeft": { - "x": 313.15378, - "y": 162.83014 - }, - "width": 9.546082, - "height": 7.905796, - "page": 6 - } - ], - "sectionNumber": 24, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726363Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "f879dfff9279ae59b4d6afc0990d2a24", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 251.17378, - "y": 302.86966 - }, - "width": 9.546066, - "height": 177.06721, - "page": 6 - } - ], - "sectionNumber": 23, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Surface Water Syngenta ", - "textAfter": ", 8252099 GLP,", - "comments": null, - "startOffset": 137, - "endOffset": 179, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726366Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "769fc333a1d94aab8dca1b55778b43d6", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 285.6736, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.80248, - "page": 6 - } - ], - "sectionNumber": 23, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 208, - "endOffset": 216, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726369Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "89e73eebc9ab3c74243a37fc50b1bf48", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 336.19376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.816517, - "page": 6 - } - ], - "sectionNumber": 24, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 134, - "endOffset": 142, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726372Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "d35c7e77d9086ebe8a71b0a4e8abf210", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 446.1985, - "y": 75.3515 - }, - "width": 8.981506, - "height": 33.540695, - "page": 6 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1288, - "endOffset": 1296, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726375Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "f4978764b2cb24696a5531347a2bcff2", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 393.67346, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.80248, - "page": 6 - } - ], - "sectionNumber": 24, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 259, - "endOffset": 267, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726377Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "d5816959e4777c26f2ab1797fb0548e4", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 6 - } - ], - "sectionNumber": 70, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72638Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "ce6e43452f720d0e4244ffac150ea1f4", - "type": "CBI_author", - "value": "Graham R., Yeomans P.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 162.78506 - }, - "width": 9.546066, - "height": 47.89664, - "page": 6 - }, - { - "topLeft": { - "x": 228.19392, - "y": 162.83014 - }, - "width": 9.546066, - "height": 49.847538, - "page": 6 - } - ], - "sectionNumber": 23, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726383Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c2e9fcbc9887bdba979d012ba8a7d8c8", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 162.83319 - }, - "width": 9.591164, - "height": 32.9027, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 11, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726386Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "ac6a095bf4385f396972e3a6514e8eeb", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 239.6538, - "y": 302.86966 - }, - "width": 9.546066, - "height": 36.816517, - "page": 6 - } - ], - "sectionNumber": 23, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 128, - "endOffset": 136, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726388Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7d188b6576bc0f7a8bedc1ba722e1d5d", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 743.6299 - }, - "width": 8.452839, - "height": 18.208395, - "page": 6 - } - ], - "sectionNumber": 58, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726391Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "f27fa6b668a537cb0b07e54057e99363", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726394Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6f956d47a9b1f8839b640cbe19f9211f", - "type": "CBI_author", - "value": "Bramley YM, Pinheiro S I, Verity A A", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 72.8305 - }, - "width": 9.546066, - "height": 57.071926, - "page": 7 - }, - { - "topLeft": { - "x": 228.19392, - "y": 72.8305 - }, - "width": 9.546066, - "height": 77.28427, - "page": 7 - }, - { - "topLeft": { - "x": 239.6538, - "y": 72.8305 - }, - "width": 9.546066, - "height": 13.718395, - "page": 7 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 36, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726396Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "ad8c2ab33d9135801232fde1e3d15bd9", - "type": "CBI_author", - "value": "Graham R., Gilbert J.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 363.67392, - "y": 72.8305 - }, - "width": 9.546082, - "height": 78.42856, - "page": 7 - }, - { - "topLeft": { - "x": 375.1939, - "y": 72.8305 - }, - "width": 9.546082, - "height": 7.9058037, - "page": 7 - } - ], - "sectionNumber": 31, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726399Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3f69ea638308a47dd5f761cd747f32f8", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 7 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1568, - "endOffset": 1576, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726402Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a64d7c396f377ca1ee1f94b7f0a79aa6", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 743.6299 - }, - "width": 8.452839, - "height": 18.208395, - "page": 7 - } - ], - "sectionNumber": 59, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726405Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "74a47ce1dfa19c07d523b1cc0b3f2ea6", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 7 - } - ], - "sectionNumber": 71, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726407Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7f3a197df386b926f782f6b84fd95393", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 7 - } - ], - "sectionNumber": 71, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72641Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "bce0c4f936ebbd24a7148b3ec8036471", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 386.65378, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.816517, - "page": 7 - } - ], - "sectionNumber": 31, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 92, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726413Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "492a1931e2d5d8523ef32590b26734bc", - "type": "CBI_address", - "value": "Covance Laboratories Limited, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 409.69376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 183.51622, - "page": 7 - } - ], - "sectionNumber": 31, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Ltd, Harrogate, UK, ", - "textAfter": ", 8252086 GLP,", - "comments": null, - "startOffset": 145, - "endOffset": 188, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726416Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "543497cf83e8ba2e4115c17fe3c98bf9", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 308.65347, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.804523, - "page": 7 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 280, - "endOffset": 288, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726419Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "2da7c08032c188d2dd67680a1cee5e10", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 7 - } - ], - "sectionNumber": 27, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726422Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "e26dfcffc49b5762c89ec99647efd28f", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 274.15363, - "y": 302.86966 - }, - "width": 9.546082, - "height": 151.51546, - "page": 7 - }, - { - "topLeft": { - "x": 285.6736, - "y": 302.86966 - }, - "width": 9.546082, - "height": 46.750294, - "page": 7 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AG, Basel, Switzerland ", - "textAfter": ", RJ3289B GLP,", - "comments": null, - "startOffset": 204, - "endOffset": 251, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726424Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "99714b2c8323c84a1e7263b5c0543371", - "type": "CBI_author", - "value": "Fish L.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 324.67392, - "y": 72.8305 - }, - "width": 9.546082, - "height": 29.85661, - "page": 7 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726427Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c463371dfec847e0be02170c90a1d210", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 72.83055 - }, - "width": 9.591164, - "height": 32.902676, - "page": 7 - } - ], - "sectionNumber": 27, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72643Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7b5e25d00ca2cb60f9cbb99fafc44bfb", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 398.17377, - "y": 302.86966 - }, - "width": 9.546082, - "height": 177.06721, - "page": 7 - } - ], - "sectionNumber": 31, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of [14C]Mesotrione Syngenta ", - "textAfter": ", Covance Laboratories", - "comments": null, - "startOffset": 101, - "endOffset": 143, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726433Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "7e87bc757a77af68339b75f0134ed5fd", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 251.17378, - "y": 302.86966 - }, - "width": 9.546066, - "height": 151.51546, - "page": 7 - }, - { - "topLeft": { - "x": 262.69376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 46.74535, - "page": 7 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "in Four Soils ", - "textAfter": " Syngenta Crop", - "comments": null, - "startOffset": 156, - "endOffset": 203, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726435Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "8e71993e5d47ebcaf0c1de840656885b", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 444.1936, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.80248, - "page": 7 - } - ], - "sectionNumber": 31, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 217, - "endOffset": 225, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726439Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "b0f022ab80666232b1759ec53b42c2df", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 347.65378, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 7 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 88, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726441Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "278bbaa61e24ebe0de3673f9fded4088", - "type": "false_positive", - "value": "Salt in", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 228.19392, - "y": 463.9641 - }, - "width": 9.546066, - "height": 24.821552, - "page": 7 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 137, - "endOffset": 144, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726444Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "887486b5bedf36342102ed2d47372cb8", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 161.68283 - }, - "width": 9.59116, - "height": 32.884663, - "page": 7 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1558, - "endOffset": 1564, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726446Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "526ba4a4cb9d626d66614e4d69af8630", - "type": "CBI_address", - "value": "Covance Laboratories Limited, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 274.15363, - "y": 302.86966 - }, - "width": 9.546082, - "height": 183.51622, - "page": 8 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Ltd, Harrogate, UK, ", - "textAfter": ", 8236956 GLP,", - "comments": null, - "startOffset": 187, - "endOffset": 230, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726449Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "b91e1e009e67992f5af9b92a64b89bd0", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 8 - } - ], - "sectionNumber": 33, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726452Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cbd78c2bb4fc02842987a5d1484e6f2b", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 251.17378, - "y": 302.86966 - }, - "width": 9.546066, - "height": 36.816517, - "page": 8 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 134, - "endOffset": 142, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726455Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "f4f9f4148cc807fd797f190d165246c1", - "type": "CBI_author", - "value": "Graham R., Gilbert J.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 72.8305 - }, - "width": 9.546066, - "height": 78.42856, - "page": 8 - }, - { - "topLeft": { - "x": 228.19392, - "y": 72.8305 - }, - "width": 9.546066, - "height": 7.9058037, - "page": 8 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726457Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "f9c90ee9ad493687a5f77c470fd38244", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 72.83055 - }, - "width": 9.591164, - "height": 32.902676, - "page": 8 - } - ], - "sectionNumber": 33, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72646Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "493e02609c107a68ee2ce1531bc52230", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 347.65378, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.816517, - "page": 8 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 128, - "endOffset": 136, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726463Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "e3b4ff16175b2b9ebf54fc0da3a6ac54", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 262.69376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 177.06721, - "page": 8 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of [Phenyl-14C]Mesotrione Syngenta ", - "textAfter": ", Covance Laboratories", - "comments": null, - "startOffset": 143, - "endOffset": 185, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726465Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6163c3830db73bcb9b59d8dd9e7e6c5d", - "type": "CBI_author", - "value": "Hand L.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 409.6939, - "y": 72.8305 - }, - "width": 9.546082, - "height": 34.290478, - "page": 8 - } - ], - "sectionNumber": 37, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726468Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6045a9c0a9a3f846ece4a5d46d39b9cb", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 161.68283 - }, - "width": 9.59116, - "height": 32.884663, - "page": 8 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1654, - "endOffset": 1660, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726471Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "8ee2509aa4b3be829a3ff9be116bf8c5", - "type": "CBI_author", - "value": "Graham R., Yeomans P.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 324.67392, - "y": 72.8305 - }, - "width": 9.546082, - "height": 47.871548, - "page": 8 - }, - { - "topLeft": { - "x": 336.1939, - "y": 72.8305 - }, - "width": 9.546082, - "height": 49.847515, - "page": 8 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726473Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "eb910b29d79903bc20ce1b15d7e904a2", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 743.6299 - }, - "width": 8.452839, - "height": 18.208395, - "page": 8 - } - ], - "sectionNumber": 60, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726476Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6bae922dfb0bf85ff033dd46532bdc68", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 8 - } - ], - "sectionNumber": 72, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726479Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "99edb891d94cbe76fe633c5e4c143a10", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 308.65347, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.80248, - "page": 8 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 259, - "endOffset": 267, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726481Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "721ef2551f65022c85da5263ab909faf", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 393.6736, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.80248, - "page": 8 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 208, - "endOffset": 216, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726484Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "d7e19ea51d153a53347ca999498aa47d", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 8 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1664, - "endOffset": 1672, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726487Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cb4a8de93dde53e609db55274b339101", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 8 - } - ], - "sectionNumber": 72, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726489Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "bd2c3fda7bc43aeef68230a52ec0fcd7", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 432.67377, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 8 - } - ], - "sectionNumber": 37, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 92, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726491Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "6404648584fc5f4ade891bfcf3d15e5e", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 359.17377, - "y": 302.86966 - }, - "width": 9.546082, - "height": 177.06721, - "page": 8 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Surface Water Syngenta ", - "textAfter": ", 8252099 GLP,", - "comments": null, - "startOffset": 137, - "endOffset": 179, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726494Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "24be8b4a200f5f93010e4e96f7b38127", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 425.65378, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.816517, - "page": 9 - } - ], - "sectionNumber": 44, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 136, - "endOffset": 144, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726497Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "bc62f8ed38a420ff6fe493f63ced1884", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 375.1939, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 9 - } - ], - "sectionNumber": 43, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 94, - "endOffset": 102, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726499Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a7995370dd77932b242702e32346492a", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 9 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1760, - "endOffset": 1768, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726502Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "b7a75258d8975d5752c7591b16e0993c", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 471.6736, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.794483, - "page": 9 - } - ], - "sectionNumber": 44, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 216, - "endOffset": 224, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726505Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c0941e8cdf55107219d69685a974cd15", - "type": "CBI_author", - "value": "Hardy I.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 313.15393, - "y": 72.8305 - }, - "width": 9.546082, - "height": 34.87463, - "page": 9 - } - ], - "sectionNumber": 42, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726507Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3659dfaecdc85e98add05d8a43d55b19", - "type": "CBI_address", - "value": "Smithers Viscient (ESG) Ltd, Harrogate, UK", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 437.17377, - "y": 302.87067 - }, - "width": 9.546082, - "height": 177.06721, - "page": 9 - } - ], - "sectionNumber": 44, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of Mesotrione Syngenta ", - "textAfter": ", 8252095 GLP,", - "comments": null, - "startOffset": 145, - "endOffset": 187, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72651Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3753cd7f7075cdf26810c86952b22a80", - "type": "CBI_address", - "value": "Syngenta - Jealott’s Hill, Bracknell, United Kingdom", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 262.69376, - "y": 302.87067 - }, - "width": 9.546082, - "height": 171.98543, - "page": 9 - }, - { - "topLeft": { - "x": 274.15363, - "y": 302.87067 - }, - "width": 9.546082, - "height": 34.075947, - "page": 9 - } - ], - "sectionNumber": 41, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AG, Basel, Switzerland ", - "textAfter": ", RJ3635B GLP,", - "comments": null, - "startOffset": 160, - "endOffset": 212, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726513Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1edb32054e7f922ea15fa61b4d625056", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 297.1936, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.804523, - "page": 9 - } - ], - "sectionNumber": 41, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 241, - "endOffset": 249, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726516Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "eba05eb3b1b1b6c8bd4e5f5ee7673f95", - "type": "CBI_author", - "value": "Hand L., Davison K.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 72.8305 - }, - "width": 9.546066, - "height": 84.82434, - "page": 9 - } - ], - "sectionNumber": 41, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 19, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726519Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "e7bb73b5bcfd5214d1992539afd79b12", - "type": "CBI_author", - "value": "Hardy I.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 352.15393, - "y": 72.8305 - }, - "width": 9.546082, - "height": 34.862576, - "page": 9 - } - ], - "sectionNumber": 43, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726523Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "370c8feb7aabad82fbff5691ccb45e12", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 336.1939, - "y": 302.87067 - }, - "width": 9.546082, - "height": 36.80248, - "page": 9 - } - ], - "sectionNumber": 42, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726528Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "4093b09c87dec9938e4b772f9f94cd32", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 9 - } - ], - "sectionNumber": 39, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726535Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "bfb9b689fbefb64d1feef3a72457a9f3", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 239.6538, - "y": 302.87067 - }, - "width": 9.546066, - "height": 151.51546, - "page": 9 - }, - { - "topLeft": { - "x": 251.17378, - "y": 302.87067 - }, - "width": 9.546066, - "height": 46.74535, - "page": 9 - } - ], - "sectionNumber": 41, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Volcanic Ash Soil ", - "textAfter": " Syngenta -", - "comments": null, - "startOffset": 112, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726538Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "23d83f6f6b654274ef2384c25f3970f0", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 9 - } - ], - "sectionNumber": 73, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726541Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cbc505176ca4be1a1b9be40a12ea40b8", - "type": "CBI_author", - "value": "Hurst L.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 391.15393, - "y": 72.8305 - }, - "width": 9.546082, - "height": 34.866604, - "page": 9 - } - ], - "sectionNumber": 44, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726544Z" - } - ], - "engines": [ - "RULE", - "NER", - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "10889a4015257d88773f369070cf46f3", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 743.6299 - }, - "width": 8.452839, - "height": 18.208395, - "page": 9 - } - ], - "sectionNumber": 61, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726547Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "c8bf805cb90375eb77462e70853c25e0", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 161.68283 - }, - "width": 9.59116, - "height": 32.884663, - "page": 9 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1750, - "endOffset": 1756, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72655Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "066b43d2b4ff0a9539ecc1ac12d0b2e5", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 72.83055 - }, - "width": 9.591164, - "height": 32.902676, - "page": 9 - } - ], - "sectionNumber": 39, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726552Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3dc7ebcb7e951d1b85dee1f016bebb3e", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 9 - } - ], - "sectionNumber": 73, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726555Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "74eb27fdce23b8b8c8efd95bdd4cc864", - "type": "CBI_address", - "value": "Syngenta - Jealott’s Hill International, Bracknell, Berkshire, United Kingdom", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 262.69376, - "y": 302.86966 - }, - "width": 9.546082, - "height": 154.58565, - "page": 10 - }, - { - "topLeft": { - "x": 274.15363, - "y": 302.86966 - }, - "width": 9.546082, - "height": 151.5114, - "page": 10 - } - ], - "sectionNumber": 48, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AG, Basel, Switzerland ", - "textAfter": ", RJ3634B 04JH012", - "comments": null, - "startOffset": 170, - "endOffset": 247, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726558Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "928bbcb7c7bb309664dbd76ea94585d2", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8305 - }, - "width": 8.45282, - "height": 33.277798, - "page": 10 - } - ], - "sectionNumber": 74, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726561Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "ade29e59c8877a9f54716a98c6aa8a90", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 322.2385, - "y": 644.72015 - }, - "width": 8.981506, - "height": 33.48565, - "page": 10 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2080, - "endOffset": 2088, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726564Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "daaa6a2458d305be5bd0d298093a3c4d", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 322.2385, - "y": 75.3515 - }, - "width": 8.981506, - "height": 33.540695, - "page": 10 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1924, - "endOffset": 1932, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726567Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cc418aec715fa8e2faa38be7ac9b327b", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 161.68283 - }, - "width": 9.59116, - "height": 32.884663, - "page": 10 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1846, - "endOffset": 1852, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.72657Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "a087061a259e0c7e97f47cae81088269", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 322.2385, - "y": 442.6209 - }, - "width": 8.981506, - "height": 33.4858, - "page": 10 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2025, - "endOffset": 2033, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726572Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "5a88eb0fbfedbf2fb589ae7f8412a3eb", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 308.65347, - "y": 302.86966 - }, - "width": 9.546082, - "height": 36.804523, - "page": 10 - } - ], - "sectionNumber": 48, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 284, - "endOffset": 292, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726575Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "2f8310084ccbe5b80fd5507e50549b85", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 72.83055 - }, - "width": 9.591164, - "height": 32.902676, - "page": 10 - } - ], - "sectionNumber": 46, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726578Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cf4cefb0e98e078daeda5716f9e05ed4", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.5645 - }, - "width": 9.59116, - "height": 48.467686, - "page": 10 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1856, - "endOffset": 1864, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726581Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1abf4ce67806b222a0dbb318df713719", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.85 - }, - "width": 8.452835, - "height": 33.273823, - "page": 10 - } - ], - "sectionNumber": 46, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726583Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "fe311fc6bfe101da8fa9b614e2d98879", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.15088 - }, - "width": 8.45282, - "height": 38.223026, - "page": 10 - } - ], - "sectionNumber": 74, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726586Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "1b4ec460057275668869d190a4246cac", - "type": "CBI_author", - "value": "Oliver R., Edwards P.", - "reason": "Author found", - "matchedRule": 10, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: Version history1", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.67393, - "y": 72.8305 - }, - "width": 9.546066, - "height": 77.3925, - "page": 10 - }, - { - "topLeft": { - "x": 228.19392, - "y": 72.8305 - }, - "width": 9.546066, - "height": 9.578136, - "page": 10 - } - ], - "sectionNumber": 48, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726589Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "0d8ce27d8ec7e15ea50bae1a3c173d1d", - "type": "CBI_address", - "value": "Syngenta Crop Protection AG, Basel, Switzerland", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 239.6538, - "y": 302.86966 - }, - "width": 9.546066, - "height": 151.51546, - "page": 10 - }, - { - "topLeft": { - "x": 251.17378, - "y": 302.86966 - }, - "width": 9.546066, - "height": 46.74535, - "page": 10 - } - ], - "sectionNumber": 48, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Natural Water Photolysis ", - "textAfter": " Syngenta -", - "comments": null, - "startOffset": 122, - "endOffset": 169, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726592Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "fdf8375641f8d32c9239bd51fe5b9f1d", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 739.1898 - }, - "width": 8.452839, - "height": 18.208395, - "page": 10 - } - ], - "sectionNumber": 62, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726594Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cce568872ec505a25c09135a2e31a95e", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 122.21089 - }, - "width": 8.45282, - "height": 38.223026, - "page": 11 - } - ], - "sectionNumber": 75, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 13, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726597Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "cfd75b927cd26359a2d8aa0c3a652f03", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 48.147198, - "y": 739.2497 - }, - "width": 8.452839, - "height": 18.208395, - "page": 11 - } - ], - "sectionNumber": 63, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 66, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.7266Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "3c86af4b3361f3e8962a541f4e8038c1", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 548.96716, - "y": 72.8905 - }, - "width": 8.45282, - "height": 33.277805, - "page": 11 - } - ], - "sectionNumber": 75, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726602Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "eee5ed27d702339669b765abee8b7412", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 428.5314 - }, - "width": 9.59116, - "height": 32.94782, - "page": 11 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2248, - "endOffset": 2254, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726605Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "92ae19a850a83fd5add50d36cc60e2bb", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 63.088833, - "y": 695.66766 - }, - "width": 9.59116, - "height": 48.453648, - "page": 11 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2258, - "endOffset": 2266, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726608Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "682afb3c1a9416b26b9ad99be6ab2968", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.0472, - "y": 727.91 - }, - "width": 8.452835, - "height": 33.273823, - "page": 11 - } - ], - "sectionNumber": 50, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 230, - "endOffset": 238, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726611Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "4f6e80e93437ef6e95b0c019d58aed96", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history1", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.60885, - "y": 72.89055 - }, - "width": 9.591164, - "height": 32.902676, - "page": 11 - } - ], - "sectionNumber": 50, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-19T10:08:57.726613Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "dictionaryEntry": true, - "image": false, - "dossierDictionaryEntry": false - }, - { - "id": "85332c3d20842ca0d73c3acff5142ed8", - "type": "manual", - "value": "FICATION OF AN ACTIVE\nSUBSTANCE UNDER COMMISSION\nREGUL", - "reason": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "matchedRule": 0, - "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", - "redacted": true, - "section": null, - "color": [ - 0.67058825, - 0.7529412, - 0.76862746 - ], - "positions": [ - { - "topLeft": { - "x": 220.21333, - "y": 434.3365 - }, - "width": 192.82153, - "height": 22.33188, - "page": 1 - }, - { - "topLeft": { - "x": 162.41959, - "y": 415.9167 - }, - "width": 270.31027, - "height": 22.33188, - "page": 1 - }, - { - "topLeft": { - "x": 190.44016, - "y": 397.55615 - }, - "width": 56.01233, - "height": 22.33188, - "page": 1 - } - ], - "sectionNumber": -1, - "manual": true, - "status": "APPROVED", - "manualRedactionType": "ADD", - "manualRedactionUserId": "cc1653f7-42a0-4120-ae9d-1497095f7844", - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "dictionaryEntry": false, - "image": false, - "dossierDictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", - "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 23, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 1 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redactionLogSingleStudyOral.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redactionLogSingleStudyOral.json deleted file mode 100644 index 052f7f9..0000000 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/redactionLogSingleStudyOral.json +++ /dev/null @@ -1,22883 +0,0 @@ -{ - "analysisVersion": 1, - "redactionLogEntry": [ - { - "id": "5b83337c5d0d265f4156e1c07a307190", - "type": "recommendation_CBI_author", - "value": "REQUIREMENT(S):", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 126.86999, - "y": 557.70044 - }, - "width": 111.59678, - "height": 14.304, - "page": 1 - } - ], - "sectionNumber": 3, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "DATA ", - "textAfter": " OECD 474", - "comments": null, - "startOffset": 5, - "endOffset": 20, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464025Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": true, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "303b3e37ef54fb43a01992bd72332aea", - "type": "hint_only", - "value": "performing laboratory", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 89.880005, - "y": 405.90054 - }, - "width": 173.35599, - "height": 14.304, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 126, - "endOffset": 147, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464051Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7b05bba7e3a62e7f9b2c5e5ba3474d55", - "type": "false_positive", - "value": "STUDY PAGE", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "VOLUME 1 OF 1 OF STUDY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 228.27591, - "y": 198.78064 - }, - "width": 41.67758, - "height": 14.304, - "page": 1 - }, - { - "topLeft": { - "x": 89.88, - "y": 171.1803 - }, - "width": 34.332397, - "height": 14.304, - "page": 1 - } - ], - "sectionNumber": 5, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 17, - "endOffset": 27, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464052Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e1569966a462a9a8c584b63508e7ec60", - "type": "CBI_address", - "value": "Jealott’s Hill International Research Centre Bracknell, Berkshire, RG42 6EY, United Kingdom", - "reason": "Performing laboratory found for non vertebrate study", - "matchedRule": 33, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 269.8776, - "y": 254.10071 - }, - "width": 208.96506, - "height": 14.082, - "page": 1 - }, - { - "topLeft": { - "x": 269.8836, - "y": 240.30066 - }, - "width": 247.0274, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Number: TK0331185 SPONSOR(S): ", - "textAfter": " Syngenta Ltd", - "comments": null, - "startOffset": 332, - "endOffset": 423, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464053Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e5858a7c2d30709c78db9d385b7c9e5e", - "type": "PII", - "value": "David Chubb", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 269.88, - "y": 516.3005 - }, - "width": 65.32001, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "AUTHOR(S): ", - "textAfter": " Laura Penn,", - "comments": null, - "startOffset": 11, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464053Z" - } - ], - "engines": [ - "DICTIONARY", - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f9c76ef5506cb7836816c5a6423ec6f8", - "type": "CBI_address", - "value": "Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom", - "reason": "Performing laboratory found for non vertebrate study", - "matchedRule": 33, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 269.88, - "y": 405.90054 - }, - "width": 166.63632, - "height": 14.082, - "page": 1 - }, - { - "topLeft": { - "x": 269.88, - "y": 392.10056 - }, - "width": 117.28003, - "height": 14.082, - "page": 1 - }, - { - "topLeft": { - "x": 269.88, - "y": 378.30057 - }, - "width": 135.64001, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "2019 PERFORMING LABORATORY: ", - "textAfter": " LABORATORY PROJECT", - "comments": null, - "startOffset": 149, - "endOffset": 228, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464054Z" - } - ], - "engines": [ - "DICTIONARY", - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "239189a3e7a517af179515386f07fc62", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 89.880005, - "y": 516.3005 - }, - "width": 53.67401, - "height": 14.304, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464054Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "cd112770d3035c7b02558934e182abd7", - "type": "PII", - "value": "Laura Penn, BSc (Hons), MSc, MRSB", - "reason": "AUTHOR(S) was found", - "matchedRule": 29, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 269.88, - "y": 502.5005 - }, - "width": 186.249, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 23, - "endOffset": 56, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464055Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "b2d8a543abd123b4d92a6dd6b0d3bc83", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 284.88358, - "y": 433.50052 - }, - "width": 35.67395, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 114, - "endOffset": 120, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464056Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ed087e6f8e534e1565cfcf3370589391", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 284.86798, - "y": 474.9005 - }, - "width": 20.996765, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 77, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464056Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "bf13de5b4e0622690350296330919d01", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "AUTHOR(S): David Chubb\nLaura Penn, BSc (Hons), MSc, MRSB", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 269.88, - "y": 267.90063 - }, - "width": 45.664, - "height": 14.082, - "page": 1 - } - ], - "sectionNumber": 4, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 424, - "endOffset": 432, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464057Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "37eee3e9d589a5cc529bfec38c3ba479", - "type": "logo", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 89.88, - "y": 716.24 - }, - "width": 184.32, - "height": 53.76, - "page": 1 - } - ], - "sectionNumber": 3, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464057Z" - } - ], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "51bddbbb0f18e1c0364ebc9d921e8d31", - "type": "false_positive", - "value": "left", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "VOLUME 1 OF 1 OF STUDY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 353.0231, - "y": 712.0803 - }, - "width": 16.98877, - "height": 14.082, - "page": 2 - } - ], - "sectionNumber": 5, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 104, - "endOffset": 108, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464058Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "95e07db110ed3e998c0f034aa0be1633", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 479.86572, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 2 - } - ], - "sectionNumber": 900, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464058Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a5d348f3126d5f467ca5ab59fbd5a224", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 467.13, - "y": 57.200012 - }, - "width": 22.552277, - "height": 13.282, - "page": 3 - } - ], - "sectionNumber": 901, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464059Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "dd64076f8086bdfce6e4d75e2188b92d", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 94.74202, - "y": 436.15402 - }, - "width": 68.57077, - "height": 13.282, - "page": 3 - } - ], - "sectionNumber": 6, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 959, - "endOffset": 973, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464059Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f5f2f90a56f234aa36203cbd992cd7af", - "type": "PII", - "value": "David Chubb", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 94.41202, - "y": 449.36502 - }, - "width": 62.151215, - "height": 13.282, - "page": 3 - } - ], - "sectionNumber": 6, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "to 2018 . ", - "textAfter": " Study Director", - "comments": null, - "startOffset": 947, - "endOffset": 958, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46406Z" - } - ], - "engines": [ - "DICTIONARY", - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d00f671b3d895c29347bf2e78ffca7b4", - "type": "CBI_address", - "value": "Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 266.81802, - "y": 396.57 - }, - "width": 159.55402, - "height": 13.282, - "page": 3 - }, - { - "topLeft": { - "x": 266.73004, - "y": 383.37 - }, - "width": 111.812805, - "height": 13.282, - "page": 3 - }, - { - "topLeft": { - "x": 266.74103, - "y": 369.917 - }, - "width": 129.21384, - "height": 13.282, - "page": 3 - } - ], - "sectionNumber": 6, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Toxicology Performing Laboratory: ", - "textAfter": null, - "comments": null, - "startOffset": 1022, - "endOffset": 1101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46406Z" - } - ], - "engines": [ - "DICTIONARY", - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "bc68025d4e10654a9dee7bac9c3b349d", - "type": "hint_only", - "value": "performing laboratory", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 94.17, - "y": 396.57 - }, - "width": 106.44902, - "height": 13.282, - "page": 3 - } - ], - "sectionNumber": 6, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 999, - "endOffset": 1020, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464061Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7bb4420fdc33d7f3d211851491d08ba7", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": -0.1000061, - "y": -0.0799866 - }, - "width": 595.2001, - "height": 842.16, - "page": 3 - } - ], - "sectionNumber": 6, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464061Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "ba62ddb2f1994da800ab9609a18edc05", - "type": "false_positive", - "value": "left", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "FLAGGING STATEMENT", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 353.0231, - "y": 712.0803 - }, - "width": 16.98877, - "height": 14.082, - "page": 4 - } - ], - "sectionNumber": 7, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 46, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464062Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0fa548e4a26eeac45df82889b9afce48", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 479.86572, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 4 - } - ], - "sectionNumber": 902, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464062Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5a09c7949b86702c43d3b39d40bd5745", - "type": "false_positive", - "value": "STUDY PLAN", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "STUDY PLAN", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 89.88, - "y": 670.56036 - }, - "width": 77.31521, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 9, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 10, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464063Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f19f5cf98e1d1c3a8a04133fb5868d9b", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 131.8272, - "y": 351.4203 - }, - "width": 23.000793, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464064Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e926d616d5b12af56d5c456e62596f4b", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 161.1, - "y": 615.36035 - }, - "width": 24.995193, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464064Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d629c35573b7da4b491ce68a2707643c", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 131.8272, - "y": 384.9003 - }, - "width": 23.000793, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464065Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ba4023d8b057e0d64f180ba60bc4a852", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 102.17998, - "y": 478.38043 - }, - "width": 25.005997, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464065Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ee16d4db804c946603b2791142e62339", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 107.53439, - "y": 698.28033 - }, - "width": 89.94165, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 8, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 122, - "endOffset": 139, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464066Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "426eeee3b9c13e14aeda1350e3731fd4", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 441.75864, - "y": 615.36035 - }, - "width": 77.27933, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 51, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464067Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0c0ca825d17f35e970c8aeb77780a1b9", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 441.42722, - "y": 451.8603 - }, - "width": 23.000824, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 49, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464067Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5b0fd2af0b4a64ee33bf4c84e2f4438c", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 441.42722, - "y": 351.4203 - }, - "width": 23.000824, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 30, - "endOffset": 33, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464068Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "73ba7fc002444b4e17df99ce65b5fbaa", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 397.97998, - "y": 485.28043 - }, - "width": 24.99524, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 39, - "endOffset": 43, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464068Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b8c1615703d7b32a65fd4f18d1d7fbc8", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 131.8308, - "y": 451.8603 - }, - "width": 23.003204, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 11, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464069Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "60f860a5c95af69e0b0ed02d116640f4", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 331.74, - "y": 615.36035 - }, - "width": 24.99524, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 30, - "endOffset": 34, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464069Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9bbb9061140f1527ae342a3b77443299", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 401.52356, - "y": 601.68036 - }, - "width": 35.67395, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 69, - "endOffset": 75, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46407Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "613dab8b881c44ec0d2e514e86012855", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 488.99298, - "y": 485.28043 - }, - "width": 30.949585, - "height": 14.304, - "page": 5 - }, - { - "topLeft": { - "x": 390.41998, - "y": 471.48044 - }, - "width": 44.350098, - "height": 14.304, - "page": 5 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 56, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46407Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "01152a5e76c05e5685417745e13ba8f4", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 192.06, - "y": 751.9203 - }, - "width": 155.33633, - "height": 15.674159, - "page": 5 - } - ], - "sectionNumber": 8, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464071Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4d71062b13e86bb7589d94459c3c34a4", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 441.42725, - "y": 418.3803 - }, - "width": 23.000824, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 12, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 48, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464071Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "838bf16f7131a59eb65f6c47b267abe5", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 176.40361, - "y": 601.68036 - }, - "width": 35.674026, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 18, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464072Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a82c7446b092219893eb52c6ac849390", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 403.49518, - "y": 532.6804 - }, - "width": 72.03882, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 157, - "endOffset": 171, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464072Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a1d4813baa5f1ab05869a024a1b00a84", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 131.82, - "y": 418.3803 - }, - "width": 22.996002, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 12, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464073Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9a51404259fe3c0dd9dc2e042517edc2", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "STUDY PLAN", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 415.45804, - "y": 643.0803 - }, - "width": 71.97653, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 9, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 79, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464073Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f8d152c93c8ff26b62b9d363fb33a5c7", - "type": "false_positive", - "value": "Sequani.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 236.78409, - "y": 698.28033 - }, - "width": 42.647186, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 8, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 148, - "endOffset": 156, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464074Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c2e20c29fde1dd1c882c23ce3f135751", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 479.86572, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 903, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464074Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b9366e1cd5ad9830522f92622500ee17", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Date of Review\n08 August 2017\nDate Reported to the Study Director\n08 August 2017", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 441.42722, - "y": 384.9003 - }, - "width": 23.000824, - "height": 14.082, - "page": 5 - } - ], - "sectionNumber": 13, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 32, - "endOffset": 35, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464075Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ea45671385a8d4a8e7bd99d6b345808b", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 427.12918, - "y": 634.2604 - }, - "width": 51.66278, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 88, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464075Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "45c015be09f73362e4afbd9f91427263", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 102.17999, - "y": 674.52026 - }, - "width": 25.009605, - "height": 14.304, - "page": 6 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464076Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "57a76df5729b1068aeb953f9cf7232d5", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 430.80002, - "y": 571.6203 - }, - "width": 44.320007, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 111, - "endOffset": 119, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464076Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0dcc6517f55f7e4764066482550ae46e", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.5292, - "y": 490.80032 - }, - "width": 51.66282, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 21, - "endOffset": 29, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464077Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3ea8b0c370352c60f70e3f8e82f832b3", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 142.86, - "y": 754.9203 - }, - "width": 155.35875, - "height": 15.674159, - "page": 6 - } - ], - "sectionNumber": 24, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464077Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "39790ad7a0fc2013e12ec9a817fc621e", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 121.200005, - "y": 620.4603 - }, - "width": 44.32, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 38, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464078Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "dc75b91bfa3973a2136957ecab4f0039", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 426.7836, - "y": 599.2203 - }, - "width": 52.297516, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 76, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464078Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "16d87283c85c909ed24ee16aef6c7603", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.18359, - "y": 648.0603 - }, - "width": 52.297607, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464079Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "19c0927a2b797683637d58e8f77462c5", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 430.80002, - "y": 524.34033 - }, - "width": 44.320007, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 108, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464079Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4878db81c80290bc000f5be72ba135fd", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 121.200005, - "y": 524.34033 - }, - "width": 44.32, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 38, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46408Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ea7ba74a4694e876d2162366845b58ed", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.52919, - "y": 443.4003 - }, - "width": 51.66281, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 22, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 18, - "endOffset": 26, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464081Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "95631405183c2b8795709b52dbed9a6c", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 479.86572, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 904, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464081Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5b81755e78bcda891f0fc27e80648e13", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 433.8, - "y": 429.60034 - }, - "width": 38.320007, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 22, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 110, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464082Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5a1bb2da7f453b3db15ca3a7aee7a08c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 426.7836, - "y": 551.9403 - }, - "width": 52.297516, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 73, - "endOffset": 82, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464082Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7343dc5bbdbac6f879f8d71f0ffd86e5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.18359, - "y": 551.9403 - }, - "width": 52.297607, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464083Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3ab1ffb09a86e973878cd5c9bcec298e", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 125.52359, - "y": 457.2003 - }, - "width": 35.674026, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 22, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 9, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464083Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "266870edc7448bb4c3e305771341c2af", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 427.1292, - "y": 585.4203 - }, - "width": 51.66278, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 94, - "endOffset": 102, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464084Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "196dcc0966d74d1a28cd0ccc46667f88", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.5292, - "y": 634.2603 - }, - "width": 51.66282, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 21, - "endOffset": 29, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464084Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "525efed436a4eec2545412b5195c65c7", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 427.1292, - "y": 538.1403 - }, - "width": 51.66278, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 91, - "endOffset": 99, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464085Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a558cb4bfdceacda5d4b1d12c1ff89cc", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.5292, - "y": 538.1403 - }, - "width": 51.66282, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 21, - "endOffset": 29, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464085Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5fde4bbe88eaba42495f2755e0c14d1c", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 435.12357, - "y": 457.20032 - }, - "width": 35.67395, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 22, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 78, - "endOffset": 84, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464086Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d30da7bf8e06350b395c57e0b435d024", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 427.12918, - "y": 443.40033 - }, - "width": 51.66278, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 22, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 93, - "endOffset": 101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464086Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c85466cc52898fe5863a8ae102b7e863", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 430.8, - "y": 477.00034 - }, - "width": 44.320007, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 112, - "endOffset": 120, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464087Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2322812cb46215ae6e56b51908de75a5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 426.78357, - "y": 504.6003 - }, - "width": 52.297516, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 77, - "endOffset": 86, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464087Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c4fa31b77419bc0837edac90f5a3da11", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 121.200005, - "y": 571.6203 - }, - "width": 44.32, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 38, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464093Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4d018ca2becb74c085129ae1b3a9f12d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.18359, - "y": 599.2203 - }, - "width": 52.297607, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464094Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "343a76343adcf4afa795e01d4e7cdda0", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 430.8, - "y": 620.4604 - }, - "width": 44.320007, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 105, - "endOffset": 113, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464094Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7354a2cb179e1b0fa066c2581d9dc751", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 121.200005, - "y": 477.00034 - }, - "width": 44.32, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 38, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464095Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1590b7fb0d47a61e221196426aba6785", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 426.78357, - "y": 648.06036 - }, - "width": 52.297516, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 70, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464095Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "449ac22bf0f5532f4147687f5d741da7", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.18359, - "y": 504.6003 - }, - "width": 52.297607, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464096Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "fdf8a5b2de5e1645343c5755c6983379", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 414.41998, - "y": 681.4203 - }, - "width": 24.99524, - "height": 14.304, - "page": 6 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 37, - "endOffset": 41, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464096Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "500b394840d3a7268d02312a3aad1645", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 427.12918, - "y": 490.80032 - }, - "width": 51.66278, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 21, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464097Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d3cc954dbaf26dde46b23ba115663062", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 124.2, - "y": 429.6003 - }, - "width": 38.320007, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 22, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 42, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464097Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3b330f954e2a0bb5da68281ac0c6843d", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 117.5292, - "y": 585.4203 - }, - "width": 51.66282, - "height": 14.082, - "page": 6 - } - ], - "sectionNumber": 19, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 21, - "endOffset": 29, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464098Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d500e1515e1e6ae2925a12012f79ced0", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 271.472, - "y": 552.57 - }, - "width": 85.42059, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 319, - "endOffset": 336, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464099Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "64a525aeae4068391e25165c9256ff80", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 254.2691, - "y": 608.7202 - }, - "width": 23.992493, - "height": 13.215799, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 158, - "endOffset": 162, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464099Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1ddade462bafa8bb098db6c10d5146ec", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 476.62, - "y": 615.45 - }, - "width": 28.662018, - "height": 13.215799, - "page": 7 - }, - { - "topLeft": { - "x": 373.54, - "y": 602.25 - }, - "width": 42.276123, - "height": 13.215799, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 194, - "endOffset": 208, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.4641Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ad33e2375b82a277bd82845530dc0cc8", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 371.123, - "y": 512.72 - }, - "width": 19.581207, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 600, - "endOffset": 604, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.4641Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "24b46be171eba96596ef4eea2cce2b13", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 94.106, - "y": 430.159 - }, - "width": 85.66699, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 642, - "endOffset": 659, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464101Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "eb24a8063a848813e505f17b32b5ae30", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 371.6214, - "y": 615.44525 - }, - "width": 23.750458, - "height": 13.215799, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 173, - "endOffset": 177, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464102Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f9cda2005cb25b4f0d50674104a2e121", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 410.25, - "y": 526.16 - }, - "width": 21.526001, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 525, - "endOffset": 528, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464102Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "09792f0508c3dbbe7748b272f1d77e0b", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 298.4, - "y": 583.28 - }, - "width": 19.822113, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 258, - "endOffset": 262, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464103Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "65be316552f75bda752d2fc2972afec4", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 423.2, - "y": 583.28 - }, - "width": 19.581207, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 271, - "endOffset": 275, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464103Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "fab24edb8c0c81d08516f18fad869f12", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 398.34, - "y": 661.05 - }, - "width": 68.575806, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 112, - "endOffset": 126, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464104Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0e88ed7bd034daba5b860c0d3e95b7dc", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 253.51, - "y": 583.28 - }, - "width": 23.818192, - "height": 13.282, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 249, - "endOffset": 253, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464104Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "28e0b5a413819c1788699ba7ec9faf31", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 145.91, - "y": 725.84 - }, - "width": 147.84073, - "height": 14.5398, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464105Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0efcdd3756ac1bcb4591cd02ba42533c", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "QUALITY ASSURANCE STATEMENT (CONTINUED)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": -0.1000061, - "y": -0.0799866 - }, - "width": 595.2001, - "height": 842.16, - "page": 7 - } - ], - "sectionNumber": 26, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464105Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "705523afe3df4b00a191c33e967927d6", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 476.97, - "y": 59.130005 - }, - "width": 22.552277, - "height": 13.282, - "page": 8 - } - ], - "sectionNumber": 906, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464106Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "179e0d0f562a26ce816868c1d69e4561", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "REPORT APPROVAL PAGE", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 376.65, - "y": 610.16 - }, - "width": 22.335602, - "height": 13.282, - "page": 8 - } - ], - "sectionNumber": 27, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 199, - "endOffset": 203, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464106Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e908fe69f92127d4b67887f6150d0111", - "type": "false_positive", - "value": "Sequani Limited and", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "REPORT APPROVAL PAGE", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 448.51404, - "y": 690.33 - }, - "width": 76.220215, - "height": 13.282, - "page": 8 - }, - { - "topLeft": { - "x": 104.44504, - "y": 677.13 - }, - "width": 16.972, - "height": 13.282, - "page": 8 - } - ], - "sectionNumber": 27, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 97, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464107Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f3d89af9b447171e7832d1b2f249b9dc", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "REPORT APPROVAL PAGE", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 104.58499, - "y": 610.162 - }, - "width": 37.174606, - "height": 13.282, - "page": 8 - } - ], - "sectionNumber": 27, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study performed. ", - "textAfter": " Management Date", - "comments": null, - "startOffset": 180, - "endOffset": 187, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464107Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2d1ce84e5491e7ee2789013da273ce93", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "REPORT APPROVAL PAGE", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": -0.1000061, - "y": -0.0799866 - }, - "width": 595.2001, - "height": 842.16, - "page": 8 - } - ], - "sectionNumber": 27, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464108Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "a6fc4b1cb24ebd4265941663c5a50c85", - "type": "PII", - "value": "David Chubb Laura Penn, BSc (Hons), MSc, MRSB Study Director from 13 March 2019 Study Director from study initiation until 13 March 2019 William Gregory, MIAT Head of Laboratory Animal Sciences and Pathology Services Ian Davies, MSc Section Manager, Bioanalysis Brenda Finney, PhD Principal Scientist, BioSciences Rachel Martin Team Leader, Formulation Sciences Sally Clode, PhD, FRSB, ERT Internal Peer Reviewer", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 35, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "GENERAL INFORMATION", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 91.26, - "y": 638.8804 - }, - "width": 65.32, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26, - "y": 625.0804 - }, - "width": 149.98001, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26, - "y": 611.2804 - }, - "width": 34.3552, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 261.42, - "y": 638.8804 - }, - "width": 174.58209, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 261.42, - "y": 625.0804 - }, - "width": 274.97684, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26001, - "y": 594.6604 - }, - "width": 421.78485, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 261.42, - "y": 580.8604 - }, - "width": 41.73996, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26001, - "y": 564.3004 - }, - "width": 314.82736, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26001, - "y": 547.6804 - }, - "width": 324.12183, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26001, - "y": 531.0604 - }, - "width": 345.1267, - "height": 14.082, - "page": 9 - }, - { - "topLeft": { - "x": 91.26001, - "y": 514.5004 - }, - "width": 281.812, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 141, - "endOffset": 553, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464108Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "80158e133e46736cdacaca5b32fd45d1", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.95114, - "y": 397.0805 - }, - "width": 35.680054, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 698, - "endOffset": 704, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464109Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "6c5635c096d5eaef35fbcdbab3e39f6f", - "type": "CBI_address", - "value": "Syngenta Ltd.", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 156.90364, - "y": 485.34045 - }, - "width": 73.02643, - "height": 14.304, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "On behalf of ", - "textAfter": ": Name Title", - "comments": null, - "startOffset": 567, - "endOffset": 580, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464109Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "fef9b3962f222e462f4812f1bdabae0c", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.94635, - "y": 410.8805 - }, - "width": 35.689636, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 802, - "endOffset": 808, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46411Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "fc26017a50300fecf3aa50c564f85d65", - "type": "false_positive", - "value": "Guideline", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 413.53812, - "y": 299.58057 - }, - "width": 48.309906, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1034, - "endOffset": 1043, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464111Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "510bccf1a87363350647b6cb89d96a58", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 503.85593, - "y": 299.58057 - }, - "width": 21.007599, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1052, - "endOffset": 1056, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464111Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "20b374eef5ecad303273a3b325f198d1", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 275.016, - "y": 383.28052 - }, - "width": 22.996002, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 767, - "endOffset": 770, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464112Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f27aecaf286a0b8a79e5c5a812d6f7d7", - "type": "false_positive", - "value": "Sequani Ltd.:", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 156.85684, - "y": 670.56036 - }, - "width": 70.99124, - "height": 14.304, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 116, - "endOffset": 129, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464112Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "136690780d7a6ae06a02d6c8811368ca", - "type": "hint_only", - "value": "contributors", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GENERAL INFORMATION", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 89.88, - "y": 711.9603 - }, - "width": 68.371605, - "height": 14.304, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 20, - "endOffset": 32, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464113Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "df621f258bb26aae0f6e5e56359a8d94", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 479.86572, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 907, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464113Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f790da9e12ac00e7a8cc6e0b5ea540b7", - "type": "PII", - "value": "Zofi McKenzie, PhD Syngenta Study Manager", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 37, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "GENERAL INFORMATION", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 91.26, - "y": 453.66046 - }, - "width": 292.5158, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 28, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 593, - "endOffset": 634, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464114Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "4119508391842c93fa48e680f774e90e", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Deviations from the guidelines\nNone", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 89.88002, - "y": 197.04053 - }, - "width": 16.338394, - "height": 14.082, - "page": 9 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 57, - "endOffset": 60, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464114Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "545c905286f1b8d003d6faf924a690da", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 10 - } - ], - "sectionNumber": 908, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464115Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ec167cad5ece412adc9151bdab13aca4", - "type": "false_positive", - "value": "Sequani Limited for", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Deviations from the guidelines\nNone", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 163.60083, - "y": 729.36035 - }, - "width": 97.57596, - "height": 14.082, - "page": 10 - } - ], - "sectionNumber": 29, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 288, - "endOffset": 307, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464115Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "cee28653810c6c8e8c99305817b4327c", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "TABLE OF CONTENTS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 498.1199, - "y": 728.8803 - }, - "width": 24.338776, - "height": 14.082, - "page": 11 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 18, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464116Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0c1e9e5998f59c53fad42c3643bddabf", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 11 - } - ], - "sectionNumber": 909, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464116Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e177730d43ddc69ba182ccd0f999d029", - "type": "CBI_author", - "value": "Marrow", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "TABLE OF CONTENTS", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 425.67587, - "y": 236.28027 - }, - "width": 39.675964, - "height": 14.082, - "page": 11 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Preparation of Bone ", - "textAfter": " Smear ...", - "comments": null, - "startOffset": 2040, - "endOffset": 2046, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464117Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8893c11feb6a57e0c14d39ec39e86556", - "type": "hint_only", - "value": "quality assurance", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "TABLE OF CONTENTS", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 89.88, - "y": 649.5603 - }, - "width": 133.23517, - "height": 14.304, - "page": 11 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 135, - "endOffset": 152, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464117Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8f541c6fc2fed09f3c33570731c706b5", - "type": "hint_only", - "value": "certificate of analysis", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "TABLE OF CONTENTS", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 176.28, - "y": 383.1603 - }, - "width": 109.64801, - "height": 14.082, - "page": 12 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4378, - "endOffset": 4401, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464118Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4f723dd20bbf8c38bbd24c7a8f281412", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 12 - } - ], - "sectionNumber": 910, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464118Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0c1703c5e73da8f841b992bdfcc55829", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "TABLE OF CONTENTS", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 176.28, - "y": 663.8403 - }, - "width": 81.62082, - "height": 14.304, - "page": 12 - } - ], - "sectionNumber": 30, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3017, - "endOffset": 3027, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464119Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0a89474084541782c4431e41b5f4d9a6", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 13 - } - ], - "sectionNumber": 911, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46412Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a605796da46698a22eef92519cf5244a", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 14 - } - ], - "sectionNumber": 912, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46412Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f70f0be8d68cec8e3dcc1949ec8a197b", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 15 - } - ], - "sectionNumber": 913, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464121Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9b61f3af65e559bc3be8a65d0f943d90", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.3 Justification of Test System and Route of Administration", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 89.880005, - "y": 171.0003 - }, - "width": 16.345596, - "height": 14.082, - "page": 15 - } - ], - "sectionNumber": 37, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 344, - "endOffset": 347, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464121Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7ec8d106e2519bcdf0be01fe0679f5dc", - "type": "false_positive", - "value": "March", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.0 MATERIALS AND METHODS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 125.199615, - "y": 613.7403 - }, - "width": 32.315186, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 51, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 137, - "endOffset": 142, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464122Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "29fa51befd491707cdeeea1ba893c9de", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.0 MATERIALS AND METHODS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 465.77267, - "y": 627.5403 - }, - "width": 38.32715, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 51, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 117, - "endOffset": 124, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464123Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d957505f62d26ef850ec5d02633ae69b", - "type": "false_positive", - "value": "Light", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.0 MATERIALS AND METHODS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 239.628, - "y": 464.8803 - }, - "width": 26.987198, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 44, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 11, - "endOffset": 16, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464123Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "197ae440a95f2183cc69515aa9d4dbc6", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.0 MATERIALS AND METHODS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 343.02, - "y": 429.3603 - }, - "width": 45.61847, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 46, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 15, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464124Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "95575a2493f9bcfa4347f9f476913c1f", - "type": "hint_only", - "value": "Purity", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.0 MATERIALS AND METHODS", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 125.4, - "y": 400.8003 - }, - "width": 30.351982, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 48, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464125Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "6f3cbac6ec313e3230dabde894472ae3", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.0 MATERIALS AND METHODS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 395.76, - "y": 627.5403 - }, - "width": 22.999573, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 51, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 103, - "endOffset": 107, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464126Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "39b430303c5383e24c97a0a14bf27210", - "type": "false_positive", - "value": "Light", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.0 MATERIALS AND METHODS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 424.74, - "y": 471.7803 - }, - "width": 27.008759, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 44, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 59, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464126Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4078c4ca271b88f041b3505c0b841633", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 914, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464127Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "6bf93183b69fbf1f0b6043ac42b25896", - "type": "hint_only", - "value": "certificate of analysis", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.0 MATERIALS AND METHODS", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 131.82716, - "y": 329.8203 - }, - "width": 103.74161, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 51, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 457, - "endOffset": 480, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464127Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3023c2626ff92011ac683b1c1825715c", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "3.0 MATERIALS AND METHODS", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 283.4952, - "y": 613.7403 - }, - "width": 39.685608, - "height": 14.082, - "page": 16 - } - ], - "sectionNumber": 51, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "were given the ", - "textAfter": " log reference", - "comments": null, - "startOffset": 168, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464128Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "cfd1c083b51dd912ce7fee06b1d6cf8a", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 17 - } - ], - "sectionNumber": 915, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464128Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "afb42f1c95ea25e2102a86226a4a8b94", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.1.1 Preparation of the test item formulations", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 161.49847, - "y": 508.56055 - }, - "width": 16.3432, - "height": 14.082, - "page": 17 - } - ], - "sectionNumber": 52, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1514, - "endOffset": 1517, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464129Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "15ad6dd8e49f806af6431c342ba07779", - "type": "CBI_address", - "value": "Sequani Limited", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "3.4 Animals", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 238.224, - "y": 142.7403 - }, - "width": 80.6391, - "height": 14.082, - "page": 18 - } - ], - "sectionNumber": 55, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "were delivered to ", - "textAfter": " within the", - "comments": null, - "startOffset": 343, - "endOffset": 358, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464129Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8286bc27f44e1132f37b9523803a8ae9", - "type": "CBI_address", - "value": "Crl", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "3.4 Animals", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 418.81653, - "y": 211.7403 - }, - "width": 16.345581, - "height": 14.082, - "page": 18 - } - ], - "sectionNumber": 55, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "mice of the ", - "textAfter": ":CD-1 strain (approximately", - "comments": null, - "startOffset": 78, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46413Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0e29a855aedd05e8edcbdce8393a7039", - "type": "CBI_address", - "value": "Charles River (UK) Ltd., Margate, Kent, CT9 4LT, England.", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "3.4 Animals", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 427.86, - "y": 184.14026 - }, - "width": 95.64398, - "height": 14.082, - "page": 18 - }, - { - "topLeft": { - "x": 89.879974, - "y": 170.34027 - }, - "width": 195.97601, - "height": 14.082, - "page": 18 - } - ], - "sectionNumber": 55, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "phase), supplied by ", - "textAfter": " The animals", - "comments": null, - "startOffset": 255, - "endOffset": 312, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46413Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e2c01f81f8a252761dd14693c802d202", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 18 - } - ], - "sectionNumber": 916, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464131Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8b9f98d4d90167da20458bebc3f554bc", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 19 - } - ], - "sectionNumber": 917, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464131Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a29157515c0f95f093eed2a5c50da770", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "3.4 Animals", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 490.4739, - "y": 493.86053 - }, - "width": 39.678375, - "height": 14.082, - "page": 19 - } - ], - "sectionNumber": 55, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "retained within the ", - "textAfter": " archives. It", - "comments": null, - "startOffset": 1525, - "endOffset": 1532, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464132Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "bafb889d8d300fdb85c40393596e29b9", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 20 - } - ], - "sectionNumber": 918, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464132Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "86ac19667392a26ea8b1383a4b152c2a", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 21 - } - ], - "sectionNumber": 919, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464133Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "004e3d94ab639bea1b65ae5fa7fe4336", - "type": "CBI_author", - "value": "Marrow", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "3.6 Necropsy of RF3 Animals and Preparation of Bone Marrow Smear", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 411.89062, - "y": 321.72034 - }, - "width": 47.175476, - "height": 15.00984, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Preparation of Bone ", - "textAfter": " Smear Surviving", - "comments": null, - "startOffset": 52, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464134Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e82ae1d98e8e9ed8b1f9360eff4cb729", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 22 - } - ], - "sectionNumber": 920, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464134Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "39e86e791c086436c5d68402309c49a4", - "type": "CBI_author", - "value": "Kamra", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "3.6 Necropsy of RF3 Animals and Preparation of Bone Marrow Smear", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 454.83612, - "y": 157.92041 - }, - "width": 33.637634, - "height": 14.082, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of Gollapudi and ", - "textAfter": " (7). These", - "comments": null, - "startOffset": 928, - "endOffset": 933, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464135Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a2377f8cbbcfca8870baa9125d0c8138", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.6 Necropsy of RF3 Animals and Preparation of Bone Marrow Smear", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 202.58395, - "y": 185.46045 - }, - "width": 16.251999, - "height": 14.082, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 701, - "endOffset": 704, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464135Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "412f6a92bdb6d3aaccf1716edb220ee9", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.5.3 Main study", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 159.61203, - "y": 394.80032 - }, - "width": 16.345596, - "height": 14.082, - "page": 22 - } - ], - "sectionNumber": 85, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 881, - "endOffset": 884, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464136Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "de82002401523bf2345648da762c0ef4", - "type": "false_positive", - "value": "left", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.6 Necropsy of RF3 Animals and Preparation of Bone Marrow Smear", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 277.50244, - "y": 185.46045 - }, - "width": 16.992432, - "height": 14.082, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 717, - "endOffset": 721, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464136Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "63822a36574a2d4e1463bf189139d2ba", - "type": "false_positive", - "value": "Sorensen’s", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.6 Necropsy of RF3 Animals and Preparation of Bone Marrow Smear", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 141.80399, - "y": 157.92041 - }, - "width": 53.677567, - "height": 14.082, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 865, - "endOffset": 875, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464137Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "93b57f255f77e8272a9e209f9cbff8f9", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.9 Scoring of Micronuclei", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 89.88, - "y": 391.1403 - }, - "width": 16.348, - "height": 14.082, - "page": 23 - } - ], - "sectionNumber": 89, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 27, - "endOffset": 30, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464137Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c525cda1087e9ebf6d65137052f0ad08", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 23 - } - ], - "sectionNumber": 921, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464138Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1059790eb43e324122c9e5e8b52487ff", - "type": "hint_only", - "value": "study director", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.11 Acceptance Criteria", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 89.880005, - "y": 225.96033 - }, - "width": 71.992004, - "height": 14.082, - "page": 24 - } - ], - "sectionNumber": 91, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1080, - "endOffset": 1094, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464138Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "42c6c0167937044dca8eb82e26ffa894", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 24 - } - ], - "sectionNumber": 922, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464139Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a4fd37dbd0507c327f78b4a384b0e2fa", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.10 Statistical Analysis (main study only)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 89.880005, - "y": 756.9603 - }, - "width": 16.335999, - "height": 14.082, - "page": 24 - } - ], - "sectionNumber": 90, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 682, - "endOffset": 685, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464139Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d980e6f445368ac5a5832ce8c10d0f8b", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "3.12 Interpretation of Results", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 326.24173, - "y": 713.8204 - }, - "width": 39.678467, - "height": 14.082, - "page": 25 - } - ], - "sectionNumber": 92, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "statistical significance exceeded ", - "textAfter": "’s historical negative", - "comments": null, - "startOffset": 407, - "endOffset": 414, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46414Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7a9595ac6e5d03afb65271c0f25c1b1d", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 25 - } - ], - "sectionNumber": 923, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46414Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9e28336c56cd9742c691d9d2b7283a86", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 26 - } - ], - "sectionNumber": 924, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464141Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "af713052e09eb945fc800b371ebb3e13", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "4.0 RESULTS AND DISCUSSION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 344.45782, - "y": 605.3404 - }, - "width": 16.34082, - "height": 14.082, - "page": 26 - } - ], - "sectionNumber": 93, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 589, - "endOffset": 592, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464141Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "69719ff799d2bbc251c1054e8110c7c0", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "4.0 RESULTS AND DISCUSSION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 259.00558, - "y": 356.9406 - }, - "width": 16.247192, - "height": 14.082, - "page": 26 - } - ], - "sectionNumber": 93, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1768, - "endOffset": 1771, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464142Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "161dbbceac080d15b9657c4d1ddc9db0", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "4.2 Range-Finding Phase", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 507.35156, - "y": 756.9603 - }, - "width": 16.347961, - "height": 14.082, - "page": 27 - } - ], - "sectionNumber": 94, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 510, - "endOffset": 513, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464143Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "44238f2d69626070ca0180aa7474afa2", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 27 - } - ], - "sectionNumber": 925, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464144Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f4cb12be8016718cb7841cc32a05621c", - "type": "false_positive", - "value": "Nor were", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "4.3 Main Study", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 376.85425, - "y": 354.42035 - }, - "width": 45.98532, - "height": 14.082, - "page": 27 - } - ], - "sectionNumber": 95, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 223, - "endOffset": 231, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464144Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1ae69635c33f1bc3306780f581e4dcff", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 28 - } - ], - "sectionNumber": 926, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464145Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "fe0fbe4db1a9570b15d1aa7295a2a799", - "type": "false_positive", - "value": "Caspary, W.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 385.47357, - "y": 574.08044 - }, - "width": 60.613617, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 703, - "endOffset": 714, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464145Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a400969f9f3a6ab703b6ba4491d11f04", - "type": "CBI_author", - "value": "Dertinger, S.D.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 384.89294, - "y": 491.28052 - }, - "width": 74.27786, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Moore, M.M. and ", - "textAfter": " Flow Cytometric", - "comments": null, - "startOffset": 1092, - "endOffset": 1107, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464146Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "96d5faf71903d0611983d853d3c6ad98", - "type": "false_positive", - "value": "Hayashi, M.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 360.48007, - "y": 505.0805 - }, - "width": 60.016113, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1005, - "endOffset": 1016, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464146Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ae1c02a16664d7760fae61e5cc8c5477", - "type": "CBI_author", - "value": "Nakajima, M.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 408.4806 - }, - "width": 67.28082, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "T., Asano, N., ", - "textAfter": ", Saito, J.,", - "comments": null, - "startOffset": 1379, - "endOffset": 1391, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464147Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "6a1b492b033c6d3bbe1437ffd3774529", - "type": "CBI_author", - "value": "Galloway", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 460.26355, - "y": 698.28033 - }, - "width": 47.664337, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Assay. In: SM ", - "textAfter": " (ed.), Report", - "comments": null, - "startOffset": 246, - "endOffset": 254, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464147Z" - } - ], - "engines": [ - "DICTIONARY", - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5a9e0571847498b2623cf1c015271dac", - "type": "CBI_author", - "value": "Vannier, B.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.880005, - "y": 698.28033 - }, - "width": 56.656006, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Sutou, S. and ", - "textAfter": " In vivo", - "comments": null, - "startOffset": 180, - "endOffset": 191, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464148Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "b3ed548e2e2c1f04653a4591d1df44f7", - "type": "false_positive", - "value": "MacGregor, J.T.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 246.23409, - "y": 725.8803 - }, - "width": 80.27669, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 44, - "endOffset": 59, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464148Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1ddff9732720ac4cd341a5a5af5a6d08", - "type": "false_positive", - "value": "Blakey, D.H.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 401.851, - "y": 725.8803 - }, - "width": 64.28818, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 75, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464149Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f9bf3d5b0400bbdb932f43a07a04dd4a", - "type": "false_positive", - "value": "Kirkland (ed.),", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 314.28232, - "y": 629.2804 - }, - "width": 71.94626, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 514, - "endOffset": 529, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464149Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "881436428e75f2fa9e5bc84e1d9e76fd", - "type": "CBI_author", - "value": "Bishop, M.E.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 211.2084, - "y": 505.0805 - }, - "width": 65.02121, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(4) MacGregor, J.T., ", - "textAfter": ", McNamee, J.P.,", - "comments": null, - "startOffset": 976, - "endOffset": 988, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46415Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "3ea37b0b53aa3e518cb7cf25d37f608e", - "type": "false_positive", - "value": "Gatehouse, D.G.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 310.10876, - "y": 643.0804 - }, - "width": 80.94626, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 431, - "endOffset": 446, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464151Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2a7b6b05284bc611ab2cb9b6a6124426", - "type": "CBI_author", - "value": "Asano, N.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 425.50342, - "y": 505.0805 - }, - "width": 49.335785, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "J.P., Hayashi, M., ", - "textAfter": " Wakata, A.,", - "comments": null, - "startOffset": 1018, - "endOffset": 1027, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464151Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "1f3ece68738c0704142df41e52187a5d", - "type": "false_positive", - "value": "Henderson, L.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 477.0766, - "y": 643.0804 - }, - "width": 56.038025, - "height": 14.082, - "page": 29 - }, - { - "topLeft": { - "x": 125.879974, - "y": 629.2804 - }, - "width": 11.334396, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 464, - "endOffset": 477, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464151Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a9fa16437fad5329d6b5801f6316e207", - "type": "false_positive", - "value": "Tice, R.R.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 451.098, - "y": 574.08044 - }, - "width": 50.36441, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 716, - "endOffset": 726, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464152Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ec93226915a2f9b4c1fbbbd124e0c993", - "type": "CBI_author", - "value": "Olerson, F.B.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 189.51115, - "y": 712.0803 - }, - "width": 65.61275, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "D.H., KirshVolders, M., ", - "textAfter": ", Pacchierotti, F.,", - "comments": null, - "startOffset": 107, - "endOffset": 120, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464153Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "fa9c90257855be00b9cb13a07911f015", - "type": "CBI_address", - "value": "Sequani", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 287.61835, - "y": 311.88068 - }, - "width": 39.644745, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Acid in Acetonitrile. ", - "textAfter": " Study Number:", - "comments": null, - "startOffset": 1819, - "endOffset": 1826, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464153Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "79909248960c32ae262640d295577a4d", - "type": "CBI_author", - "value": "Asano, N.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 475.23846, - "y": 422.28058 - }, - "width": 49.314453, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "M., Suzuki, T., ", - "textAfter": ", Nakajima, M.,", - "comments": null, - "startOffset": 1368, - "endOffset": 1377, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464154Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "cdd1e551aac75a9c050da2ba23adca18", - "type": "CBI_author", - "value": "Pacchierotti, F.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 260.1311, - "y": 712.0803 - }, - "width": 74.032166, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "M., Olerson, F.B., ", - "textAfter": ", Romagna, F.,", - "comments": null, - "startOffset": 122, - "endOffset": 138, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464154Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "5a9b2ccdaea6dafa5ff78094f57af2b8", - "type": "CBI_author", - "value": "McNamee, J.P.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 275.24524, - "y": 422.28058 - }, - "width": 74.25284, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "S.D., Bishop, M.E., ", - "textAfter": ", Hayashi, M.,", - "comments": null, - "startOffset": 1328, - "endOffset": 1341, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464155Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "fb112285ac26ae8833c4b24d70b6f693", - "type": "CBI_author", - "value": "Witt, K.L.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 574.08044 - }, - "width": 50.267242, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(1990) 115-141. (3) ", - "textAfter": ", Livanos, E.,", - "comments": null, - "startOffset": 648, - "endOffset": 658, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464155Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "50b82282d75153125df5415c6270c744", - "type": "CBI_author", - "value": "Dertinger, S.D.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 422.28058 - }, - "width": 74.33684, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "92 107. (5) ", - "textAfter": ", Bishop, M.E.,", - "comments": null, - "startOffset": 1297, - "endOffset": 1312, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464156Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "906a5e2b69b6766ed3b979867bbf3875", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 927, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464156Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9cfd855fe46c56d9662c9d3a4cb358c5", - "type": "CBI_author", - "value": "Recio, L.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 560.28046 - }, - "width": 45.328003, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Tice, R.R. and ", - "textAfter": " Comparison of", - "comments": null, - "startOffset": 731, - "endOffset": 740, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464157Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "419939402b4b3bbb8cf801ec96e69ae7", - "type": "CBI_author", - "value": "Conover, W.J.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879944, - "y": 242.88074 - }, - "width": 70.33844, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "64 45-46. (8) ", - "textAfter": " Practical Nonparametric", - "comments": null, - "startOffset": 1997, - "endOffset": 2010, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464157Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "a8580935ebdfa0e8329fe38f4b5074e3", - "type": "false_positive", - "value": "Anderson, D.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 331.51434, - "y": 725.8803 - }, - "width": 65.3331, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 61, - "endOffset": 73, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464158Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c334ad71360824b53b177bdf5bbc7fe2", - "type": "CBI_author", - "value": "Romagna, F.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 339.1705, - "y": 712.0803 - }, - "width": 62.69211, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "F.B., Pacchierotti, F., ", - "textAfter": ", Shimada, H.,", - "comments": null, - "startOffset": 140, - "endOffset": 151, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464159Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "7977467083c6f134112f826f193636d4", - "type": "false_positive", - "value": "Shimada, H.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 406.86984, - "y": 712.0803 - }, - "width": 60.60623, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 153, - "endOffset": 164, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464159Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "66140def6431d2a04a08bec3c5573a12", - "type": "CBI_author", - "value": "Torous, D.K.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 316.19998, - "y": 574.08044 - }, - "width": 64.28439, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "E., Kissling, G.E., ", - "textAfter": ", Caspary, W.,", - "comments": null, - "startOffset": 689, - "endOffset": 701, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46416Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "c3be3c32a41ddd2257fd77fc2dc49f85", - "type": "CBI_author", - "value": "KirshVolders, M.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 471.11758, - "y": 725.8803 - }, - "width": 31.756012, - "height": 14.082, - "page": 29 - }, - { - "topLeft": { - "x": 125.880005, - "y": 712.0803 - }, - "width": 58.68396, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "D., Blakey, D.H., ", - "textAfter": ", Olerson, F.B.,", - "comments": null, - "startOffset": 89, - "endOffset": 105, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46416Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "4334eb456c27c8a8e45fae39f38762f1", - "type": "published_information", - "value": "Toxicological Sciences", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.52156866, - 0.92156863, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 393.18, - "y": 380.8806 - }, - "width": 112.673096, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1589, - "endOffset": 1611, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464161Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "eed5c341c1aa55682d2a7e128874dd8c", - "type": "CBI_author", - "value": "Phipps, K.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 339.48065 - }, - "width": 51.361557, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "94 83-91 (6) ", - "textAfter": " Difenoconazole -", - "comments": null, - "startOffset": 1632, - "endOffset": 1642, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464161Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "f9402791e55f69731a199197f42d1e3f", - "type": "false_positive", - "value": "Sutou, S.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 472.4941, - "y": 712.0803 - }, - "width": 44.728058, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 166, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464162Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ab81e04a052fcb23ff33ce15f59ca9e9", - "type": "CBI_author", - "value": "Kissling, G.E.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 242.22011, - "y": 574.08044 - }, - "width": 68.99068, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "K.L., Livanos, E., ", - "textAfter": ", Torous, D.K.,", - "comments": null, - "startOffset": 673, - "endOffset": 687, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464163Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "fc4b9339e6e3ed6eb0eb4db874369f94", - "type": "published_information", - "value": "Toxicological Sciences", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.52156866, - 0.92156863, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 448.54562, - "y": 463.68054 - }, - "width": 67.626434, - "height": 14.082, - "page": 29 - }, - { - "topLeft": { - "x": 125.879974, - "y": 449.88055 - }, - "width": 42.988007, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1252, - "endOffset": 1274, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464163Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "191080dfc60aa7dd39022e001705035c", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 125.878494, - "y": 751.9203 - }, - "width": 95.063034, - "height": 15.674159, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4, - "endOffset": 14, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464164Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4910f2d5482f7de5cde196009af88526", - "type": "false_positive", - "value": "Bootman, J.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 396.0478, - "y": 643.0804 - }, - "width": 58.664734, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 448, - "endOffset": 459, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464164Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d40c50fb07c6e889102216a434fe66e9", - "type": "false_positive", - "value": "Ashby, J.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 259.14728, - "y": 643.0804 - }, - "width": 45.96872, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 420, - "endOffset": 429, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464165Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ce88ab21cf6530b0a02b42b5e7020059", - "type": "false_positive", - "value": "Moore, M.M.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 296.19836, - "y": 491.28052 - }, - "width": 66.35211, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1076, - "endOffset": 1087, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464166Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a4819bbe002bd642f7b93722cc6a41bd", - "type": "false_positive", - "value": "Hayashi, M.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 354.5161, - "y": 422.28058 - }, - "width": 60.052124, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1343, - "endOffset": 1354, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464166Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "580491f26cc30ba6a395b8bbc30ec010", - "type": "CBI_author", - "value": "Wakata, A.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 476.83682, - "y": 505.0805 - }, - "width": 55.301178, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "M., Asano, N. ", - "textAfter": ", Nakajima, M.,", - "comments": null, - "startOffset": 1028, - "endOffset": 1038, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464167Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "324b6932765d509166aca68b4cf69c90", - "type": "CBI_author", - "value": "Livanos, E.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 181.16164, - "y": 574.08044 - }, - "width": 56.044052, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(3) Witt, K.L., ", - "textAfter": ", Kissling, G.E.,", - "comments": null, - "startOffset": 660, - "endOffset": 671, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464167Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "507ec3973aba9b03f4845ed0fc00df36", - "type": "CBI_author", - "value": "Suzuki, T.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 419.58627, - "y": 422.28058 - }, - "width": 50.65576, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "J.P., Hayashi, M., ", - "textAfter": ", Asano, N.,", - "comments": null, - "startOffset": 1356, - "endOffset": 1366, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464168Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "53514ec0f4dae6620d6d65befaa1b91d", - "type": "false_positive", - "value": "Richold, M.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 643.0804 - }, - "width": 58.64804, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 393, - "endOffset": 404, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464168Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9aefd0817857f58b4134a8c0cd0332f1", - "type": "CBI_author", - "value": "Chandley, A.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 189.52083, - "y": 643.0804 - }, - "width": 64.63365, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(2) Richold, M., ", - "textAfter": ", Ashby, J.,", - "comments": null, - "startOffset": 406, - "endOffset": 418, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464169Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "fe98d3f3563f3628849fb19948619066", - "type": "published_information", - "value": "Press", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.52156866, - 0.92156863, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 415.23596, - "y": 615.4804 - }, - "width": 26.332, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 606, - "endOffset": 611, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464169Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "dad9fcc27625c76d9d676d1d615a020c", - "type": "CBI_author", - "value": "Torous D.K.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 300.23276, - "y": 408.4806 - }, - "width": 61.299896, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "J., Moore, M., ", - "textAfter": " and MacGregor,", - "comments": null, - "startOffset": 1415, - "endOffset": 1426, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46417Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "a623d148e0442a3c4a870b2aa54c7dae", - "type": "false_positive", - "value": "Hayashi, M.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 125.880005, - "y": 725.8803 - }, - "width": 60.00403, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 19, - "endOffset": 30, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46417Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "6a622cde4cd3dc06d44039ead53ec92a", - "type": "CBI_author", - "value": "Aidoo, A.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 242.50787, - "y": 491.28052 - }, - "width": 48.683258, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "M., Saito, J., ", - "textAfter": ", Moore, M.M.", - "comments": null, - "startOffset": 1065, - "endOffset": 1074, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464171Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "db4c8086f475e93e9bf4821df4eb2c0f", - "type": "CBI_author", - "value": "DJ Kirkland", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 297.95755, - "y": 629.2804 - }, - "width": 59.967896, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Cytogenetics Assays, in: ", - "textAfter": " (ed.), Basic", - "comments": null, - "startOffset": 511, - "endOffset": 522, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464171Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "d5cb2b861552a70359036a929df3be5e", - "type": "CBI_author", - "value": "McNamee, J.P.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 281.2332, - "y": 505.0805 - }, - "width": 74.239655, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "J.T., Bishop, M.E., ", - "textAfter": ", Hayashi, M.,", - "comments": null, - "startOffset": 990, - "endOffset": 1003, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464172Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "d7fa831c0b8bdd5a37bf01fdb4c1531c", - "type": "false_positive", - "value": "Moore, M.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 242.56807, - "y": 408.4806 - }, - "width": 52.67192, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1404, - "endOffset": 1413, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464172Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c4127802bb26c82af049b27dd3ae14f6", - "type": "CBI_author", - "value": "Bishop, M.E.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 205.22043, - "y": 422.28058 - }, - "width": 65.02124, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(5) Dertinger, S.D., ", - "textAfter": ", McNamee, J.P.,", - "comments": null, - "startOffset": 1314, - "endOffset": 1326, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464173Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "021f37c4e079b54baafd348740df9d69", - "type": "false_positive", - "value": "Kamra, O.P.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 214.23364, - "y": 284.2807 - }, - "width": 61.03598, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1872, - "endOffset": 1883, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464173Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e8a0a1a2c0fa8aa2b91b3363eba83c07", - "type": "CBI_author", - "value": "Saito, J.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 198.14153, - "y": 491.28052 - }, - "width": 39.35916, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "A., Nakajima, M., ", - "textAfter": ", Aidoo, A.,", - "comments": null, - "startOffset": 1054, - "endOffset": 1063, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464174Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "8b9933eac81d69319fea8e209f7a77cf", - "type": "false_positive", - "value": "Tice, R.R.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 190.88765, - "y": 725.8803 - }, - "width": 50.34282, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 32, - "endOffset": 42, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464174Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c371b7c51618e8076c2a6d9fbc48531e", - "type": "CBI_author", - "value": "Saito, J.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 198.17522, - "y": 408.4806 - }, - "width": 39.378433, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "N., Nakajima, M., ", - "textAfter": ", Moore, M.,", - "comments": null, - "startOffset": 1393, - "endOffset": 1402, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464175Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "37b052fe63744be124b6ede691305f31", - "type": "CBI_author", - "value": "MacGregor, J.T. Flow", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 383.8462, - "y": 408.4806 - }, - "width": 107.888916, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Torous D.K. and ", - "textAfter": " Cytometric Analysis", - "comments": null, - "startOffset": 1431, - "endOffset": 1451, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464175Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "234cb9cab4976fa33645c1eb7383c6d4", - "type": "false_positive", - "value": "MacGregor, J.T.", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 505.0805 - }, - "width": 80.324814, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 959, - "endOffset": 974, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464176Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2109ffbc8e6520dba82a9f9f6a3f118f", - "type": "CBI_author", - "value": "Gollapudi, B.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 284.2807 - }, - "width": 66.01845, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Number: BFI0716. (7) ", - "textAfter": " and Kamra,", - "comments": null, - "startOffset": 1854, - "endOffset": 1867, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464177Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "3fb69600c46e08d1a725eb9064fa5482", - "type": "published_information", - "value": "Workshop", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.52156866, - 0.92156863, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 256.54562, - "y": 684.48035 - }, - "width": 50.892334, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 290, - "endOffset": 298, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464177Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "05a7794df92f967e1b85cbe9fa5307a8", - "type": "CBI_author", - "value": "Nakajima, M.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "6.0 REFERENCES", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.879974, - "y": 491.28052 - }, - "width": 67.254364, - "height": 14.082, - "page": 29 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "N. Wakata, A., ", - "textAfter": ", Saito, J.,", - "comments": null, - "startOffset": 1040, - "endOffset": 1052, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464178Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "a40d3c92c55a8956485419a92e2c41d7", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 30 - } - ], - "sectionNumber": 928, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464178Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ff677c53dd8bdf3f645981056cc0c639", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 31 - } - ], - "sectionNumber": 929, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464179Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "fac51c34ed8f616dfae30ae44f8bfaff", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 32 - } - ], - "sectionNumber": 930, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464179Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d94edb7eff908878fda1d543838bc451", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 33 - } - ], - "sectionNumber": 931, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46418Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a40c9c6e0899f97e3dec07d4211ac934", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 34 - } - ], - "sectionNumber": 932, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46418Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a32e81af4cfb71301c81a6f693820cbf", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 35 - } - ], - "sectionNumber": 933, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464181Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e4c9d5c486c806f76ad4e0f6b83f4c7e", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "TABLE 3 Summary of Clinical Signs: Main Study", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.82535, - "y": 56.25049 - }, - "width": -26.07843, - "height": 14.082, - "page": 36 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 165, - "endOffset": 169, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464181Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2e219531689391ef6cdb32a95f8b3d02", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "TABLE 3 Summary of Clinical Signs: Main Study", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.82535, - "y": 56.25049 - }, - "width": -26.07843, - "height": 14.082, - "page": 37 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 256, - "endOffset": 260, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464182Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c8d9e82573be0e288747c17a66b14ce9", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.87405, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 38 - } - ], - "sectionNumber": 934, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464182Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "6f57282ad0d703b1e1772c40618d35d7", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 39 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464183Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7201b89a2e87c75001a709815f102dab", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 216.9144, - "y": 127.01128 - }, - "width": 10.748474, - "height": 15.701351, - "page": 40 - }, - { - "topLeft": { - "x": 228.43451, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.458858, - "page": 40 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 748, - "endOffset": 755, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464183Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7fe9c670adf35153e6e42874e04d4b43", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 40 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 662, - "endOffset": 666, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464184Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "803fef6c8624ca5f2a7b273432beea02", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 204.9144, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 41 - }, - { - "topLeft": { - "x": 216.42737, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.458858, - "page": 41 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1075, - "endOffset": 1082, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464184Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a109ec78bb0c976a66aa72edc7f54cbd", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 41 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 977, - "endOffset": 981, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464185Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a42c2dfebaeb1cab7d069291da4afa53", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 42 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1324, - "endOffset": 1328, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464186Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e056e738a5404e43095ee4316d694c2d", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 204.9144, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 42 - }, - { - "topLeft": { - "x": 216.42737, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.458858, - "page": 42 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1422, - "endOffset": 1429, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464186Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b78d6dd427e7a4090a635be80e1ab131", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 230.23453, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 43 - }, - { - "topLeft": { - "x": 241.68738, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.458858, - "page": 43 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1720, - "endOffset": 1727, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464187Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1aeb5b603520a2bff86eae70d9dc7fef", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 43 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1622, - "endOffset": 1626, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464187Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5be8e82becaf74d936049a2a2dcb78fb", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 323.0544, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 44 - }, - { - "topLeft": { - "x": 334.56738, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.46487, - "page": 44 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2180, - "endOffset": 2187, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464188Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ed0f758803b5104f5cb7ec85337e8e45", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 44 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2082, - "endOffset": 2086, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464188Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0d3eb3bd1215d975e66c58d0f8e93185", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 45 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2354, - "endOffset": 2358, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464189Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5e6c8d3e33aa26fcd3fe1ff8ecc91fcd", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 255.49442, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 45 - }, - { - "topLeft": { - "x": 267.0074, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.458858, - "page": 45 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2452, - "endOffset": 2459, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464189Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4f9efafa4343871af6c4f1896aea0646", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 46 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2717, - "endOffset": 2721, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46419Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5106e4a33cef1a46c65c241e67f2eae9", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 280.81454, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 46 - }, - { - "topLeft": { - "x": 292.3275, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.452847, - "page": 46 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2816, - "endOffset": 2823, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464191Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9a38cfb2c80e4ef6ebcdc7d1cb7c0f88", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 285.13452, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 47 - }, - { - "topLeft": { - "x": 296.58737, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.46487, - "page": 47 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3290, - "endOffset": 3297, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464191Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "bc0c8a511a7f90e78a952ada492d33ae", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 47 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3191, - "endOffset": 3195, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464192Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3cc50c5c87f67ca0a1393d185f98e364", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 48 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3446, - "endOffset": 3450, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464192Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c1d5300840d2474c7f0949769a42ef2f", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 285.13452, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 48 - }, - { - "topLeft": { - "x": 296.58737, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.46487, - "page": 48 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3545, - "endOffset": 3552, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464193Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "1659d6e9aec4c75dad6f71a21b5e5f70", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 49 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3664, - "endOffset": 3668, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464193Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4f1b01d77d6a554390dedde1c6b939df", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 396.91153, - "y": 121.6105 - }, - "width": 10.748474, - "height": 15.701359, - "page": 49 - }, - { - "topLeft": { - "x": 408.43152, - "y": 121.6105 - }, - "width": 10.748474, - "height": 18.458866, - "page": 49 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3750, - "endOffset": 3757, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464194Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2e7e8d19ee54883d485dab7520524a41", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 50 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3820, - "endOffset": 3824, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464194Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9642aa20b4d8f3cd1aecab82db2c661f", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 373.51453, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 50 - }, - { - "topLeft": { - "x": 385.0275, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.452847, - "page": 50 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 3918, - "endOffset": 3925, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464195Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a3f3058150baed5d4bd6ef8400154f14", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 448.63443, - "y": 127.0105 - }, - "width": 10.748474, - "height": 15.701351, - "page": 51 - }, - { - "topLeft": { - "x": 460.1474, - "y": 127.015915 - }, - "width": 10.748474, - "height": 18.458858, - "page": 51 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4323, - "endOffset": 4330, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464195Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2f8d288022589ae1077be7cfbd848336", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 51 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4225, - "endOffset": 4229, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464196Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "dc45cd7ee2ca2c01db16d2ebbd62fbbc", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 405.25153, - "y": 121.6105 - }, - "width": 10.748474, - "height": 15.701359, - "page": 52 - }, - { - "topLeft": { - "x": 416.7715, - "y": 121.6105 - }, - "width": 10.748474, - "height": 18.458866, - "page": 52 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4578, - "endOffset": 4585, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464196Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "af5776f136e3ff61642590c8552ebd4a", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 52 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4497, - "endOffset": 4501, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464197Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "bab0876dd81eb048ec16baeca9ed81ff", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 405.25153, - "y": 121.6105 - }, - "width": 10.748474, - "height": 15.701359, - "page": 53 - }, - { - "topLeft": { - "x": 416.7715, - "y": 121.6105 - }, - "width": 10.748474, - "height": 18.458866, - "page": 53 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4747, - "endOffset": 4754, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464197Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "00be164548cad713214095c475acecea", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 53 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4648, - "endOffset": 4652, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464198Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b314a4b6e29871f36f48630edb0c160c", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 54 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4817, - "endOffset": 4821, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464198Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b2af80e7637932c874763f9141e444b8", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 405.25153, - "y": 121.6105 - }, - "width": 10.748474, - "height": 15.701359, - "page": 54 - }, - { - "topLeft": { - "x": 416.7715, - "y": 121.6105 - }, - "width": 10.748474, - "height": 18.458866, - "page": 54 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 4916, - "endOffset": 4923, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464199Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e268608869ad141fe8562a66dfd1be2a", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 405.25153, - "y": 121.6105 - }, - "width": 10.748474, - "height": 15.701359, - "page": 55 - }, - { - "topLeft": { - "x": 416.7715, - "y": 121.6105 - }, - "width": 10.748474, - "height": 18.458866, - "page": 55 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 5110, - "endOffset": 5117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464199Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c0d474c4d845823e6182a8de39625333", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 55 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 5011, - "endOffset": 5015, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.4642Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5fdcebbcd385b88837b5b4c5472bc631", - "type": "false_positive", - "value": "Key NAD", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 232.69153, - "y": 121.6105 - }, - "width": 10.748474, - "height": 15.701359, - "page": 56 - }, - { - "topLeft": { - "x": 244.21155, - "y": 121.6105 - }, - "width": 10.748474, - "height": 18.458866, - "page": 56 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 5279, - "endOffset": 5286, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.4642Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5206589e9674d4661a4281a3e36a1bcf", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 56 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 5180, - "endOffset": 5184, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464201Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8d79e25b0be3b1b15a2a61fcb65f9cf3", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDICES SECTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 57 - } - ], - "sectionNumber": 396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 5349, - "endOffset": 5353, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464202Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e54c78c2298413b99b9db5f0ee6f9dbe", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 58 - } - ], - "sectionNumber": 935, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464202Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9603e8bfe6a49a63310655a8d9b935a1", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 59 - } - ], - "sectionNumber": 936, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464203Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b432c69cf12b562109b9560d773cf71c", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8343, - "y": 54.90033 - }, - "width": 24.331573, - "height": 14.082, - "page": 60 - } - ], - "sectionNumber": 937, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464203Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "104d9c657254895addb09efe2a132910", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 61 - } - ], - "sectionNumber": 938, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464204Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ad8c9372065d185ab5242efda8301747", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 62 - } - ], - "sectionNumber": 939, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464204Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "07a77406df55598431acba121a33e174", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 63 - } - ], - "sectionNumber": 940, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464205Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8939e74979cba27f6647e80f9638651f", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 64 - } - ], - "sectionNumber": 941, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464205Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d995efe31dcf944041db0278e810883e", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 65 - } - ], - "sectionNumber": 942, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464206Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ad8086434815896c6fbf5b87c42db576", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "SUMMARY", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 369.91522, - "y": 640.48303 - }, - "width": 33.90152, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 584, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "in samples from ", - "textAfter": " study BFI0714,", - "comments": null, - "startOffset": 173, - "endOffset": 180, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464206Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a4f1edef0338c89691628e828a2bf9eb", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "SUMMARY", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 400.32397, - "y": 628.75287 - }, - "width": 33.877106, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 584, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "reference BFI095MS (", - "textAfter": " study BFI0716).", - "comments": null, - "startOffset": 274, - "endOffset": 281, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464207Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4e44ebcfdff09cde83188dfcaa8005c1", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 90.84804, - "y": 498.29337 - }, - "width": 33.858658, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Supplier Batch number ", - "textAfter": " Log Number", - "comments": null, - "startOffset": 31, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464207Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2d785c6b367463d6adfb1b023e1f7e90", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 230.15108, - "y": 328.6144 - }, - "width": 19.696823, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 586, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 218, - "endOffset": 222, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464208Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2dee329a0d860cf668769da29e9cda17", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 230.14087, - "y": 449.8428 - }, - "width": 42.927612, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 202, - "endOffset": 210, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464208Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c14c17e427c5e817db5d8ae10a99487e", - "type": "CBI_author", - "value": "Salt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 90.84804, - "y": 365.0288 - }, - "width": 16.898926, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 586, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Sequani Log Number ", - "textAfter": "/base conversion factor", - "comments": null, - "startOffset": 50, - "endOffset": 54, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464209Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5be79c211eae29ff88f638c47a17d31e", - "type": "false_positive", - "value": "N/A", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 217.38052, - "y": 364.82483 - }, - "width": 18.544205, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 586, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 191, - "endOffset": 194, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464209Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3c75a8b44b307b8b229a0615fc205c65", - "type": "CBI_author", - "value": "Salt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 90.84804, - "y": 486.20624 - }, - "width": 16.898926, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Sequani Log Number ", - "textAfter": "/base conversion factor", - "comments": null, - "startOffset": 50, - "endOffset": 54, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46421Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "57d431a5d21da62759da82897e04fe2f", - "type": "false_positive", - "value": "White to off-white", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 217.36012, - "y": 461.92996 - }, - "width": 76.88887, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 173, - "endOffset": 191, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46421Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e2015a0c178bdf2df4e43cbba30ccdad", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 66 - } - ], - "sectionNumber": 943, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464211Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a4906e2c4ccbaa788d78b806b088b23c", - "type": "false_positive", - "value": "Sigma-Aldrich", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 217.39482, - "y": 522.2636 - }, - "width": 61.58464, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 126, - "endOffset": 139, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464211Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "6d051d0b5bdc86f821f49806c09338a3", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 90.84804, - "y": 377.06497 - }, - "width": 33.858658, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 586, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Supplier Batch number ", - "textAfter": " Log Number", - "comments": null, - "startOffset": 31, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464212Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9b2cf3e6fdce333795bada510efa65fb", - "type": "false_positive", - "value": "N/A", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REFERENCE COMPOUNDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 217.38052, - "y": 486.05325 - }, - "width": 18.544205, - "height": 11.645766, - "page": 66 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 162, - "endOffset": 165, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464213Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4772371b364b2117b09f075497cd95ac", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 67 - } - ], - "sectionNumber": 944, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464213Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0453ae2bea3948747073cc59a1cab92b", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 5 Bioanalytical Summary Report (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 68 - } - ], - "sectionNumber": 610, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 352, - "endOffset": 356, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464214Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a03695e1312346969e5d7a15a83397a9", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 4. Quality Control Sample Concentration Data (Blood)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 231.89613, - "y": 486.30823 - }, - "width": 18.639587, - "height": 11.165876, - "page": 69 - } - ], - "sectionNumber": 606, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 28, - "endOffset": 31, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464214Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "65253e0677bad2fe8d3766487367c0cb", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 3. Quality Control Sample Concentration Data (Plasma)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 231.89613, - "y": 645.9911 - }, - "width": 18.639587, - "height": 11.165876, - "page": 69 - } - ], - "sectionNumber": 601, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 28, - "endOffset": 31, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464215Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4961d39f7211d6bf905fc425cf52e2df", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 69 - } - ], - "sectionNumber": 945, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464215Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4e9ff5b0a9fb44cc9ceadc5416d04a57", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 5 Bioanalytical Summary Report (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 70 - } - ], - "sectionNumber": 621, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 196, - "endOffset": 200, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464216Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "32057afb525dfc06836e837daa552922", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 5 Bioanalytical Summary Report (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.80106, - "y": 56.25049 - }, - "width": -26.085571, - "height": 14.082, - "page": 71 - } - ], - "sectionNumber": 621, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 390, - "endOffset": 394, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464216Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "6c55025a9a9f01286db1af155f204629", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 72 - } - ], - "sectionNumber": 946, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464217Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f7e87eb6402180c5342b6e14d5e612c6", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 135.9812, - "y": 281.9391 - }, - "width": 28.786713, - "height": 12.265956, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 377, - "endOffset": 383, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464218Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3a20bf22391a7108203f2daeac8098ff", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 299.82608, - "y": 241.36255 - }, - "width": 19.741608, - "height": 12.265956, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 502, - "endOffset": 506, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464218Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f9da2581435df64fed5cb719f0e2d914", - "type": "false_positive", - "value": "Lane", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 145.01434, - "y": 220.90082 - }, - "width": 20.788788, - "height": 12.265956, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 554, - "endOffset": 558, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464219Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "0434925e758f8131fea6450be07134ef", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 299.65616, - "y": 281.9391 - }, - "width": 19.913269, - "height": 12.265956, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 414, - "endOffset": 418, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464219Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b69443d6b1b1d9257e119e142d28f002", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 194.9097, - "y": 364.8262 - }, - "width": 14.948212, - "height": 11.458977, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 226, - "endOffset": 230, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46422Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f84112ccfda98688840f3d0d66e5c5ae", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 184.0004, - "y": 383.37323 - }, - "width": 17.288025, - "height": 11.458977, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 186, - "endOffset": 190, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46422Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "cea6bcdc4011aa8cce4818d5f65597d2", - "type": "CBI_author", - "value": "Phipps", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "ANALYTICAL METHOD BFI095MS", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 145.49503, - "y": 261.47736 - }, - "width": 28.381363, - "height": 12.265956, - "page": 73 - } - ], - "sectionNumber": 623, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "I '?: K ", - "textAfter": " Checked: ....", - "comments": null, - "startOffset": 457, - "endOffset": 463, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464221Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "47486e529c2382cb3130ec0e02ebb7fc", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 73 - } - ], - "sectionNumber": 947, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464221Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "88619da893aeabfea62959148c98faf4", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 5 Bioanalytical Summary Report (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 82.59442, - "y": 116.94372 - }, - "width": 430.04214, - "height": 608.1282, - "page": 73 - } - ], - "sectionNumber": 622, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464222Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "599b45817835397858453b4c6e5e2b9e", - "type": "false_positive", - "value": "Grade", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.2. GLASSWARE", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 143.45398, - "y": 357.6126 - }, - "width": 20.399933, - "height": 10.391047, - "page": 74 - } - ], - "sectionNumber": 631, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 5, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464222Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2eed8bcf4e20dd4b73e6df7b6ca955ff", - "type": "false_positive", - "value": "Gilson", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3. APPARATUS/GLASSWARE/CONSUMABLES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 292.95782, - "y": 412.6209 - }, - "width": 22.189636, - "height": 10.391047, - "page": 74 - } - ], - "sectionNumber": 629, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 158, - "endOffset": 164, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464223Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "38261f84a394afd7fd18c52bb9f47c4c", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 74 - } - ], - "sectionNumber": 948, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464223Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3624c46951b318598221f49b0417cfab", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 75 - } - ], - "sectionNumber": 949, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464224Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "83167233b1e5547bf09c892d9e81d5b7", - "type": "false_positive", - "value": "down", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "5.2. DILUTED SOLUTIONS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 382.54895, - "y": 307.19128 - }, - "width": 18.65387, - "height": 10.391047, - "page": 76 - } - ], - "sectionNumber": 663, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 379, - "endOffset": 383, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464224Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "26e9fa102c7b0187012bad47ad0c5273", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 5. TEST ITEM / REFERENCE STANDARDS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 351.54236, - "y": 581.5598 - }, - "width": 30.583069, - "height": 10.391047, - "page": 76 - } - ], - "sectionNumber": 653, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 53, - "endOffset": 61, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464225Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e678752a16472e74542b914822ba11e4", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 76 - } - ], - "sectionNumber": 950, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464225Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2e43b146be6e8e4257b0646943ef55d0", - "type": "false_positive", - "value": "down", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "5.1. ANALYTICAL STOCK SOLUTIONS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 381.61133, - "y": 517.80115 - }, - "width": 18.646667, - "height": 10.391047, - "page": 76 - } - ], - "sectionNumber": 655, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 110, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464226Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f4d4de09c15a30d55677cc8299db436c", - "type": "false_positive", - "value": "Grade", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "5.1.1. DIFENOCONAZOLE", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 395.807, - "y": 473.07355 - }, - "width": 20.393616, - "height": 10.391047, - "page": 76 - } - ], - "sectionNumber": 656, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 191, - "endOffset": 196, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464227Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7cf3a60e6fcedb4adba2428c06286ffb", - "type": "false_positive", - "value": "down", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "5.4. INTERNAL STANDARD WORKING SOLUTION", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 382.54895, - "y": 480.94214 - }, - "width": 18.65387, - "height": 10.391047, - "page": 77 - } - ], - "sectionNumber": 671, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 384, - "endOffset": 388, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464227Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "34d48b134f82431fd744e836da56c27d", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 77 - } - ], - "sectionNumber": 951, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464228Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4a65d51216988c959da71edf346884eb", - "type": "false_positive", - "value": "down", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "6.2. VALIDATION SAMPLES / QUALITY CONTROL SAMPLES", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 392.27277, - "y": 417.263 - }, - "width": 18.644348, - "height": 10.391047, - "page": 78 - } - ], - "sectionNumber": 693, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 644, - "endOffset": 648, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464228Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "07cc00ff2e2d7c34f08543318af88502", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 78 - } - ], - "sectionNumber": 952, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464229Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9a84706bd0d8b85fcdcdea4fd72e4073", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 79 - } - ], - "sectionNumber": 953, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464229Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c8d06874162674683cfdedc9dcdf81eb", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 80 - } - ], - "sectionNumber": 954, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46423Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "32f13a0aefeece6f9e7529d2ff47187e", - "type": "PII", - "value": "Brenda Finney", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: BIOMARKERS METHOD BMK034FC", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 153.16916, - "y": 138.99426 - }, - "width": 48.420624, - "height": 10.557129, - "page": 81 - } - ], - "sectionNumber": 726, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 19, - "endOffset": 32, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46423Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "354d10cb33afac64b4c404b72f0cfcde", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 81 - } - ], - "sectionNumber": 955, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464231Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e5bde9f44ef6f254202badf3c09c2bf8", - "type": "PII", - "value": "Katie Ridge", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: BIOMARKERS METHOD BMK034FC", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 344.7821, - "y": 138.94318 - }, - "width": 37.816895, - "height": 10.558067, - "page": 81 - } - ], - "sectionNumber": 729, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 26, - "endOffset": 37, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464231Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f0df08b1d40f3978da3dfd268bed9341", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: BIOMARKERS METHOD BMK034FC", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 308.4166, - "y": 159.34338 - }, - "width": 23.846313, - "height": 10.558067, - "page": 81 - } - ], - "sectionNumber": 729, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464232Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7c53fa756f2de767bb02f4691e798784", - "type": "signature", - "value": null, - "reason": "Signature found", - "matchedRule": 41, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "BLANK", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 328.2048, - "y": 175.1643 - }, - "width": 65.73977, - "height": 28.764338, - "page": 81 - } - ], - "sectionNumber": 724, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464233Z" - } - ], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "8551d3df96accf4da75d5eeebcb6658b", - "type": "signature", - "value": null, - "reason": "Signature found", - "matchedRule": 41, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "BLANK", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 136.59557, - "y": 175.11331 - }, - "width": 88.129036, - "height": 28.866339, - "page": 81 - } - ], - "sectionNumber": 724, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464233Z" - } - ], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "1583f578e2c820690b99242e1bca5364", - "type": "logo", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "BLANK", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 194.99126, - "y": 554.6597 - }, - "width": 204.8184, - "height": 131.58154, - "page": 81 - } - ], - "sectionNumber": 724, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464234Z" - } - ], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "41549a8f03ad1d03cca8f1cb5ab94b6d", - "type": "false_positive", - "value": "March", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.95123, - "y": 417.20242 - }, - "width": 25.378098, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 738, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464234Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c3801ea3d0bd9dae71fe6001bf4d5ee0", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 82 - } - ], - "sectionNumber": 956, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464235Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3d546ebb5964700de5d59bb816f62934", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.93257, - "y": 310.05017 - }, - "width": 18.13559, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 741, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 11, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464235Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f4ed432e33622355e1f82896504e4cc3", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.95123, - "y": 631.71094 - }, - "width": 18.149597, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 734, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 11, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464236Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "412ce4ebce77eab2ad77195e451cc787", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 202.3037, - "y": 653.0802 - }, - "width": 19.665268, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 733, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 8, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464237Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "06fbb98180ee0a1ef6914055df7d9665", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 280.65472, - "y": 492.32632 - }, - "width": 27.510681, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 737, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 18, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464238Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d34ad818b4c19d1af7ff1ab42efc8f92", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.96431, - "y": 277.9198 - }, - "width": 40.960648, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 742, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 16, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464238Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7d3505788c8160975a2cd76d4b57a67f", - "type": "false_positive", - "value": "March", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.95123, - "y": 492.32632 - }, - "width": 25.41542, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 737, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464239Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "22cb72017a52380d8aeb78a2201bf4d5", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 82 - } - ], - "sectionNumber": 732, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 42, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464239Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2ef54c8264560b55203ab0c84eddf622", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.97551, - "y": 610.3417 - }, - "width": 28.014679, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 735, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 13, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46424Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d0d4fd06005250eec44f787518ea79ec", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.95497, - "y": 363.70282 - }, - "width": 18.060928, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 740, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 10, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46424Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "62e6e29354dc04b8d75f54b21f69b2f0", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: REVISION HISTORY", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 197.96245, - "y": 556.74005 - }, - "width": 40.424927, - "height": 11.165876, - "page": 82 - } - ], - "sectionNumber": 736, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 7, - "endOffset": 15, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464241Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f2fbdc27b6abcc6d18ba05b090662a6c", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 83 - } - ], - "sectionNumber": 957, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464242Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "468e7d4438a146e2424b086e51f305c9", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 83 - } - ], - "sectionNumber": 745, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464242Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5f49ccfb4acaffbbb461e63a1fddd19c", - "type": "false_positive", - "value": "Long Term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 4.1. COMMERCIAL REAGENTS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 114.66531, - "y": 498.08936 - }, - "width": 43.355515, - "height": 11.165876, - "page": 84 - } - ], - "sectionNumber": 763, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 9, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464243Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5eff766079b73c9a9e2e0dea2b43019f", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 84 - } - ], - "sectionNumber": 958, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464243Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "77d4dca793029330ac57a4e7a3f59197", - "type": "false_positive", - "value": "Fisher Scientific", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 4.1. COMMERCIAL REAGENTS", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.25754, - "y": 633.9022 - }, - "width": 62.606903, - "height": 11.165876, - "page": 84 - } - ], - "sectionNumber": 754, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 9, - "endOffset": 26, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464244Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c03953775a420979f53afe91f33e53d3", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 84 - } - ], - "sectionNumber": 752, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464244Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b9a596588fb6da500758019f5d2b2784", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 85 - } - ], - "sectionNumber": 797, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464245Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a752647cad7aaa7c4f14d8bd0975498a", - "type": "CBI_author", - "value": "Quick", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.32959, - "y": 555.10815 - }, - "width": 23.839996, - "height": 11.165876, - "page": 85 - } - ], - "sectionNumber": 787, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "• ", - "textAfter": " spin RNase", - "comments": null, - "startOffset": 2, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464246Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d848610b47d92da6ffa4d1aa22ac2c9e", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 85 - } - ], - "sectionNumber": 959, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464246Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "800dd60d6cc8ea70f52c8d9404f09d0a", - "type": "CBI_author", - "value": "Quick", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.32959, - "y": 491.8673 - }, - "width": 23.83252, - "height": 11.165876, - "page": 85 - } - ], - "sectionNumber": 791, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "• ", - "textAfter": " spin platelet", - "comments": null, - "startOffset": 2, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464247Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "df1333a4e129219600a0000f15dbc197", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 86 - } - ], - "sectionNumber": 960, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464247Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "b8e0cfd775017182f269cc4a21bcf59d", - "type": "false_positive", - "value": "down", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 5.3. BLOOD COLLECTION, FIXATION, STORAGE AND LABELLING METHOD", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 400.89798, - "y": 319.02625 - }, - "width": 21.754974, - "height": 11.165876, - "page": 86 - } - ], - "sectionNumber": 813, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 70, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464248Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e5b35dc00b1d5e7c7aa61f743ec6afa0", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 86 - } - ], - "sectionNumber": 801, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464248Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4011b3839ca841f2e7f407da79fe40ed", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 87 - } - ], - "sectionNumber": 842, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464249Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "44909e8ffa4f27ec82e99e3d722b4708", - "type": "false_positive", - "value": "Place buffer", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 152.91576, - "y": 505.73944 - }, - "width": 48.282104, - "height": 11.165876, - "page": 87 - } - ], - "sectionNumber": 825, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 2, - "endOffset": 14, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464249Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "30db66f168172bdc3b4d7d937119d93f", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 87 - } - ], - "sectionNumber": 961, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46425Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "806a418518d661a185d4b29a7cb917a1", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 88 - } - ], - "sectionNumber": 962, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46425Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "df16caaf29e7a821544d67763f970e9b", - "type": "false_positive", - "value": "Place back", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 289.52875, - "y": 531.03754 - }, - "width": 41.22757, - "height": 11.165876, - "page": 88 - } - ], - "sectionNumber": 848, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 108, - "endOffset": 118, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464251Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d44a02a962a9310efc87f2b6f04147d0", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 88 - } - ], - "sectionNumber": 866, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464251Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e6d62d54209939e78fc0de11fa30c9e3", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 276.9483, - "y": 707.8548 - }, - "width": 17.605804, - "height": 10.714214, - "page": 89 - } - ], - "sectionNumber": 867, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464252Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8faa6478e62f6674cfcc9275fa0c8966", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 89 - } - ], - "sectionNumber": 963, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464252Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "d1060d2bb140767ace8333498abe7d2f", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.85422, - "y": 707.8548 - }, - "width": 17.599152, - "height": 10.714214, - "page": 90 - } - ], - "sectionNumber": 884, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464253Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9cf26f7845997d04ab3511c3563d6720", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 90 - } - ], - "sectionNumber": 964, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464253Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "7701e6fe18cc9d0e15cd479035398b57", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 133.58653, - "y": 274.97247 - }, - "width": 108.73328, - "height": 112.813324, - "page": 90 - } - ], - "sectionNumber": 884, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464254Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "9e6fa9911f39a93b0df80b8bdcb49bd7", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 244.97185, - "y": 274.97247 - }, - "width": 113.42533, - "height": 112.813324, - "page": 90 - } - ], - "sectionNumber": 884, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464254Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "71732af1e6b604c6c7a389c85a747ca5", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 133.99454, - "y": 411.24606 - }, - "width": 108.529274, - "height": 111.99731, - "page": 90 - } - ], - "sectionNumber": 884, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464255Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "4688c050aaee30b9b5672d4f7263f545", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 246.19586, - "y": 400.84195 - }, - "width": 110.365295, - "height": 118.52539, - "page": 90 - } - ], - "sectionNumber": 884, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464256Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "61a95b52427d3eb919c7ab27e8aa20dc", - "type": "false_positive", - "value": "right", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "7.1. R VALUE ADJUSTMENT", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 208.28246, - "y": 281.2976 - }, - "width": 18.671707, - "height": 11.165876, - "page": 91 - } - ], - "sectionNumber": 889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 337, - "endOffset": 342, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464256Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "708aecbd035d2283b7827fc8a26a9fe4", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1 Before Compensation 2 After Compensation", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.85422, - "y": 707.8548 - }, - "width": 17.599152, - "height": 10.714214, - "page": 91 - } - ], - "sectionNumber": 887, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 97, - "endOffset": 101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464257Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "2f3b0395c5d7aec88447d633d85ef9be", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 91 - } - ], - "sectionNumber": 965, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464257Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "3d67507086a117a0d957deda0fd7b893", - "type": "false_positive", - "value": "left", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1 Before Compensation 2 After Compensation", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 384.77246, - "y": 627.5799 - }, - "width": 13.45285, - "height": 11.165876, - "page": 91 - } - ], - "sectionNumber": 887, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 155, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464258Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "f926a88c8849b231029a43083c8e976c", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1 Before Compensation 2 After Compensation", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 133.99454, - "y": 443.07043 - }, - "width": 115.66936, - "height": 244.19087, - "page": 91 - } - ], - "sectionNumber": 887, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464258Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "a155b6e3cdbce08de94f86abda0e7f96", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1 Before Compensation 2 After Compensation", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 254.96797, - "y": 439.60242 - }, - "width": 116.68937, - "height": 124.44145, - "page": 91 - } - ], - "sectionNumber": 887, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464259Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "73e2175456e728cbfc691f13c564c12c", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "7.2. DATA EXPORT", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 253.58804, - "y": 463.16312 - }, - "width": 12.94635, - "height": 11.165876, - "page": 92 - } - ], - "sectionNumber": 891, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 260, - "endOffset": 263, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464259Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "668a16f97a9fbfa76eda461960400b78", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.86163, - "y": 707.8548 - }, - "width": 17.600708, - "height": 10.714214, - "page": 92 - } - ], - "sectionNumber": 890, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 54, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46426Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "74c28153dfa715269f3fffc422e318f7", - "type": "CBI_address", - "value": "Sequani", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "7.2. DATA EXPORT", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 184.45963, - "y": 463.16312 - }, - "width": 31.108597, - "height": 11.165876, - "page": 92 - } - ], - "sectionNumber": 891, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study on the ", - "textAfter": " network. All", - "comments": null, - "startOffset": 243, - "endOffset": 250, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46426Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "71f2591f88339c037c815aa0d5074e46", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 92 - } - ], - "sectionNumber": 966, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464261Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "5491be7d8bf219222c341bff9420a26f", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 105.84221, - "y": 526.4054 - }, - "width": 269.02817, - "height": 160.65189, - "page": 92 - } - ], - "sectionNumber": 890, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464261Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "f4e644e7234b35d3bb5e4add2ba965f8", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 93 - } - ], - "sectionNumber": 967, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464262Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "26950bb97471a78deaeb9cded8ba16d0", - "type": "hint_only", - "value": "test facility", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "THE DEPARTMENT OF HEALTH OF THE GOVERNMENT\nOF THE UNITED KINGDOM", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 89.06301, - "y": 550.6962 - }, - "width": 72.034645, - "height": 12.694679, - "page": 94 - } - ], - "sectionNumber": 895, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 65, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464262Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8b345c5542d31bc479028c65d069cf76", - "type": "CBI_author", - "value": "Dr Andrew J Gray", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "GOOD LABORATORY PRACTICE", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 93.63487, - "y": 218.3778 - }, - "width": 38.51906, - "height": 11.2792, - "page": 94 - }, - { - "topLeft": { - "x": 133.74803, - "y": 218.37634 - }, - "width": 24.669891, - "height": 11.570795, - "page": 94 - } - ], - "sectionNumber": 896, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "1999). Issued by ", - "textAfter": " Head, UK", - "comments": null, - "startOffset": 794, - "endOffset": 810, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464263Z" - } - ], - "engines": [ - "NER" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "9bbcbea1ead7eab915c2b84e70de8d75", - "type": "hint_only", - "value": "test facility", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GOOD LABORATORY PRACTICE", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 120.488525, - "y": 330.17032 - }, - "width": 38.507446, - "height": 11.2792, - "page": 94 - } - ], - "sectionNumber": 896, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 326, - "endOffset": 339, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464263Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "4a2faafe909f84604a15346e85c8ee70", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 94 - } - ], - "sectionNumber": 968, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464264Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9ad379546f69f894cea7e6e495d8e9e3", - "type": "hint_only", - "value": "test facility", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "GOOD LABORATORY PRACTICE", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 212.70299, - "y": 302.41614 - }, - "width": 39.729614, - "height": 11.2792, - "page": 94 - } - ], - "sectionNumber": 896, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 557, - "endOffset": 570, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464264Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "8f1a9bf83c4b7d39c607bb34a8e03b37", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 6 Flow Cytometry Method BMK034FC (Continued)", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 44.64998, - "y": 63.285995 - }, - "width": 505.926, - "height": 715.4365, - "page": 94 - } - ], - "sectionNumber": 894, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464265Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "0f7def93785792f8d38e7fd7d89363c0", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 160.05037, - "y": 209.63245 - }, - "width": 92.11377, - "height": 10.586417, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1616, - "endOffset": 1643, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464265Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ff8be8c6fa616d02a3cfc04acd534cec", - "type": "hint_only", - "value": "certificate of analysis", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 8 GLP Compliance Statement Certificate", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 248.10669, - "y": 667.54614 - }, - "width": 129.47858, - "height": 14.420192, - "page": 95 - } - ], - "sectionNumber": 897, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 198, - "endOffset": 221, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464266Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "c75e3481621af9f52aa126fce67ff6d3", - "type": "CBI_address", - "value": "Breitenloh 5", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 8 GLP Compliance Statement Certificate", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 384.07794, - "y": 693.4741 - }, - "width": 35.30258, - "height": 10.09507, - "page": 95 - } - ], - "sectionNumber": 897, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "& Product Chemistry ", - "textAfter": " 4333 MOnchwilen,", - "comments": null, - "startOffset": 156, - "endOffset": 168, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464266Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a0743bf349a1a559127373e62a4177d1", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 8 GLP Compliance Statement Certificate", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 384.1232, - "y": 715.1704 - }, - "width": 86.342224, - "height": 10.09507, - "page": 95 - } - ], - "sectionNumber": 897, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 60, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464267Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "63c47e95bccaa53287495ab9b8dd618b", - "type": "CBI_address", - "value": "Analytical Development & Product Chemistry", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 322.77097, - "y": 136.0882 - }, - "width": 124.144806, - "height": 10.09507, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Dr. Christian Mink ", - "textAfter": " 300081245.docx Page", - "comments": null, - "startOffset": 1798, - "endOffset": 1840, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464267Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "38c9b1109f077e495ca0ae0761f290ac", - "type": "CBI_address", - "value": "GLP Testing Facility WMU", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 427.87537, - "y": 218.0805 - }, - "width": 62.272644, - "height": 10.586417, - "page": 95 - }, - { - "topLeft": { - "x": 132.65956, - "y": 209.63342 - }, - "width": 17.75705, - "height": 10.586417, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "archives of the ", - "textAfter": " at Syngenta", - "comments": null, - "startOffset": 1588, - "endOffset": 1612, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464268Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "04c913b71f476d598b3a84e91d52900b", - "type": "CBI_address", - "value": "Analytical Development & Product Chemistry", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 8 GLP Compliance Statement Certificate", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 383.82468, - "y": 700.57825 - }, - "width": 123.379364, - "height": 10.09507, - "page": 95 - } - ], - "sectionNumber": 897, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Testing Facility WMU ", - "textAfter": " Breitenloh 5", - "comments": null, - "startOffset": 113, - "endOffset": 155, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464269Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "9138a76e0a30e65f6a34e50704e7f9b5", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 206.43454, - "y": 270.11267 - }, - "width": 17.231064, - "height": 11.023218, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 576, - "endOffset": 580, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464269Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "ae8ddc496d2a636efce28ebb5b900ced", - "type": "false_positive", - "value": "Page", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Footer", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 473.8693, - "y": 54.90033 - }, - "width": 24.324432, - "height": 14.082, - "page": 95 - } - ], - "sectionNumber": 969, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 35, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46427Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "06a7a9765d06d4f2b3e8a33c2efc0e19", - "type": "false_positive", - "value": "Page 1", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 460.29388, - "y": 119.77014 - }, - "width": 14.853638, - "height": 10.09507, - "page": 95 - }, - { - "topLeft": { - "x": 476.55554, - "y": 119.76813 - }, - "width": 4.3360596, - "height": 10.09507, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1856, - "endOffset": 1862, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.46427Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "324a944bbc4feaf4f67a71974e15198c", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 214.14299, - "y": 156.05371 - }, - "width": 17.402557, - "height": 11.023218, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1769, - "endOffset": 1773, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464271Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "482f3a9ef646de6b87b2789d493190c3", - "type": "PII", - "value": "Christian Mink", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "difenoconazole tech.", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 368.17114, - "y": 143.00024 - }, - "width": 45.219788, - "height": 10.586417, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Authorization: 06-June-2017 Dr. ", - "textAfter": " Analytical Development", - "comments": null, - "startOffset": 1783, - "endOffset": 1797, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464271Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a34954147d53aeb8ec715cfd32d95817", - "type": "hint_only", - "value": "certificate of analysis", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 148.71783, - "y": 241.69049 - }, - "width": 31.730682, - "height": 10.586417, - "page": 95 - }, - { - "topLeft": { - "x": 182.34645, - "y": 241.6886 - }, - "width": 35.05699, - "height": 10.586417, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1191, - "endOffset": 1214, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464272Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "305df5d0a7f9cb8af259a4f9d60ad6f9", - "type": "CBI_address", - "value": "GLP Testing Facility WMU", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 8 GLP Compliance Statement Certificate", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 384.1152, - "y": 708.0663 - }, - "width": 75.99756, - "height": 10.09507, - "page": 95 - } - ], - "sectionNumber": 897, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Crop Protection AG ", - "textAfter": " Analytical Development", - "comments": null, - "startOffset": 88, - "endOffset": 112, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464272Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "a52b95388d33b5930c5ded1fac89183e", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 1, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 305.7069, - "y": 270.88068 - }, - "width": 15.539001, - "height": 11.023218, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 1045, - "endOffset": 1048, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464273Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "e57997d162cf3a38fa750e84f9856cdb", - "type": "hint_only", - "value": "certificate of analysis", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 9 Certificate of Analysis for the Test Item", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 189.11844, - "y": 755.8803 - }, - "width": 124.43475, - "height": 15.00984, - "page": 95 - } - ], - "sectionNumber": 899, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 11, - "endOffset": 34, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464273Z" - } - ], - "engines": [ - "DICTIONARY" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": true - }, - { - "id": "98b0783a106f2d2f4db67bda9df0ee44", - "type": "hint_only", - "value": "Purity:", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "difenoconazole tech.", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 313.1357, - "y": 579.2258 - }, - "width": 33.651367, - "height": 13.331868, - "page": 95 - } - ], - "sectionNumber": 898, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 71, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464274Z" - } - ], - "engines": [ - "RULE" - ], - "reference": [], - "hint": true, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "052ab857b621c4423e71459d1160763e", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "APPENDIX 8 GLP Compliance Statement Certificate", - "color": [ - 0.7411765, - 0.8392157, - 1 - ], - "positions": [ - { - "topLeft": { - "x": 58.953995, - "y": 83.944 - }, - "width": 477.5059, - "height": 674.11456, - "page": 95 - } - ], - "sectionNumber": 897, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [ - { - "type": "ADDED", - "dateTime": "2021-11-10T15:09:35.464274Z" - } - ], - "engines": null, - "reference": null, - "hint": true, - "recommendation": false, - "image": true, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "e1459455bf3e34712c736271080b6ca9", - "type": "manual", - "value": "reticulocytes", - "reason": "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", - "matchedRule": 0, - "legalBasis": "Article 63(2)(b) of Regulation (EC) No 1107/2009", - "redacted": true, - "section": null, - "color": [ - 0.67058825, - 0.7529412, - 0.76862746 - ], - "positions": [ - { - "topLeft": { - "x": 444.228, - "y": 696.5963 - }, - "width": 61.3776, - "height": 16.164, - "page": 13 - } - ], - "sectionNumber": -1, - "manual": true, - "status": "APPROVED", - "manualRedactionType": "ADD", - "manualRedactionUserId": "152847db-eebb-44a3-9ee0-7fcfee571cd3", - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "ef7b0dbe2c81958e495a603cec75708d", - "type": "manual", - "value": "dose", - "reason": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "matchedRule": 0, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": null, - "color": [ - 0.67058825, - 0.7529412, - 0.76862746 - ], - "positions": [ - { - "topLeft": { - "x": 363.1776, - "y": 724.1963 - }, - "width": 22.0032, - "height": 16.164, - "page": 13 - } - ], - "sectionNumber": -1, - "manual": true, - "status": "APPROVED", - "manualRedactionType": "ADD", - "manualRedactionUserId": "152847db-eebb-44a3-9ee0-7fcfee571cd3", - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "d2530a45c1eff2db5b019d119300a6f0", - "type": "manual", - "value": "maximum", - "reason": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "matchedRule": 0, - "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", - "redacted": true, - "section": null, - "color": [ - 0.67058825, - 0.7529412, - 0.76862746 - ], - "positions": [ - { - "topLeft": { - "x": 266.5824, - "y": 724.1963 - }, - "width": 48.5784, - "height": 16.164, - "page": 13 - } - ], - "sectionNumber": -1, - "manual": true, - "status": "APPROVED", - "manualRedactionType": "ADD", - "manualRedactionUserId": "152847db-eebb-44a3-9ee0-7fcfee571cd3", - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "12aade4bf412d2b2f6700dee1fc1ad81", - "type": "manual", - "value": "evaluate", - "reason": "results of production batches of the active substance including impurities", - "matchedRule": 0, - "legalBasis": "Article 63(2)(c) of Regulation (EC) No 1107/2009", - "redacted": true, - "section": null, - "color": [ - 0.67058825, - 0.7529412, - 0.76862746 - ], - "positions": [ - { - "topLeft": { - "x": 464.5944, - "y": 724.1963 - }, - "width": 40.0128, - "height": 16.164, - "page": 13 - } - ], - "sectionNumber": -1, - "manual": true, - "status": "APPROVED", - "manualRedactionType": "ADD", - "manualRedactionUserId": "152847db-eebb-44a3-9ee0-7fcfee571cd3", - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - }, - { - "id": "68d566ad76f0d23224ad8e5d72bce554", - "type": "manual", - "value": "Difenoconazole", - "reason": "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", - "matchedRule": 0, - "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", - "redacted": true, - "section": null, - "color": [ - 0.67058825, - 0.7529412, - 0.76862746 - ], - "positions": [ - { - "topLeft": { - "x": 89.88, - "y": 724.1963 - }, - "width": 76.0032, - "height": 16.164, - "page": 13 - } - ], - "sectionNumber": -1, - "manual": true, - "status": "APPROVED", - "manualRedactionType": "ADD", - "manualRedactionUserId": "152847db-eebb-44a3-9ee0-7fcfee571cd3", - "textBefore": null, - "textAfter": null, - "comments": null, - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "changes": [], - "engines": null, - "reference": null, - "hint": false, - "recommendation": false, - "image": false, - "dossierDictionaryEntry": false, - "dictionaryEntry": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", - "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 23, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 1 -} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/componentLog.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/componentLog.json index 0ba9607..8316e6d 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/componentLog.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/componentLog.json @@ -1,1195 +1,1570 @@ { - "analysisNumber" : 2, - "componentRulesVersion" : 1, - "componentLogEntries" : [ { - "name" : "Study_Title", - "originalValues" : [ { - "value" : "SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", - "valueDescription" : "First found value of type title or else ''", - "componentRuleId" : "StudyTitle.0.0", - "componentLogEntityReferences" : [ { - "id" : "fdc33ec238d48f3f5c9611ea4ba3ae1b", - "type" : "title", - "entityRuleId" : "DOC.6.1", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", - "valueDescription" : "First found value of type title or else ''", - "componentRuleId" : "StudyTitle.0.0", - "componentLogEntityReferences" : [ { - "id" : "fdc33ec238d48f3f5c9611ea4ba3ae1b", - "type" : "title", - "entityRuleId" : "DOC.6.1", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "Performing_Laboratory", - "originalValues" : [ { - "value" : "CiToxLAB Hungary Ltd., Hungary", - "valueDescription" : "Laboratory name and country found!", - "componentRuleId" : "PerformingLaboratory.1.0", - "componentLogEntityReferences" : [ { - "id" : "f872738237a85170cb073b6220b98e65", - "type" : "laboratory_name", - "entityRuleId" : "DOC.7.2", - "page" : 1 - }, { - "id" : "1c6dade9e8ea1a6f5e1b83da05f11368", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.2", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "CiToxLAB Hungary Ltd., Hungary", - "valueDescription" : "Laboratory name and country found!", - "componentRuleId" : "PerformingLaboratory.1.0", - "componentLogEntityReferences" : [ { - "id" : "f872738237a85170cb073b6220b98e65", - "type" : "laboratory_name", - "entityRuleId" : "DOC.7.2", - "page" : 1 - }, { - "id" : "1c6dade9e8ea1a6f5e1b83da05f11368", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.2", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "Report_Number", - "originalValues" : [ { - "value" : "12/063-002P", - "valueDescription" : "First found value of type report_number or else ''", - "componentRuleId" : "ReportNumber.0.0", - "componentLogEntityReferences" : [ { - "id" : "8ac7d1ad2d1614527bbb055cebb3824f", - "type" : "report_number", - "entityRuleId" : "DOC.2.0", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "12/063-002P", - "valueDescription" : "First found value of type report_number or else ''", - "componentRuleId" : "ReportNumber.0.0", - "componentLogEntityReferences" : [ { - "id" : "8ac7d1ad2d1614527bbb055cebb3824f", - "type" : "report_number", - "entityRuleId" : "DOC.2.0", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "GLP_Study", - "originalValues" : [ { - "value" : "Yes", - "valueDescription" : "Yes if present, No if not", - "componentRuleId" : "GLPStudy.0.0", - "componentLogEntityReferences" : [ { - "id" : "23cacb7ae621b9cdf987f50e3bdd115b", - "type" : "glp_study", - "entityRuleId" : "DOC.8.0", - "page" : 3 - }, { - "id" : "fcd231292774563c812cddcf4d78c1f5", - "type" : "glp_study", - "entityRuleId" : "DOC.8.0", - "page" : 25 - } ] - } ], - "values" : [ { - "value" : "Yes", - "valueDescription" : "Yes if present, No if not", - "componentRuleId" : "GLPStudy.0.0", - "componentLogEntityReferences" : [ { - "id" : "23cacb7ae621b9cdf987f50e3bdd115b", - "type" : "glp_study", - "entityRuleId" : "DOC.8.0", - "page" : 3 - }, { - "id" : "fcd231292774563c812cddcf4d78c1f5", - "type" : "glp_study", - "entityRuleId" : "DOC.8.0", - "page" : 25 - } ] - } ], - "overridden" : false - }, { - "name" : "Test_Guidelines_1", - "originalValues" : [ { - "value" : "Nº 402: Acute Dermal Toxicity (24/02/1987)", - "valueDescription" : "OECD Number and guideline year mapped!", - "componentRuleId" : "TestGuideline.0.0", - "componentLogEntityReferences" : [ { - "id" : "911e8b6737c9529a40590dbf6778c24b", - "type" : "oecd_guideline_number", - "entityRuleId" : "DOC.1.0", - "page" : 1 - }, { - "id" : "962c4942cd62f0103b1bf5759e2e1b1a", - "type" : "oecd_guideline_year", - "entityRuleId" : "DOC.1.0", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "Nº 402: Acute Dermal Toxicity (24/02/1987)", - "valueDescription" : "OECD Number and guideline year mapped!", - "componentRuleId" : "TestGuideline.0.0", - "componentLogEntityReferences" : [ { - "id" : "911e8b6737c9529a40590dbf6778c24b", - "type" : "oecd_guideline_number", - "entityRuleId" : "DOC.1.0", - "page" : 1 - }, { - "id" : "962c4942cd62f0103b1bf5759e2e1b1a", - "type" : "oecd_guideline_year", - "entityRuleId" : "DOC.1.0", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "Test_Guidelines_2", - "originalValues" : [ { - "value" : "EPA OPPTS 870.1200 (1998), EC 440/2008 (2008)", - "valueDescription" : "Joining all values of type ec_guideline, epa_guideline with ', '", - "componentRuleId" : "TestGuideline.2.0", - "componentLogEntityReferences" : [ { - "id" : "506ef85dd4dcb0a2df24d203ad21d220", - "type" : "epa_guideline", - "entityRuleId" : "DOC.1.0", - "page" : 1 - }, { - "id" : "09c476952cbc59e3661b03cd38d463e7", - "type" : "ec_guideline", - "entityRuleId" : "DOC.1.0", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "EPA OPPTS 870.1200 (1998), EC 440/2008 (2008)", - "valueDescription" : "Joining all values of type ec_guideline, epa_guideline with ', '", - "componentRuleId" : "TestGuideline.2.0", - "componentLogEntityReferences" : [ { - "id" : "506ef85dd4dcb0a2df24d203ad21d220", - "type" : "epa_guideline", - "entityRuleId" : "DOC.1.0", - "page" : 1 - }, { - "id" : "09c476952cbc59e3661b03cd38d463e7", - "type" : "ec_guideline", - "entityRuleId" : "DOC.1.0", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "Experimental_Starting_Date", - "originalValues" : [ { - "value" : "21/03/2012", - "valueDescription" : "Convert values of type 'experimental_start_date' to dd/MM/yyyy joined with ', '", - "componentRuleId" : "StartDate.0.0", - "componentLogEntityReferences" : [ { - "id" : "decf41962064ede79b213035f34862b3", - "type" : "experimental_start_date", - "entityRuleId" : "DOC.3.0", - "page" : 7 - } ] - } ], - "values" : [ { - "value" : "21/03/2012", - "valueDescription" : "Convert values of type 'experimental_start_date' to dd/MM/yyyy joined with ', '", - "componentRuleId" : "StartDate.0.0", - "componentLogEntityReferences" : [ { - "id" : "decf41962064ede79b213035f34862b3", - "type" : "experimental_start_date", - "entityRuleId" : "DOC.3.0", - "page" : 7 - } ] - } ], - "overridden" : false - }, { - "name" : "Experimental_Completion_Date", - "originalValues" : [ { - "value" : "04/04/2012", - "valueDescription" : "Convert values of type 'experimental_end_date' to dd/MM/yyyy joined with ', '", - "componentRuleId" : "CompletionDate.0.0", - "componentLogEntityReferences" : [ { - "id" : "346a5ce1bd59081c74885078af715284", - "type" : "experimental_end_date", - "entityRuleId" : "DOC.4.0", - "page" : 7 - } ] - } ], - "values" : [ { - "value" : "04/04/2012", - "valueDescription" : "Convert values of type 'experimental_end_date' to dd/MM/yyyy joined with ', '", - "componentRuleId" : "CompletionDate.0.0", - "componentLogEntityReferences" : [ { - "id" : "346a5ce1bd59081c74885078af715284", - "type" : "experimental_end_date", - "entityRuleId" : "DOC.4.0", - "page" : 7 - } ] - } ], - "overridden" : false - }, { - "name" : "Certificate_of_Analysis_Batch_Identification", - "originalValues" : [ { - "value" : "SMU1LP001", - "valueDescription" : "Joining all unique values of type batch_number with ', '", - "componentRuleId" : "AnalysisCertificate.0.0", - "componentLogEntityReferences" : [ { - "id" : "93b7180cb815e41a53a3f1340776dcf2", - "type" : "batch_number", - "entityRuleId" : "DOC.9.1", - "page" : 12 - }, { - "id" : "e0cb8bec3a8568335eae3d8776237c8f", - "type" : "batch_number", - "entityRuleId" : "DOC.9.0", - "page" : 23 - } ] - } ], - "values" : [ { - "value" : "SMU1LP001", - "valueDescription" : "Joining all unique values of type batch_number with ', '", - "componentRuleId" : "AnalysisCertificate.0.0", - "componentLogEntityReferences" : [ { - "id" : "93b7180cb815e41a53a3f1340776dcf2", - "type" : "batch_number", - "entityRuleId" : "DOC.9.1", - "page" : 12 - }, { - "id" : "e0cb8bec3a8568335eae3d8776237c8f", - "type" : "batch_number", - "entityRuleId" : "DOC.9.0", - "page" : 23 - } ] - } ], - "overridden" : false - }, { - "name" : "Species", - "originalValues" : [ { - "value" : "rats", - "valueDescription" : "First found value of type species or else ''", - "componentRuleId" : "Species.0.0", - "componentLogEntityReferences" : [ { - "id" : "b897fbedc847ea1d23f349e5350bc8f1", - "type" : "species", - "entityRuleId" : "DOC.5.2", - "page" : 14 - }, { - "id" : "f5d80ce83f739506f95420a375c8effa", - "type" : "species", - "entityRuleId" : "DOC.5.2", - "page" : 14 - }, { - "id" : "4f8b024892a7ee7826a7638833ed0de2", - "type" : "species", - "entityRuleId" : "DOC.5.2", - "page" : 14 - } ] - } ], - "values" : [ { - "value" : "rats", - "valueDescription" : "First found value of type species or else ''", - "componentRuleId" : "Species.0.0", - "componentLogEntityReferences" : [ { - "id" : "b897fbedc847ea1d23f349e5350bc8f1", - "type" : "species", - "entityRuleId" : "DOC.5.2", - "page" : 14 - }, { - "id" : "f5d80ce83f739506f95420a375c8effa", - "type" : "species", - "entityRuleId" : "DOC.5.2", - "page" : 14 - }, { - "id" : "4f8b024892a7ee7826a7638833ed0de2", - "type" : "species", - "entityRuleId" : "DOC.5.2", - "page" : 14 - } ] - } ], - "overridden" : false - }, { - "name" : "Strain", - "originalValues" : [ { - "value" : "CRL:(WI)", - "valueDescription" : "First found value of type strain or else ''", - "componentRuleId" : "Strain.0.0", - "componentLogEntityReferences" : [ { - "id" : "b9784d1fa897ade518e807b3e371b275", - "type" : "strain", - "entityRuleId" : "DOC.5.3", - "page" : 14 - } ] - } ], - "values" : [ { - "value" : "CRL:(WI)", - "valueDescription" : "First found value of type strain or else ''", - "componentRuleId" : "Strain.0.0", - "componentLogEntityReferences" : [ { - "id" : "b9784d1fa897ade518e807b3e371b275", - "type" : "strain", - "entityRuleId" : "DOC.5.3", - "page" : 14 - } ] - } ], - "overridden" : false - }, { - "name" : "Doses_mg_per_kg_bw", - "originalValues" : [ { - "value" : "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours. Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14). 14", - "valueDescription" : "Joining all values of type doses_(mg_kg_bw) with ' '", - "componentRuleId" : "Necropsy.1.0", - "componentLogEntityReferences" : [ { - "id" : "c1bf6261c8dc8f8f6aa0d6fe5c6553bd", - "type" : "doses_(mg_kg_bw)", - "entityRuleId" : "DOC.35.0", - "page" : 10 - }, { - "id" : "ede065ea1725687b77490a484aa2d9e8", - "type" : "doses_(mg_kg_bw)", - "entityRuleId" : "DOC.35.0", - "page" : 10 - }, { - "id" : "1210a0f7ffd1c0d558d330a09241bc7d", - "type" : "doses_(mg_kg_bw)", - "entityRuleId" : "DOC.35.0", - "page" : 10 - } ] - } ], - "values" : [ { - "value" : "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours. Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14). 14", - "valueDescription" : "Joining all values of type doses_(mg_kg_bw) with ' '", - "componentRuleId" : "Necropsy.1.0", - "componentLogEntityReferences" : [ { - "id" : "c1bf6261c8dc8f8f6aa0d6fe5c6553bd", - "type" : "doses_(mg_kg_bw)", - "entityRuleId" : "DOC.35.0", - "page" : 10 - }, { - "id" : "ede065ea1725687b77490a484aa2d9e8", - "type" : "doses_(mg_kg_bw)", - "entityRuleId" : "DOC.35.0", - "page" : 10 - }, { - "id" : "1210a0f7ffd1c0d558d330a09241bc7d", - "type" : "doses_(mg_kg_bw)", - "entityRuleId" : "DOC.35.0", - "page" : 10 - } ] - } ], - "overridden" : false - }, { - "name" : "Mortality_Statement", - "originalValues" : [ { - "value" : "No mortality occurred on the study. 35", - "valueDescription" : "Joining all values of type mortality_statement with ' '", - "componentRuleId" : "MortalityStatement.0.0", - "componentLogEntityReferences" : [ { - "id" : "0ae4b2b53905f238cf17c20df26f209d", - "type" : "mortality_statement", - "entityRuleId" : "DOC.32.0", - "page" : 16 - }, { - "id" : "849e9e6c36d5c510225587c21d66b18d", - "type" : "mortality_statement", - "entityRuleId" : "DOC.32.0", - "page" : 16 - } ] - } ], - "values" : [ { - "value" : "No mortality occurred on the study. 35", - "valueDescription" : "Joining all values of type mortality_statement with ' '", - "componentRuleId" : "MortalityStatement.0.0", - "componentLogEntityReferences" : [ { - "id" : "0ae4b2b53905f238cf17c20df26f209d", - "type" : "mortality_statement", - "entityRuleId" : "DOC.32.0", - "page" : 16 - }, { - "id" : "849e9e6c36d5c510225587c21d66b18d", - "type" : "mortality_statement", - "entityRuleId" : "DOC.32.0", - "page" : 16 - } ] - } ], - "overridden" : false - }, { - "name" : "Weight_Behavior_Changes", - "originalValues" : [ { - "value" : "No mortality occurred during the study.\nNo adverse clinical signs were observed after treatment with the test item during the 14 day observation period. Erythema was noted in all animals (10/10) on Day 1 only. All animals were symptom free from 2 days after the treatment.\nThere were no treatment related effects on body weight or body weight gain during the observation period.\nThere was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.\n15", - "valueDescription" : "Joining all values of type weight_behavior_changes with '\n'", - "componentRuleId" : "WeightBehavior.0.0", - "componentLogEntityReferences" : [ { - "id" : "952c0822930bf5b8e2026f96cd7d9b37", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "6ce01344b447329c1afa3f1f846173f0", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "8ffd807ffd5ca21c759c78f54cd87f4f", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "9eeb75725d19bc1f13330aa9cdaa3fdc", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "a74be4f45046f442315f472490e39e59", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - } ] - } ], - "values" : [ { - "value" : "No mortality occurred during the study.\nNo adverse clinical signs were observed after treatment with the test item during the 14 day observation period. Erythema was noted in all animals (10/10) on Day 1 only. All animals were symptom free from 2 days after the treatment.\nThere were no treatment related effects on body weight or body weight gain during the observation period.\nThere was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.\n15", - "valueDescription" : "Joining all values of type weight_behavior_changes with '\n'", - "componentRuleId" : "WeightBehavior.0.0", - "componentLogEntityReferences" : [ { - "id" : "952c0822930bf5b8e2026f96cd7d9b37", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "6ce01344b447329c1afa3f1f846173f0", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "8ffd807ffd5ca21c759c78f54cd87f4f", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "9eeb75725d19bc1f13330aa9cdaa3fdc", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - }, { - "id" : "a74be4f45046f442315f472490e39e59", - "type" : "weight_behavior_changes", - "entityRuleId" : "DOC.16.0", - "page" : 10 - } ] - } ], - "overridden" : false - }, { - "name" : "Necropsy_Findings", - "originalValues" : [ { - "value" : "No treatment related macroscopic findings were observed. There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy. 39", - "valueDescription" : "Joining all values of type necropsy_findings with ' '", - "componentRuleId" : "Necropsy.0.0", - "componentLogEntityReferences" : [ { - "id" : "c0c22ea4e6dda938468d4be3102334ae", - "type" : "necropsy_findings", - "entityRuleId" : "DOC.17.0", - "page" : 16 - }, { - "id" : "799d19b6a371f575c77e988ba7e23063", - "type" : "necropsy_findings", - "entityRuleId" : "DOC.17.0", - "page" : 16 - }, { - "id" : "24edc84baf21ef6bb37c5b20801d5e84", - "type" : "necropsy_findings", - "entityRuleId" : "DOC.17.0", - "page" : 16 - } ] - } ], - "values" : [ { - "value" : "No treatment related macroscopic findings were observed. There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy. 39", - "valueDescription" : "Joining all values of type necropsy_findings with ' '", - "componentRuleId" : "Necropsy.0.0", - "componentLogEntityReferences" : [ { - "id" : "c0c22ea4e6dda938468d4be3102334ae", - "type" : "necropsy_findings", - "entityRuleId" : "DOC.17.0", - "page" : 16 - }, { - "id" : "799d19b6a371f575c77e988ba7e23063", - "type" : "necropsy_findings", - "entityRuleId" : "DOC.17.0", - "page" : 16 - }, { - "id" : "24edc84baf21ef6bb37c5b20801d5e84", - "type" : "necropsy_findings", - "entityRuleId" : "DOC.17.0", - "page" : 16 - } ] - } ], - "overridden" : false - }, { - "name" : "Deviation_from_the_Guideline", - "originalValues" : [ { - "value" : "", - "valueDescription" : "Joining all values of type with '\n'", - "componentRuleId" : "GuidelineDeviation.0.0", - "componentLogEntityReferences" : [ ] - } ], - "values" : [ { - "value" : "", - "valueDescription" : "Joining all values of type with '\n'", - "componentRuleId" : "GuidelineDeviation.0.0", - "componentLogEntityReferences" : [ ] - } ], - "overridden" : false - }, { - "name" : "Conclusion_LD50_Greater_than", - "originalValues" : [ { - "value" : "Greater than", - "valueDescription" : "Entity of type 'ld50_greater' found", - "componentRuleId" : "Conclusion.1.0", - "componentLogEntityReferences" : [ { - "id" : "311a441f815daaffc20453a79712a684", - "type" : "ld50_greater", - "entityRuleId" : "DOC.10.0", - "page" : 10 - }, { - "id" : "107db9f46656e13234c90b9a3a57b694", - "type" : "ld50_greater", - "entityRuleId" : "DOC.10.0", - "page" : 11 - }, { - "id" : "2c788c7a7118ef9bb18edf7d5e7dbc7b", - "type" : "ld50_greater", - "entityRuleId" : "DOC.10.0", - "page" : 16 - } ] - } ], - "values" : [ { - "value" : "Greater than", - "valueDescription" : "Entity of type 'ld50_greater' found", - "componentRuleId" : "Conclusion.1.0", - "componentLogEntityReferences" : [ { - "id" : "311a441f815daaffc20453a79712a684", - "type" : "ld50_greater", - "entityRuleId" : "DOC.10.0", - "page" : 10 - }, { - "id" : "107db9f46656e13234c90b9a3a57b694", - "type" : "ld50_greater", - "entityRuleId" : "DOC.10.0", - "page" : 11 - }, { - "id" : "2c788c7a7118ef9bb18edf7d5e7dbc7b", - "type" : "ld50_greater", - "entityRuleId" : "DOC.10.0", - "page" : 16 - } ] - } ], - "overridden" : false - }, { - "name" : "Conclusion_LD50_mg_per_kg", - "originalValues" : [ { - "value" : "2000", - "valueDescription" : "Joining all unique values of type ld50_value with ', '", - "componentRuleId" : "Conclusion.0.0", - "componentLogEntityReferences" : [ { - "id" : "fff9617f8d11bd678e1d17ee330d0eef", - "type" : "ld50_value", - "entityRuleId" : "DOC.10.0", - "page" : 10 - }, { - "id" : "2ef271bd35871a6266f456a7c4360042", - "type" : "ld50_value", - "entityRuleId" : "DOC.10.0", - "page" : 16 - } ] - } ], - "values" : [ { - "value" : "2000", - "valueDescription" : "Joining all unique values of type ld50_value with ', '", - "componentRuleId" : "Conclusion.0.0", - "componentLogEntityReferences" : [ { - "id" : "fff9617f8d11bd678e1d17ee330d0eef", - "type" : "ld50_value", - "entityRuleId" : "DOC.10.0", - "page" : 10 - }, { - "id" : "2ef271bd35871a6266f456a7c4360042", - "type" : "ld50_value", - "entityRuleId" : "DOC.10.0", - "page" : 16 - } ] - } ], - "overridden" : false - }, { - "name" : "Conclusion_Minimum_Confidence", - "originalValues" : [ { - "value" : "", - "valueDescription" : "Joining all unique values of type with ', '", - "componentRuleId" : "Conclusion.2.0", - "componentLogEntityReferences" : [ ] - } ], - "values" : [ { - "value" : "", - "valueDescription" : "Joining all unique values of type with ', '", - "componentRuleId" : "Conclusion.2.0", - "componentLogEntityReferences" : [ ] - } ], - "overridden" : false - }, { - "name" : "Conclusion_Maximum_Confidence", - "originalValues" : [ { - "value" : "", - "valueDescription" : "Joining all unique values of type with ', '", - "componentRuleId" : "Conclusion.3.0", - "componentLogEntityReferences" : [ ] - } ], - "values" : [ { - "value" : "", - "valueDescription" : "Joining all unique values of type with ', '", - "componentRuleId" : "Conclusion.3.0", - "componentLogEntityReferences" : [ ] - } ], - "overridden" : false - }, { - "name" : "Study_Conclusion", - "originalValues" : [ { - "value" : "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", - "valueDescription" : "Joining all values of type study_conclusion with ' '", - "componentRuleId" : "StudyConclusion.0.0", - "componentLogEntityReferences" : [ { - "id" : "2fd7f1df547bbea6932344ded3d0a7bb", - "type" : "study_conclusion", - "entityRuleId" : "DOC.15.0", - "page" : 10 - } ] - } ], - "values" : [ { - "value" : "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", - "valueDescription" : "Joining all values of type study_conclusion with ' '", - "componentRuleId" : "StudyConclusion.0.0", - "componentLogEntityReferences" : [ { - "id" : "2fd7f1df547bbea6932344ded3d0a7bb", - "type" : "study_conclusion", - "entityRuleId" : "DOC.15.0", - "page" : 10 - } ] - } ], - "overridden" : false - }, { - "name" : "laboratory_country", - "originalValues" : [ { - "value" : "Hungary", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "d469a79eedff7c52b006ae34b36a7ff8", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.2", - "page" : 1 - } ] - }, { - "value" : "Hungary", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "9593a204d3530a8bb90cab1921cf57c1", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.2", - "page" : 1 - } ] - }, { - "value" : "United Kingdom", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "1b968e9b5ce3e90e4158c5353facb78f", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.1", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "Hungary", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "d469a79eedff7c52b006ae34b36a7ff8", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.2", - "page" : 1 - } ] - }, { - "value" : "Hungary", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "9593a204d3530a8bb90cab1921cf57c1", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.2", - "page" : 1 - } ] - }, { - "value" : "United Kingdom", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "1b968e9b5ce3e90e4158c5353facb78f", - "type" : "laboratory_country", - "entityRuleId" : "DOC.7.1", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "oecd_guideline", - "originalValues" : [ { - "value" : "OECD 402 (1987)", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "0adce062717031fcb3130cb4b5121220", - "type" : "oecd_guideline", - "entityRuleId" : "DOC.1.0", - "page" : 1 - } ] - } ], - "values" : [ { - "value" : "OECD 402 (1987)", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "0adce062717031fcb3130cb4b5121220", - "type" : "oecd_guideline", - "entityRuleId" : "DOC.1.0", - "page" : 1 - } ] - } ], - "overridden" : false - }, { - "name" : "study_conclusion", - "originalValues" : [ { - "value" : "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "f55749c2ff48055d2c2fa7dd08adde62", - "type" : "study_conclusion", - "entityRuleId" : "DOC.15.0", - "page" : 16 - } ] - } ], - "values" : [ { - "value" : "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "f55749c2ff48055d2c2fa7dd08adde62", - "type" : "study_conclusion", - "entityRuleId" : "DOC.15.0", - "page" : 16 - } ] - } ], - "overridden" : false - }, { - "name" : "study_design", - "originalValues" : [ { - "value" : "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "5da351be47fa414cfb7f833d3ca87f5e", - "type" : "study_design", - "entityRuleId" : "DOC.20.0", - "page" : 10 - } ] - }, { - "value" : "Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14).", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "a7c111ff4a0456cb14456e27df5b155b", - "type" : "study_design", - "entityRuleId" : "DOC.20.0", - "page" : 10 - } ] - }, { - "value" : "14", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "aee5552913b8d2b1fb3a57c84d82649b", - "type" : "study_design", - "entityRuleId" : "DOC.20.0", - "page" : 10 - } ] - } ], - "values" : [ { - "value" : "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "5da351be47fa414cfb7f833d3ca87f5e", - "type" : "study_design", - "entityRuleId" : "DOC.20.0", - "page" : 10 - } ] - }, { - "value" : "Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14).", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "a7c111ff4a0456cb14456e27df5b155b", - "type" : "study_design", - "entityRuleId" : "DOC.20.0", - "page" : 10 - } ] - }, { - "value" : "14", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "aee5552913b8d2b1fb3a57c84d82649b", - "type" : "study_design", - "entityRuleId" : "DOC.20.0", - "page" : 10 - } ] - } ], - "overridden" : false - }, { - "name" : "test_results", - "originalValues" : [ { - "value" : "Study Title: SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "15c7b4591b08cb8b9eae17b1e048ed62", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "Test Item: SYN545192 EC (A15457H)", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "bd2f28162667f5307980dcbefceb7b55", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "This study has been inspected, and this report audited by the Quality Assurance Unit in compliance with the Principles of Good Laboratory Practice. As far as it can be reasonably established the methods described and the results incorporated in this report accurately reflect the raw data produced during this study.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "8dd6465f6585320429690c8dfec02013", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "All inspections, data reviews and the report audit were reported in written form to the study director and to management. The dates of such inspections and of the report audit are given below:", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "142b22eb9e0c50104a33a939a1a7b3cf", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "4.2", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "4280bb81c5a58bedf7f2578ffbac9482", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "No mortality occurred on the study.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "ac4cf632670c1e6b9f29a36a2f3a1545", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "35", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "7ef3c9a644f708038fd627ce289b6fec", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "There were no adverse clinical signs noted in any animals throughout the study.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "c6988066e4ea1b9fca609f2d04bc68ee", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "36", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "41e6e61eb69d675d15ad0510a58e5ac8", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "Erythema was noted in all animals (10/10) on Day 1. All animals were symptom free from 2 days after the treatment.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "29fa49dda60b8e8a243e2f46a9a9b66a", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "37", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "a49264ce0b7d01cb9e5ac6c439fc21b9", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "There were no effects on either body weight or body weight gain in any animal.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "89500fb07a64791681bc4e93edf5f950", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "38", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "f0cd5807ab584affe57e44d8744256ef", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "No treatment related macroscopic findings were observed.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "aee6af989b1c6da3cc371929fe92b707", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "971796cd69839b6715ef11dadff12960", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "39", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "a3957a14b4e31bcfe42ba11e85cce322", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - } ], - "values" : [ { - "value" : "Study Title: SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "15c7b4591b08cb8b9eae17b1e048ed62", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "Test Item: SYN545192 EC (A15457H)", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "bd2f28162667f5307980dcbefceb7b55", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "This study has been inspected, and this report audited by the Quality Assurance Unit in compliance with the Principles of Good Laboratory Practice. As far as it can be reasonably established the methods described and the results incorporated in this report accurately reflect the raw data produced during this study.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "8dd6465f6585320429690c8dfec02013", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "All inspections, data reviews and the report audit were reported in written form to the study director and to management. The dates of such inspections and of the report audit are given below:", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "142b22eb9e0c50104a33a939a1a7b3cf", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "4.2", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "4280bb81c5a58bedf7f2578ffbac9482", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 5 - } ] - }, { - "value" : "No mortality occurred on the study.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "ac4cf632670c1e6b9f29a36a2f3a1545", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "35", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "7ef3c9a644f708038fd627ce289b6fec", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "There were no adverse clinical signs noted in any animals throughout the study.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "c6988066e4ea1b9fca609f2d04bc68ee", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "36", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "41e6e61eb69d675d15ad0510a58e5ac8", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "Erythema was noted in all animals (10/10) on Day 1. All animals were symptom free from 2 days after the treatment.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "29fa49dda60b8e8a243e2f46a9a9b66a", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "37", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "a49264ce0b7d01cb9e5ac6c439fc21b9", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "There were no effects on either body weight or body weight gain in any animal.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "89500fb07a64791681bc4e93edf5f950", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "38", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "f0cd5807ab584affe57e44d8744256ef", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "No treatment related macroscopic findings were observed.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "aee6af989b1c6da3cc371929fe92b707", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "971796cd69839b6715ef11dadff12960", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - }, { - "value" : "39", - "valueDescription" : "Unmapped Entity", - "componentRuleId" : "DefaultComponents.999.0", - "componentLogEntityReferences" : [ { - "id" : "a3957a14b4e31bcfe42ba11e85cce322", - "type" : "test_results", - "entityRuleId" : "DOC.24.1", - "page" : 16 - } ] - } ], - "overridden" : false - } ] + "analysisNumber": 2, + "componentRulesVersion": 1, + "componentLogEntries": [ + { + "name": "Study_Title", + "originalValues": [ + { + "value": "SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", + "valueDescription": "First found value of type title or else ''", + "componentRuleId": "StudyTitle.0.0", + "componentLogEntityReferences": [ + { + "id": "fdc33ec238d48f3f5c9611ea4ba3ae1b", + "type": "title", + "entityRuleId": "DOC.6.1", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", + "valueDescription": "First found value of type title or else ''", + "componentRuleId": "StudyTitle.0.0", + "componentLogEntityReferences": [ + { + "id": "fdc33ec238d48f3f5c9611ea4ba3ae1b", + "type": "title", + "entityRuleId": "DOC.6.1", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "Performing_Laboratory", + "originalValues": [ + { + "value": "CiToxLAB Hungary Ltd., Hungary", + "valueDescription": "Laboratory name and country found!", + "componentRuleId": "PerformingLaboratory.1.0", + "componentLogEntityReferences": [ + { + "id": "f872738237a85170cb073b6220b98e65", + "type": "laboratory_name", + "entityRuleId": "DOC.7.2", + "page": 1 + }, + { + "id": "1c6dade9e8ea1a6f5e1b83da05f11368", + "type": "laboratory_country", + "entityRuleId": "DOC.7.2", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "CiToxLAB Hungary Ltd., Hungary", + "valueDescription": "Laboratory name and country found!", + "componentRuleId": "PerformingLaboratory.1.0", + "componentLogEntityReferences": [ + { + "id": "f872738237a85170cb073b6220b98e65", + "type": "laboratory_name", + "entityRuleId": "DOC.7.2", + "page": 1 + }, + { + "id": "1c6dade9e8ea1a6f5e1b83da05f11368", + "type": "laboratory_country", + "entityRuleId": "DOC.7.2", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "Report_Number", + "originalValues": [ + { + "value": "12/063-002P", + "valueDescription": "First found value of type report_number or else ''", + "componentRuleId": "ReportNumber.0.0", + "componentLogEntityReferences": [ + { + "id": "8ac7d1ad2d1614527bbb055cebb3824f", + "type": "report_number", + "entityRuleId": "DOC.2.0", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "12/063-002P", + "valueDescription": "First found value of type report_number or else ''", + "componentRuleId": "ReportNumber.0.0", + "componentLogEntityReferences": [ + { + "id": "8ac7d1ad2d1614527bbb055cebb3824f", + "type": "report_number", + "entityRuleId": "DOC.2.0", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "GLP_Study", + "originalValues": [ + { + "value": "Yes", + "valueDescription": "Yes if present, No if not", + "componentRuleId": "GLPStudy.0.0", + "componentLogEntityReferences": [ + { + "id": "23cacb7ae621b9cdf987f50e3bdd115b", + "type": "glp_study", + "entityRuleId": "DOC.8.0", + "page": 3 + }, + { + "id": "fcd231292774563c812cddcf4d78c1f5", + "type": "glp_study", + "entityRuleId": "DOC.8.0", + "page": 25 + } + ] + } + ], + "values": [ + { + "value": "Yes", + "valueDescription": "Yes if present, No if not", + "componentRuleId": "GLPStudy.0.0", + "componentLogEntityReferences": [ + { + "id": "23cacb7ae621b9cdf987f50e3bdd115b", + "type": "glp_study", + "entityRuleId": "DOC.8.0", + "page": 3 + }, + { + "id": "fcd231292774563c812cddcf4d78c1f5", + "type": "glp_study", + "entityRuleId": "DOC.8.0", + "page": 25 + } + ] + } + ], + "overridden": false + }, + { + "name": "Test_Guidelines_1", + "originalValues": [ + { + "value": "Nº 402: Acute Dermal Toxicity (24/02/1987)", + "valueDescription": "OECD Number and guideline year mapped!", + "componentRuleId": "TestGuideline.0.0", + "componentLogEntityReferences": [ + { + "id": "911e8b6737c9529a40590dbf6778c24b", + "type": "oecd_guideline_number", + "entityRuleId": "DOC.1.0", + "page": 1 + }, + { + "id": "962c4942cd62f0103b1bf5759e2e1b1a", + "type": "oecd_guideline_year", + "entityRuleId": "DOC.1.0", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "Nº 402: Acute Dermal Toxicity (24/02/1987)", + "valueDescription": "OECD Number and guideline year mapped!", + "componentRuleId": "TestGuideline.0.0", + "componentLogEntityReferences": [ + { + "id": "911e8b6737c9529a40590dbf6778c24b", + "type": "oecd_guideline_number", + "entityRuleId": "DOC.1.0", + "page": 1 + }, + { + "id": "962c4942cd62f0103b1bf5759e2e1b1a", + "type": "oecd_guideline_year", + "entityRuleId": "DOC.1.0", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "Test_Guidelines_2", + "originalValues": [ + { + "value": "EPA OPPTS 870.1200 (1998), EC 440/2008 (2008)", + "valueDescription": "Joining all values of type ec_guideline, epa_guideline with ', '", + "componentRuleId": "TestGuideline.2.0", + "componentLogEntityReferences": [ + { + "id": "506ef85dd4dcb0a2df24d203ad21d220", + "type": "epa_guideline", + "entityRuleId": "DOC.1.0", + "page": 1 + }, + { + "id": "09c476952cbc59e3661b03cd38d463e7", + "type": "ec_guideline", + "entityRuleId": "DOC.1.0", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "EPA OPPTS 870.1200 (1998), EC 440/2008 (2008)", + "valueDescription": "Joining all values of type ec_guideline, epa_guideline with ', '", + "componentRuleId": "TestGuideline.2.0", + "componentLogEntityReferences": [ + { + "id": "506ef85dd4dcb0a2df24d203ad21d220", + "type": "epa_guideline", + "entityRuleId": "DOC.1.0", + "page": 1 + }, + { + "id": "09c476952cbc59e3661b03cd38d463e7", + "type": "ec_guideline", + "entityRuleId": "DOC.1.0", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "Experimental_Starting_Date", + "originalValues": [ + { + "value": "21/03/2012", + "valueDescription": "Convert values of type 'experimental_start_date' to dd/MM/yyyy joined with ', '", + "componentRuleId": "StartDate.0.0", + "componentLogEntityReferences": [ + { + "id": "decf41962064ede79b213035f34862b3", + "type": "experimental_start_date", + "entityRuleId": "DOC.3.0", + "page": 7 + } + ] + } + ], + "values": [ + { + "value": "21/03/2012", + "valueDescription": "Convert values of type 'experimental_start_date' to dd/MM/yyyy joined with ', '", + "componentRuleId": "StartDate.0.0", + "componentLogEntityReferences": [ + { + "id": "decf41962064ede79b213035f34862b3", + "type": "experimental_start_date", + "entityRuleId": "DOC.3.0", + "page": 7 + } + ] + } + ], + "overridden": false + }, + { + "name": "Experimental_Completion_Date", + "originalValues": [ + { + "value": "04/04/2012", + "valueDescription": "Convert values of type 'experimental_end_date' to dd/MM/yyyy joined with ', '", + "componentRuleId": "CompletionDate.0.0", + "componentLogEntityReferences": [ + { + "id": "346a5ce1bd59081c74885078af715284", + "type": "experimental_end_date", + "entityRuleId": "DOC.4.0", + "page": 7 + } + ] + } + ], + "values": [ + { + "value": "04/04/2012", + "valueDescription": "Convert values of type 'experimental_end_date' to dd/MM/yyyy joined with ', '", + "componentRuleId": "CompletionDate.0.0", + "componentLogEntityReferences": [ + { + "id": "346a5ce1bd59081c74885078af715284", + "type": "experimental_end_date", + "entityRuleId": "DOC.4.0", + "page": 7 + } + ] + } + ], + "overridden": false + }, + { + "name": "Certificate_of_Analysis_Batch_Identification", + "originalValues": [ + { + "value": "SMU1LP001", + "valueDescription": "Joining all unique values of type batch_number with ', '", + "componentRuleId": "AnalysisCertificate.0.0", + "componentLogEntityReferences": [ + { + "id": "93b7180cb815e41a53a3f1340776dcf2", + "type": "batch_number", + "entityRuleId": "DOC.9.1", + "page": 12 + }, + { + "id": "e0cb8bec3a8568335eae3d8776237c8f", + "type": "batch_number", + "entityRuleId": "DOC.9.0", + "page": 23 + } + ] + } + ], + "values": [ + { + "value": "SMU1LP001", + "valueDescription": "Joining all unique values of type batch_number with ', '", + "componentRuleId": "AnalysisCertificate.0.0", + "componentLogEntityReferences": [ + { + "id": "93b7180cb815e41a53a3f1340776dcf2", + "type": "batch_number", + "entityRuleId": "DOC.9.1", + "page": 12 + }, + { + "id": "e0cb8bec3a8568335eae3d8776237c8f", + "type": "batch_number", + "entityRuleId": "DOC.9.0", + "page": 23 + } + ] + } + ], + "overridden": false + }, + { + "name": "Species", + "originalValues": [ + { + "value": "rats", + "valueDescription": "First found value of type species or else ''", + "componentRuleId": "Species.0.0", + "componentLogEntityReferences": [ + { + "id": "b897fbedc847ea1d23f349e5350bc8f1", + "type": "species", + "entityRuleId": "DOC.5.2", + "page": 14 + }, + { + "id": "f5d80ce83f739506f95420a375c8effa", + "type": "species", + "entityRuleId": "DOC.5.2", + "page": 14 + }, + { + "id": "4f8b024892a7ee7826a7638833ed0de2", + "type": "species", + "entityRuleId": "DOC.5.2", + "page": 14 + } + ] + } + ], + "values": [ + { + "value": "rats", + "valueDescription": "First found value of type species or else ''", + "componentRuleId": "Species.0.0", + "componentLogEntityReferences": [ + { + "id": "b897fbedc847ea1d23f349e5350bc8f1", + "type": "species", + "entityRuleId": "DOC.5.2", + "page": 14 + }, + { + "id": "f5d80ce83f739506f95420a375c8effa", + "type": "species", + "entityRuleId": "DOC.5.2", + "page": 14 + }, + { + "id": "4f8b024892a7ee7826a7638833ed0de2", + "type": "species", + "entityRuleId": "DOC.5.2", + "page": 14 + } + ] + } + ], + "overridden": false + }, + { + "name": "Strain", + "originalValues": [ + { + "value": "CRL:(WI)", + "valueDescription": "First found value of type strain or else ''", + "componentRuleId": "Strain.0.0", + "componentLogEntityReferences": [ + { + "id": "b9784d1fa897ade518e807b3e371b275", + "type": "strain", + "entityRuleId": "DOC.5.3", + "page": 14 + } + ] + } + ], + "values": [ + { + "value": "CRL:(WI)", + "valueDescription": "First found value of type strain or else ''", + "componentRuleId": "Strain.0.0", + "componentLogEntityReferences": [ + { + "id": "b9784d1fa897ade518e807b3e371b275", + "type": "strain", + "entityRuleId": "DOC.5.3", + "page": 14 + } + ] + } + ], + "overridden": false + }, + { + "name": "Doses_mg_per_kg_bw", + "originalValues": [ + { + "value": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours. Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14). 14", + "valueDescription": "Joining all values of type doses_(mg_kg_bw) with ' '", + "componentRuleId": "Necropsy.1.0", + "componentLogEntityReferences": [ + { + "id": "c1bf6261c8dc8f8f6aa0d6fe5c6553bd", + "type": "doses_(mg_kg_bw)", + "entityRuleId": "DOC.35.0", + "page": 10 + }, + { + "id": "ede065ea1725687b77490a484aa2d9e8", + "type": "doses_(mg_kg_bw)", + "entityRuleId": "DOC.35.0", + "page": 10 + }, + { + "id": "1210a0f7ffd1c0d558d330a09241bc7d", + "type": "doses_(mg_kg_bw)", + "entityRuleId": "DOC.35.0", + "page": 10 + } + ] + } + ], + "values": [ + { + "value": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours. Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14). 14", + "valueDescription": "Joining all values of type doses_(mg_kg_bw) with ' '", + "componentRuleId": "Necropsy.1.0", + "componentLogEntityReferences": [ + { + "id": "c1bf6261c8dc8f8f6aa0d6fe5c6553bd", + "type": "doses_(mg_kg_bw)", + "entityRuleId": "DOC.35.0", + "page": 10 + }, + { + "id": "ede065ea1725687b77490a484aa2d9e8", + "type": "doses_(mg_kg_bw)", + "entityRuleId": "DOC.35.0", + "page": 10 + }, + { + "id": "1210a0f7ffd1c0d558d330a09241bc7d", + "type": "doses_(mg_kg_bw)", + "entityRuleId": "DOC.35.0", + "page": 10 + } + ] + } + ], + "overridden": false + }, + { + "name": "Mortality_Statement", + "originalValues": [ + { + "value": "No mortality occurred on the study. 35", + "valueDescription": "Joining all values of type mortality_statement with ' '", + "componentRuleId": "MortalityStatement.0.0", + "componentLogEntityReferences": [ + { + "id": "0ae4b2b53905f238cf17c20df26f209d", + "type": "mortality_statement", + "entityRuleId": "DOC.32.0", + "page": 16 + }, + { + "id": "849e9e6c36d5c510225587c21d66b18d", + "type": "mortality_statement", + "entityRuleId": "DOC.32.0", + "page": 16 + } + ] + } + ], + "values": [ + { + "value": "No mortality occurred on the study. 35", + "valueDescription": "Joining all values of type mortality_statement with ' '", + "componentRuleId": "MortalityStatement.0.0", + "componentLogEntityReferences": [ + { + "id": "0ae4b2b53905f238cf17c20df26f209d", + "type": "mortality_statement", + "entityRuleId": "DOC.32.0", + "page": 16 + }, + { + "id": "849e9e6c36d5c510225587c21d66b18d", + "type": "mortality_statement", + "entityRuleId": "DOC.32.0", + "page": 16 + } + ] + } + ], + "overridden": false + }, + { + "name": "Weight_Behavior_Changes", + "originalValues": [ + { + "value": "No mortality occurred during the study.\nNo adverse clinical signs were observed after treatment with the test item during the 14 day observation period. Erythema was noted in all animals (10/10) on Day 1 only. All animals were symptom free from 2 days after the treatment.\nThere were no treatment related effects on body weight or body weight gain during the observation period.\nThere was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.\n15", + "valueDescription": "Joining all values of type weight_behavior_changes with '\n'", + "componentRuleId": "WeightBehavior.0.0", + "componentLogEntityReferences": [ + { + "id": "952c0822930bf5b8e2026f96cd7d9b37", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "6ce01344b447329c1afa3f1f846173f0", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "8ffd807ffd5ca21c759c78f54cd87f4f", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "9eeb75725d19bc1f13330aa9cdaa3fdc", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "a74be4f45046f442315f472490e39e59", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + } + ] + } + ], + "values": [ + { + "value": "No mortality occurred during the study.\nNo adverse clinical signs were observed after treatment with the test item during the 14 day observation period. Erythema was noted in all animals (10/10) on Day 1 only. All animals were symptom free from 2 days after the treatment.\nThere were no treatment related effects on body weight or body weight gain during the observation period.\nThere was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.\n15", + "valueDescription": "Joining all values of type weight_behavior_changes with '\n'", + "componentRuleId": "WeightBehavior.0.0", + "componentLogEntityReferences": [ + { + "id": "952c0822930bf5b8e2026f96cd7d9b37", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "6ce01344b447329c1afa3f1f846173f0", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "8ffd807ffd5ca21c759c78f54cd87f4f", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "9eeb75725d19bc1f13330aa9cdaa3fdc", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + }, + { + "id": "a74be4f45046f442315f472490e39e59", + "type": "weight_behavior_changes", + "entityRuleId": "DOC.16.0", + "page": 10 + } + ] + } + ], + "overridden": false + }, + { + "name": "Necropsy_Findings", + "originalValues": [ + { + "value": "No treatment related macroscopic findings were observed. There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy. 39", + "valueDescription": "Joining all values of type necropsy_findings with ' '", + "componentRuleId": "Necropsy.0.0", + "componentLogEntityReferences": [ + { + "id": "c0c22ea4e6dda938468d4be3102334ae", + "type": "necropsy_findings", + "entityRuleId": "DOC.17.0", + "page": 16 + }, + { + "id": "799d19b6a371f575c77e988ba7e23063", + "type": "necropsy_findings", + "entityRuleId": "DOC.17.0", + "page": 16 + }, + { + "id": "24edc84baf21ef6bb37c5b20801d5e84", + "type": "necropsy_findings", + "entityRuleId": "DOC.17.0", + "page": 16 + } + ] + } + ], + "values": [ + { + "value": "No treatment related macroscopic findings were observed. There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy. 39", + "valueDescription": "Joining all values of type necropsy_findings with ' '", + "componentRuleId": "Necropsy.0.0", + "componentLogEntityReferences": [ + { + "id": "c0c22ea4e6dda938468d4be3102334ae", + "type": "necropsy_findings", + "entityRuleId": "DOC.17.0", + "page": 16 + }, + { + "id": "799d19b6a371f575c77e988ba7e23063", + "type": "necropsy_findings", + "entityRuleId": "DOC.17.0", + "page": 16 + }, + { + "id": "24edc84baf21ef6bb37c5b20801d5e84", + "type": "necropsy_findings", + "entityRuleId": "DOC.17.0", + "page": 16 + } + ] + } + ], + "overridden": false + }, + { + "name": "Deviation_from_the_Guideline", + "originalValues": [ + { + "value": "", + "valueDescription": "Joining all values of type with '\n'", + "componentRuleId": "GuidelineDeviation.0.0", + "componentLogEntityReferences": [] + } + ], + "values": [ + { + "value": "", + "valueDescription": "Joining all values of type with '\n'", + "componentRuleId": "GuidelineDeviation.0.0", + "componentLogEntityReferences": [] + } + ], + "overridden": false + }, + { + "name": "Conclusion_LD50_Greater_than", + "originalValues": [ + { + "value": "Greater than", + "valueDescription": "Entity of type 'ld50_greater' found", + "componentRuleId": "Conclusion.1.0", + "componentLogEntityReferences": [ + { + "id": "311a441f815daaffc20453a79712a684", + "type": "ld50_greater", + "entityRuleId": "DOC.10.0", + "page": 10 + }, + { + "id": "107db9f46656e13234c90b9a3a57b694", + "type": "ld50_greater", + "entityRuleId": "DOC.10.0", + "page": 11 + }, + { + "id": "2c788c7a7118ef9bb18edf7d5e7dbc7b", + "type": "ld50_greater", + "entityRuleId": "DOC.10.0", + "page": 16 + } + ] + } + ], + "values": [ + { + "value": "Greater than", + "valueDescription": "Entity of type 'ld50_greater' found", + "componentRuleId": "Conclusion.1.0", + "componentLogEntityReferences": [ + { + "id": "311a441f815daaffc20453a79712a684", + "type": "ld50_greater", + "entityRuleId": "DOC.10.0", + "page": 10 + }, + { + "id": "107db9f46656e13234c90b9a3a57b694", + "type": "ld50_greater", + "entityRuleId": "DOC.10.0", + "page": 11 + }, + { + "id": "2c788c7a7118ef9bb18edf7d5e7dbc7b", + "type": "ld50_greater", + "entityRuleId": "DOC.10.0", + "page": 16 + } + ] + } + ], + "overridden": false + }, + { + "name": "Conclusion_LD50_mg_per_kg", + "originalValues": [ + { + "value": "2000", + "valueDescription": "Joining all unique values of type ld50_value with ', '", + "componentRuleId": "Conclusion.0.0", + "componentLogEntityReferences": [ + { + "id": "fff9617f8d11bd678e1d17ee330d0eef", + "type": "ld50_value", + "entityRuleId": "DOC.10.0", + "page": 10 + }, + { + "id": "2ef271bd35871a6266f456a7c4360042", + "type": "ld50_value", + "entityRuleId": "DOC.10.0", + "page": 16 + } + ] + } + ], + "values": [ + { + "value": "2000", + "valueDescription": "Joining all unique values of type ld50_value with ', '", + "componentRuleId": "Conclusion.0.0", + "componentLogEntityReferences": [ + { + "id": "fff9617f8d11bd678e1d17ee330d0eef", + "type": "ld50_value", + "entityRuleId": "DOC.10.0", + "page": 10 + }, + { + "id": "2ef271bd35871a6266f456a7c4360042", + "type": "ld50_value", + "entityRuleId": "DOC.10.0", + "page": 16 + } + ] + } + ], + "overridden": false + }, + { + "name": "Conclusion_Minimum_Confidence", + "originalValues": [ + { + "value": "", + "valueDescription": "Joining all unique values of type with ', '", + "componentRuleId": "Conclusion.2.0", + "componentLogEntityReferences": [] + } + ], + "values": [ + { + "value": "", + "valueDescription": "Joining all unique values of type with ', '", + "componentRuleId": "Conclusion.2.0", + "componentLogEntityReferences": [] + } + ], + "overridden": false + }, + { + "name": "Conclusion_Maximum_Confidence", + "originalValues": [ + { + "value": "", + "valueDescription": "Joining all unique values of type with ', '", + "componentRuleId": "Conclusion.3.0", + "componentLogEntityReferences": [] + } + ], + "values": [ + { + "value": "", + "valueDescription": "Joining all unique values of type with ', '", + "componentRuleId": "Conclusion.3.0", + "componentLogEntityReferences": [] + } + ], + "overridden": false + }, + { + "name": "Study_Conclusion", + "originalValues": [ + { + "value": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", + "valueDescription": "Joining all values of type study_conclusion with ' '", + "componentRuleId": "StudyConclusion.0.0", + "componentLogEntityReferences": [ + { + "id": "2fd7f1df547bbea6932344ded3d0a7bb", + "type": "study_conclusion", + "entityRuleId": "DOC.15.0", + "page": 10 + } + ] + } + ], + "values": [ + { + "value": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", + "valueDescription": "Joining all values of type study_conclusion with ' '", + "componentRuleId": "StudyConclusion.0.0", + "componentLogEntityReferences": [ + { + "id": "2fd7f1df547bbea6932344ded3d0a7bb", + "type": "study_conclusion", + "entityRuleId": "DOC.15.0", + "page": 10 + } + ] + } + ], + "overridden": false + }, + { + "name": "laboratory_country", + "originalValues": [ + { + "value": "Hungary", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "d469a79eedff7c52b006ae34b36a7ff8", + "type": "laboratory_country", + "entityRuleId": "DOC.7.2", + "page": 1 + } + ] + }, + { + "value": "Hungary", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "9593a204d3530a8bb90cab1921cf57c1", + "type": "laboratory_country", + "entityRuleId": "DOC.7.2", + "page": 1 + } + ] + }, + { + "value": "United Kingdom", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "1b968e9b5ce3e90e4158c5353facb78f", + "type": "laboratory_country", + "entityRuleId": "DOC.7.1", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "Hungary", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "d469a79eedff7c52b006ae34b36a7ff8", + "type": "laboratory_country", + "entityRuleId": "DOC.7.2", + "page": 1 + } + ] + }, + { + "value": "Hungary", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "9593a204d3530a8bb90cab1921cf57c1", + "type": "laboratory_country", + "entityRuleId": "DOC.7.2", + "page": 1 + } + ] + }, + { + "value": "United Kingdom", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "1b968e9b5ce3e90e4158c5353facb78f", + "type": "laboratory_country", + "entityRuleId": "DOC.7.1", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "oecd_guideline", + "originalValues": [ + { + "value": "OECD 402 (1987)", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "0adce062717031fcb3130cb4b5121220", + "type": "oecd_guideline", + "entityRuleId": "DOC.1.0", + "page": 1 + } + ] + } + ], + "values": [ + { + "value": "OECD 402 (1987)", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "0adce062717031fcb3130cb4b5121220", + "type": "oecd_guideline", + "entityRuleId": "DOC.1.0", + "page": 1 + } + ] + } + ], + "overridden": false + }, + { + "name": "study_conclusion", + "originalValues": [ + { + "value": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "f55749c2ff48055d2c2fa7dd08adde62", + "type": "study_conclusion", + "entityRuleId": "DOC.15.0", + "page": 16 + } + ] + } + ], + "values": [ + { + "value": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "f55749c2ff48055d2c2fa7dd08adde62", + "type": "study_conclusion", + "entityRuleId": "DOC.15.0", + "page": 16 + } + ] + } + ], + "overridden": false + }, + { + "name": "study_design", + "originalValues": [ + { + "value": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "5da351be47fa414cfb7f833d3ca87f5e", + "type": "study_design", + "entityRuleId": "DOC.20.0", + "page": 10 + } + ] + }, + { + "value": "Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14).", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "a7c111ff4a0456cb14456e27df5b155b", + "type": "study_design", + "entityRuleId": "DOC.20.0", + "page": 10 + } + ] + }, + { + "value": "14", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "aee5552913b8d2b1fb3a57c84d82649b", + "type": "study_design", + "entityRuleId": "DOC.20.0", + "page": 10 + } + ] + } + ], + "values": [ + { + "value": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "5da351be47fa414cfb7f833d3ca87f5e", + "type": "study_design", + "entityRuleId": "DOC.20.0", + "page": 10 + } + ] + }, + { + "value": "Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14).", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "a7c111ff4a0456cb14456e27df5b155b", + "type": "study_design", + "entityRuleId": "DOC.20.0", + "page": 10 + } + ] + }, + { + "value": "14", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "aee5552913b8d2b1fb3a57c84d82649b", + "type": "study_design", + "entityRuleId": "DOC.20.0", + "page": 10 + } + ] + } + ], + "overridden": false + }, + { + "name": "test_results", + "originalValues": [ + { + "value": "Study Title: SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "15c7b4591b08cb8b9eae17b1e048ed62", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "Test Item: SYN545192 EC (A15457H)", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "bd2f28162667f5307980dcbefceb7b55", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "This study has been inspected, and this report audited by the Quality Assurance Unit in compliance with the Principles of Good Laboratory Practice. As far as it can be reasonably established the methods described and the results incorporated in this report accurately reflect the raw data produced during this study.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "8dd6465f6585320429690c8dfec02013", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "All inspections, data reviews and the report audit were reported in written form to the study director and to management. The dates of such inspections and of the report audit are given below:", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "142b22eb9e0c50104a33a939a1a7b3cf", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "4.2", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "4280bb81c5a58bedf7f2578ffbac9482", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "No mortality occurred on the study.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "ac4cf632670c1e6b9f29a36a2f3a1545", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "35", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "7ef3c9a644f708038fd627ce289b6fec", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "There were no adverse clinical signs noted in any animals throughout the study.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "c6988066e4ea1b9fca609f2d04bc68ee", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "36", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "41e6e61eb69d675d15ad0510a58e5ac8", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "Erythema was noted in all animals (10/10) on Day 1. All animals were symptom free from 2 days after the treatment.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "29fa49dda60b8e8a243e2f46a9a9b66a", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "37", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "a49264ce0b7d01cb9e5ac6c439fc21b9", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "There were no effects on either body weight or body weight gain in any animal.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "89500fb07a64791681bc4e93edf5f950", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "38", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "f0cd5807ab584affe57e44d8744256ef", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "No treatment related macroscopic findings were observed.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "aee6af989b1c6da3cc371929fe92b707", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "971796cd69839b6715ef11dadff12960", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "39", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "a3957a14b4e31bcfe42ba11e85cce322", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + } + ], + "values": [ + { + "value": "Study Title: SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "15c7b4591b08cb8b9eae17b1e048ed62", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "Test Item: SYN545192 EC (A15457H)", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "bd2f28162667f5307980dcbefceb7b55", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "This study has been inspected, and this report audited by the Quality Assurance Unit in compliance with the Principles of Good Laboratory Practice. As far as it can be reasonably established the methods described and the results incorporated in this report accurately reflect the raw data produced during this study.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "8dd6465f6585320429690c8dfec02013", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "All inspections, data reviews and the report audit were reported in written form to the study director and to management. The dates of such inspections and of the report audit are given below:", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "142b22eb9e0c50104a33a939a1a7b3cf", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "4.2", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "4280bb81c5a58bedf7f2578ffbac9482", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 5 + } + ] + }, + { + "value": "No mortality occurred on the study.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "ac4cf632670c1e6b9f29a36a2f3a1545", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "35", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "7ef3c9a644f708038fd627ce289b6fec", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "There were no adverse clinical signs noted in any animals throughout the study.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "c6988066e4ea1b9fca609f2d04bc68ee", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "36", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "41e6e61eb69d675d15ad0510a58e5ac8", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "Erythema was noted in all animals (10/10) on Day 1. All animals were symptom free from 2 days after the treatment.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "29fa49dda60b8e8a243e2f46a9a9b66a", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "37", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "a49264ce0b7d01cb9e5ac6c439fc21b9", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "There were no effects on either body weight or body weight gain in any animal.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "89500fb07a64791681bc4e93edf5f950", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "38", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "f0cd5807ab584affe57e44d8744256ef", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "No treatment related macroscopic findings were observed.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "aee6af989b1c6da3cc371929fe92b707", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "971796cd69839b6715ef11dadff12960", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + }, + { + "value": "39", + "valueDescription": "Unmapped Entity", + "componentRuleId": "DefaultComponents.999.0", + "componentLogEntityReferences": [ + { + "id": "a3957a14b4e31bcfe42ba11e85cce322", + "type": "test_results", + "entityRuleId": "DOC.24.1", + "page": 16 + } + ] + } + ], + "overridden": false + } + ] } \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/entityLogWithParagraphIdx.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/entityLogWithParagraphIdx.json index 29a2380..5d066c5 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/entityLogWithParagraphIdx.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/entityLogWithParagraphIdx.json @@ -116,7 +116,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -221,7 +221,7 @@ "value": "Maximiliam Schmitt", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -275,7 +275,7 @@ "value": "food-industry@korea.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -328,7 +328,7 @@ "value": "gordonjcp@msn.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -380,7 +380,7 @@ "value": "Ranya Eikenboom", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -432,7 +432,7 @@ "value": "maximiliamschmitt@t-online.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -486,7 +486,7 @@ "value": "Siegfried", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -538,7 +538,7 @@ "value": "+81 764770164", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -592,7 +592,7 @@ "value": "Doe J.", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -724,7 +724,7 @@ "value": "+274 1432 8933", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -778,7 +778,7 @@ "value": "Xinyi Y. Tao", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -830,7 +830,7 @@ "value": "+274 1432 8933", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -884,7 +884,7 @@ "value": "+27414328992", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -938,7 +938,7 @@ "value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -990,7 +990,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -1042,7 +1042,7 @@ "value": "+274 34223331", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1148,7 +1148,7 @@ "value": "CTL/with dictionary entry 1234 with Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -1200,7 +1200,7 @@ "value": "+274 1432 8991", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1306,7 +1306,7 @@ "value": "+82 122 34180", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -1359,7 +1359,7 @@ "value": "David Ksenia", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -1411,7 +1411,7 @@ "value": "Schmitt", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -1463,7 +1463,7 @@ "value": "Emilia Lockhart", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -1571,7 +1571,7 @@ "value": "+82 122 34180", "reason": "Found after \"Fax:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -1623,7 +1623,7 @@ "value": "maximiliamschmitt@t-online.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1677,7 +1677,7 @@ "value": "Seriknowmobil@co.uk", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1731,7 +1731,7 @@ "value": "Özgür U. Reyhan", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -1783,7 +1783,7 @@ "value": "Central Research Industry", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1837,7 +1837,7 @@ "value": "+81 6653 44563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -1891,7 +1891,7 @@ "value": "+81 6653 44563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2053,7 +2053,7 @@ "value": "+274 1432 8990", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2107,7 +2107,7 @@ "value": "Central Research Industry", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -2215,7 +2215,7 @@ "value": "Dr. Alan Grant", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 15, @@ -2346,7 +2346,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -2404,7 +2404,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -2462,7 +2462,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -2520,7 +2520,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3334,7 +3334,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3536,7 +3536,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3594,7 +3594,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3652,7 +3652,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3737,7 +3737,7 @@ "value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer", "reason": "AUTHOR(S) was found", "matchedRule": "CBI.23.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [], "closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ", @@ -3795,7 +3795,7 @@ "value": "CTL with dictionary entry 5678 without Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -3847,7 +3847,7 @@ "value": "Riddley Scott", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -3900,7 +3900,7 @@ "value": "library@outlook.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -3952,7 +3952,7 @@ "value": "Maximiliam Schmitt", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4006,7 +4006,7 @@ "value": "example@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4060,7 +4060,7 @@ "value": "Jill Valentine", "reason": "Found after \"Contact:\" contact keyword", "matchedRule": "PII.5.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -4112,7 +4112,7 @@ "value": "Kong", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4220,7 +4220,7 @@ "value": "493 1223 4592", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4382,7 +4382,7 @@ "value": "example@mail.com", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4436,7 +4436,7 @@ "value": "+49 2113 2311 563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4544,7 +4544,7 @@ "value": "+49 2113 2311 563", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4598,7 +4598,7 @@ "value": "Emilia Lockhart", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -4652,7 +4652,7 @@ "value": "Max Mustermann", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -4756,7 +4756,7 @@ "value": "maximiliamschmitt@arcor.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4864,7 +4864,7 @@ "value": "+274 1432 8991", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -4918,7 +4918,7 @@ "value": "kawasaki@me.com", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -4970,7 +4970,7 @@ "value": "Seriknowmobil@co.uk", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5024,7 +5024,7 @@ "value": "This is a special case, everything between this and the next keyword should be redacted", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5086,7 +5086,7 @@ "value": "Feuer A.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -5247,7 +5247,7 @@ "value": "+275 5678 1234 132", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5458,7 +5458,7 @@ "value": "Sude Halide Nurullah", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -5510,7 +5510,7 @@ "value": "Key", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 8, @@ -5616,7 +5616,7 @@ "value": "Funnarie B.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -5671,7 +5671,7 @@ "value": "European Central Institute", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5725,7 +5725,7 @@ "value": "+274 1432 8990", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -5779,7 +5779,7 @@ "value": "+274 34223331", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -5833,7 +5833,7 @@ "value": "dinther@comcast.net", "reason": "Found by Email Regex", "matchedRule": "PII.1.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 11, @@ -5885,7 +5885,7 @@ "value": "M. Mustermann", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -5989,7 +5989,7 @@ "value": "Charalampos Schenk", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 1, @@ -6041,7 +6041,7 @@ "value": "BL with dictionary entry 5678 without Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -6093,7 +6093,7 @@ "value": "+27414328992", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6147,7 +6147,7 @@ "value": "+82 122 34188", "reason": "Found after \"Phone:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -6251,7 +6251,7 @@ "value": "+81 764770164", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6305,7 +6305,7 @@ "value": "+82 122 34188", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -6358,7 +6358,7 @@ "value": "Michael N.", "reason": "Author(s) found", "matchedRule": "CBI.9.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 4, @@ -6413,7 +6413,7 @@ "value": "Desiree", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -6465,7 +6465,7 @@ "value": "493 1223 4592", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -6582,7 +6582,7 @@ "value": "BL/with dictionary entry 1234 with Slash", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 5, @@ -6634,7 +6634,7 @@ "value": "C. J. Alfred", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -6686,7 +6686,7 @@ "value": "+49 2113 2311 560", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -6740,7 +6740,7 @@ "value": "B. Rahim", "reason": "Personal Information found", "matchedRule": "PII.0.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 10, @@ -6896,7 +6896,7 @@ "value": "pharma-industry@korea.com", "reason": "Found after \"E-mail:\" contact keyword", "matchedRule": "PII.4.2", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 14, @@ -6948,7 +6948,7 @@ "value": "maximiliamschmitt@arcor.de", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -7002,7 +7002,7 @@ "value": "+49 2113 2311 560", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -7110,7 +7110,7 @@ "value": "Kong", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 13, @@ -7218,7 +7218,7 @@ "value": "Melanie", "reason": "Author found by \"et al\" regex", "matchedRule": "CBI.16.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 6, @@ -7270,7 +7270,7 @@ "value": "Doe", "reason": "Author found", "matchedRule": "CBI.0.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 0, @@ -7374,7 +7374,7 @@ "value": "European Central Institute", "reason": "Applicant information was found", "matchedRule": "PII.7.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 12, @@ -7530,7 +7530,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -7580,7 +7580,7 @@ "value": "Image:Signature", "reason": "Signature Found", "matchedRule": "ETC.2.1", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 20, @@ -7680,7 +7680,7 @@ "value": "Clarissa’s Donut", "reason": "manual entries are applied by default, created by manual change", "matchedRule": "MAN.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -7743,7 +7743,7 @@ "value": "Simpson's To", "reason": "manual entries are applied by default, created by manual change", "matchedRule": "MAN.5.0", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "legalBasis": "personal_data_geolocation_article_39e3", "imported": false, "containingNodeId": [ 3, @@ -7803,47 +7803,56 @@ { "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" + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "technicalName": "personal_data_geolocation_article_39e3" }, { "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" + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "technicalName": "vertebrate_study_personal_data_geolocation_article_39e2" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "manufacturing_production_process" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "links_producer_applicant" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "commercial_information" }, { "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)" + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", + "technicalName": "quantitative_composition" }, { "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" + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009", + "technicalName": "specification_impurity" }, { "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" + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009", + "technicalName": "results_production_batches" }, { "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" + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009", + "technicalName": "composition_plant_protection_product" } ], "dictionaryVersion": 20, diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/fileAttributes.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/fileAttributes.json index e2206d6..646d527 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/fileAttributes.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/fileAttributes.json @@ -1,4 +1,4 @@ - [ +[ { "id": "1b5ebe26-34f2-4c3b-983d-c0f0a010302c", "csvColumnHeader": "OECD Number", diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/legalBasisMapping.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/legalBasisMapping.json index b2fcb59..5159fa9 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/legalBasisMapping.json +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/scm/legalBasisMapping.json @@ -2,6 +2,7 @@ { "name": "n-a.", "description": "n-a.", - "reason": "n-a." + "reason": "n-a.", + "technicalName": "n-a." } ] \ No newline at end of file