diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationStarterService.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationStarterService.java index 0ba0fb3e6..acb3ec590 100644 --- a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationStarterService.java +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/MigrationStarterService.java @@ -1,27 +1,25 @@ package com.iqser.red.service.peristence.v1.server.migration; -import com.iqser.red.service.peristence.v1.server.settings.FileManagementServiceSettings; -import com.iqser.red.service.persistence.management.v1.processor.service.persistence.MigrationPersistenceService; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; +import java.util.Comparator; +import java.util.List; + import org.springframework.boot.SpringApplication; import org.springframework.boot.context.event.ApplicationReadyEvent; import org.springframework.context.ApplicationContext; import org.springframework.context.event.EventListener; import org.springframework.stereotype.Service; -import java.util.Comparator; -import java.util.List; +import com.iqser.red.service.peristence.v1.server.settings.FileManagementServiceSettings; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.MigrationPersistenceService; + +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; @Slf4j @Service @RequiredArgsConstructor public class MigrationStarterService { - // This should always be the latest migration version (2), but as 3.2.x does not have this, currently it is 1. - // After migration to 3.3.x we must fix this. - public static final long MIGRATION_SEED_VERSION = 8; - private final List migrations; private final FileManagementServiceSettings settings; private final ApplicationContext ctx; @@ -53,7 +51,8 @@ public class MigrationStarterService { private void seedMigration() { if (migrationPersistenceService.getLatestProcessedVersion() == null) { - migrationPersistenceService.insertMigration("migration start version", MIGRATION_SEED_VERSION); + migrations.sort(Comparator.comparing(Migration::getVersion).reversed()); + migrationPersistenceService.insertMigration("migration start version", migrations.get(0).getVersion()); } } diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/ReduceTextFileSizeMigration10.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/ReduceTextFileSizeMigration10.java new file mode 100644 index 000000000..5873a58c1 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/ReduceTextFileSizeMigration10.java @@ -0,0 +1,81 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import com.iqser.red.service.peristence.v1.server.migration.Migration; +import com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext.Text; +import com.iqser.red.service.peristence.v1.server.utils.StorageIdUtils; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.DossierPersistenceService; +import com.iqser.red.service.persistence.management.v1.processor.service.persistence.FileStatusPersistenceService; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; +import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; +import com.iqser.red.storage.commons.service.StorageService; + +import lombok.Setter; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Setter +@Service +public class ReduceTextFileSizeMigration10 extends Migration { + + private static final String NAME = "Reduce TEXT filesize migration"; + private static final long VERSION = 10; + + @Autowired + private DossierPersistenceService dossierPersistenceService; + + @Autowired + private FileStatusPersistenceService fileStatusPersistenceService; + + @Autowired + private StorageService storageService; + + + public ReduceTextFileSizeMigration10() { + + super(NAME, VERSION); + } + + + @Override + protected void migrate() { + + var dossiers = dossierPersistenceService.findAllDossiers(); + dossiers.forEach(dossier -> { + if (dossier.getHardDeletedTime() == null) { + var files = fileStatusPersistenceService.getStatusesForDossier(dossier.getId()); + log.info("Start migration of dossier {}", dossier.getId()); + files.forEach(file -> { + if (file.getHardDeletedTime() == null) { + log.info("Start migration of file {}", file.getId()); + migrateFile(dossier.getId(), file.getId()); + log.info("Finished migration of file {}", file.getId()); + } + }); + log.info("Finished migration of dossier {}", dossier.getId()); + } + }); + + } + + + @SneakyThrows + public void migrateFile(String dossierId, String fileId) { + + try { + var text = storageService.readJSONObject(StorageIdUtils.getStorageId(dossierId, fileId, FileType.TEXT), Text.class); + storageService.storeJSONObject(StorageIdUtils.getStorageId(dossierId, fileId, FileType.TEXT), text); + } catch (StorageObjectDoesNotExist e) { + log.warn("Text not found for dossier {} and file {}, ignoring....", dossierId, fileId); + } + } + +} + + + + + diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/AbstractTextContainer.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/AbstractTextContainer.java new file mode 100644 index 000000000..b33e9e4e1 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/AbstractTextContainer.java @@ -0,0 +1,52 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import com.dslplatform.json.JsonAttribute; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.iqser.red.service.redaction.v1.model.Rectangle; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@AllArgsConstructor +@NoArgsConstructor +public abstract class AbstractTextContainer { + + @JsonIgnore + protected float minX; + @JsonIgnore + protected float maxX; + @JsonIgnore + protected float minY; + @JsonIgnore + protected float maxY; + @JsonIgnore + protected String classification; + @JsonIgnore + protected int page; + + + public abstract String getText(); + + public boolean contains(AbstractTextContainer other) { + return this.minX <= other.minX && this.maxX >= other.maxX && this.minY >= other.minY && this.maxY <= other.maxY; + } + + public boolean contains(Rectangle other) { + return page == other.getPage() && this.minX <= other.getTopLeft().getX() && this.maxX >= other.getTopLeft().getX() + other.getWidth() && this.minY <= other.getTopLeft().getY() && this.maxY >= other.getTopLeft().getY() + other.getHeight(); + } + + @JsonIgnore + @JsonAttribute(ignore = true) + public float getHeight() { + return maxY - minY; + } + + @JsonIgnore + @JsonAttribute(ignore = true) + public float getWidth() { + return maxX - minX; + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/CellValue.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/CellValue.java new file mode 100644 index 000000000..8f5f897e0 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/CellValue.java @@ -0,0 +1,19 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import java.util.ArrayList; +import java.util.List; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class CellValue { + + private List textBlocks = new ArrayList<>(); + + private int rowSpanStart; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/Image.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/Image.java new file mode 100644 index 000000000..2e556b2fb --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/Image.java @@ -0,0 +1,29 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import com.dslplatform.json.CompiledJson; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@CompiledJson +@NoArgsConstructor +@AllArgsConstructor +public class Image { + + private String type; + private RedRectangle2D position; + private boolean redaction; + private String redactionReason; + private String legalBasis; + private int matchedRule; + private int sectionNumber; + private String section; + private int page; + private boolean ignored; + private boolean hasTransparency; + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/RedRectangle2D.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/RedRectangle2D.java new file mode 100644 index 000000000..62c59289a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/RedRectangle2D.java @@ -0,0 +1,48 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import com.dslplatform.json.CompiledJson; +import com.dslplatform.json.JsonAttribute; +import com.fasterxml.jackson.annotation.JsonIgnore; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@CompiledJson +@NoArgsConstructor +@AllArgsConstructor +public class RedRectangle2D { + + public static final double THRESHOLD = 0.01; + + private double x; + private double y; + private double width; + private double height; + + @JsonIgnore + @JsonAttribute(ignore = true) + public boolean isEmpty() { + return width <= 0.0f || height <= 0.0f; + } + + public boolean contains(double x, double y, double w, double h) { + if (isEmpty() || w <= 0 || h <= 0) { + return false; + } + double x0 = getX(); + double y0 = getY(); + return round(x) >= round(x0) && + round(y) >= round(y0) && + (x + w) - (x0 + getWidth()) <= THRESHOLD && + (y + h) - (y0 + getHeight()) <= THRESHOLD; + } + + private double round(double value) { + double d = Math.pow(10, 2); + return Math.round(value * d) / d; + } +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/RedTextPosition.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/RedTextPosition.java new file mode 100644 index 000000000..4aef8bc5e --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/RedTextPosition.java @@ -0,0 +1,120 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import com.dslplatform.json.CompiledJson; +import com.dslplatform.json.JsonAttribute; +import com.fasterxml.jackson.annotation.JsonAlias; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@NoArgsConstructor +@AllArgsConstructor +@CompiledJson +public class RedTextPosition { + + // Same values + private String textMatrix; + private String unicode; + + // New + private float[] position; + + // Moved to position + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + private float XDirAdj; + + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + private float YDirAdj; + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + @JsonAttribute + private float heightDir; + @JsonAttribute + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + private float widthDirAdj; + + // Moved To TextPositionSequence + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + @JsonAttribute + private float pageHeight; + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + @JsonAttribute + private float pageWidth; + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + @JsonAttribute + private float dir; + @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) + @JsonAttribute + private int rotation; + + // Removed values + @JsonIgnore + private float y; + @JsonIgnore + private float width; + + @JsonAttribute() + @JsonProperty(access = JsonProperty.Access.READ_ONLY) + public float[] getPosition() { + + var position = new float[4]; + + position[0] = XDirAdj; + position[1] = YDirAdj; + position[2] = widthDirAdj; + position[3] = heightDir; + + return position; + } + + + @JsonAlias("xdirAdj") + @JsonAttribute(alternativeNames = {"xdirAdj"}) + @JsonProperty + public void setXDirAdj(float XDirAdj) { + this.XDirAdj = XDirAdj;} + + + @JsonAlias("ydirAdj") + @JsonAttribute(alternativeNames = {"ydirAdj"}) + @JsonProperty + public void setYDirAdj(float YDirAdj) {this.YDirAdj = YDirAdj;} + + + @JsonIgnore + public float getXDirAdj() {return this.XDirAdj;} + + + @JsonIgnore + public float getYDirAdj() {return this.YDirAdj;} + + + @JsonIgnore + public float getWidthDirAdj() {return this.widthDirAdj;} + + + @JsonIgnore + public float getHeightDir() {return this.heightDir;} + + + @JsonIgnore + public float getPageHeight() {return this.pageHeight;} + + + @JsonIgnore + public float getPageWidth() {return this.pageWidth;} + + + @JsonIgnore + public int getRotation() {return this.rotation;} + + + @JsonIgnore + public float getDir() {return this.dir;} + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/SectionText.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/SectionText.java new file mode 100644 index 000000000..4fe09530a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/SectionText.java @@ -0,0 +1,38 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import com.dslplatform.json.CompiledJson; +import com.iqser.red.service.redaction.v1.model.SectionArea; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@CompiledJson +@NoArgsConstructor +@AllArgsConstructor +public class SectionText { + + private int sectionNumber; + private String text; + + private boolean isTable; + private String headline; + + private List sectionAreas = new ArrayList<>(); + private Set images = new HashSet<>(); + + private List textBlocks = new ArrayList<>(); + private Map tabularData = new HashMap<>(); + private List cellStarts = new ArrayList<>(); + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/Text.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/Text.java new file mode 100644 index 000000000..89368c92a --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/Text.java @@ -0,0 +1,21 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import java.util.ArrayList; +import java.util.List; + +import com.dslplatform.json.CompiledJson; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@CompiledJson +@NoArgsConstructor +@AllArgsConstructor +public class Text { + + private int numberOfPages; + private List sectionTexts = new ArrayList<>(); + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/TextBlock.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/TextBlock.java new file mode 100644 index 000000000..ff0bc4919 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/TextBlock.java @@ -0,0 +1,59 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import java.util.ArrayList; +import java.util.List; + +import com.dslplatform.json.CompiledJson; +import com.dslplatform.json.JsonAttribute; +import com.fasterxml.jackson.annotation.JsonIgnore; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@AllArgsConstructor +@Builder +@Data +@CompiledJson +@NoArgsConstructor +public class TextBlock extends AbstractTextContainer { + + @Builder.Default + private List sequences = new ArrayList<>(); + + @JsonIgnore + private int rotation; + + @JsonIgnore + private String mostPopularWordFont; + + @JsonIgnore + private String mostPopularWordStyle; + + @JsonIgnore + private float mostPopularWordFontSize; + + @JsonIgnore + private float mostPopularWordHeight; + + @JsonIgnore + private float mostPopularWordSpaceWidth; + + @JsonIgnore + private float highestFontSize; + + @JsonIgnore + private String classification; + + + @Override + @JsonIgnore + @JsonAttribute(ignore = true) + public String getText() { + + return null; + + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/TextPositionSequence.java b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/TextPositionSequence.java new file mode 100644 index 000000000..9ad891eee --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/main/java/com/iqser/red/service/peristence/v1/server/migration/migrations/model/reducetext/TextPositionSequence.java @@ -0,0 +1,53 @@ +package com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext; + +import java.util.ArrayList; +import java.util.List; + +import com.dslplatform.json.CompiledJson; +import com.dslplatform.json.JsonAttribute; +import com.fasterxml.jackson.annotation.JsonIgnore; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Data +@Builder +@CompiledJson +@NoArgsConstructor +@AllArgsConstructor +public class TextPositionSequence { + + private int page; + private List textPositions = new ArrayList<>(); + + // Removed + @JsonIgnore + private float x1; + @JsonIgnore + private float x2; + + + // Added + private float dir; + private int rotation; + private float pageHeight; + private float pageWidth; + + @JsonAttribute + public float getDir() { + return textPositions.get(0).getDir();} + + @JsonAttribute + public int getRotation() {return textPositions.get(0).getRotation();} + + @JsonAttribute + public float getPageHeight() {return textPositions.get(0).getPageHeight();} + + @JsonAttribute + public float getPageWidth() {return textPositions.get(0).getPageWidth();} + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/ReduceFileSizeMigrationTest.java b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/ReduceFileSizeMigrationTest.java new file mode 100644 index 000000000..417d5be95 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/tests/ReduceFileSizeMigrationTest.java @@ -0,0 +1,46 @@ +package com.iqser.red.service.peristence.v1.server.integration.tests; + +import java.io.FileOutputStream; + +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.io.ClassPathResource; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.peristence.v1.server.integration.utils.AbstractPersistenceServerServiceTest; +import com.iqser.red.service.peristence.v1.server.integration.utils.OsUtils; +import com.iqser.red.service.peristence.v1.server.migration.migrations.ReduceTextFileSizeMigration10; +import com.iqser.red.service.peristence.v1.server.migration.migrations.model.reducetext.Text; +import com.iqser.red.service.peristence.v1.server.utils.StorageIdUtils; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; + +import lombok.SneakyThrows; + +public class ReduceFileSizeMigrationTest extends AbstractPersistenceServerServiceTest { + + @Autowired + private ReduceTextFileSizeMigration10 reduceTextFileSizeMigration10; + + @Autowired + private ObjectMapper objectMapper; + + + @Test + @SneakyThrows + public void testMapping() { + + ClassPathResource responseJson = new ClassPathResource("files/migration/Text.json"); + + storageService.storeObject(StorageIdUtils.getStorageId("dossierId", "fileId", FileType.TEXT), responseJson.getInputStream()); + + reduceTextFileSizeMigration10.migrateFile("dossierId", "fileId"); + + var text = storageService.readJSONObject(StorageIdUtils.getStorageId("dossierId", "fileId", FileType.TEXT), Text.class); + + try (FileOutputStream fileOutputStream = new FileOutputStream(OsUtils.getTemporaryDirectory() + "/MigratedText.json")) { + fileOutputStream.write(objectMapper.writeValueAsBytes(text)); + } + + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/utils/OsUtils.java b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/utils/OsUtils.java new file mode 100644 index 000000000..c6d723759 --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/java/com/iqser/red/service/peristence/v1/server/integration/utils/OsUtils.java @@ -0,0 +1,22 @@ +package com.iqser.red.service.peristence.v1.server.integration.utils; + +import org.apache.commons.lang3.StringUtils; + +public class OsUtils { + + public static boolean isWindows() { + + return StringUtils.containsIgnoreCase(System.getProperty("os.name"), "Windows"); + } + + + public static String getTemporaryDirectory() { + + String tmpdir = System.getProperty("java.io.tmpdir"); + if (isWindows() && StringUtils.isNotBlank(tmpdir)) { + return tmpdir; + } + return "/tmp"; + } + +} diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json deleted file mode 100644 index 8bff93cd7..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/220ab22e443c8e32d3778b0937b03170.REDACTION_LOG.json +++ /dev/null @@ -1,56711 +0,0 @@ -{ - "analysisVersion": 1, - "redactionLogEntry": [ - { - "id": "6fb25dfdcb51525837429b37b80d412c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: ", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 280.22, - "y": 302.73004 - }, - "width": 83.97998, - "height": 14.037, - "page": 1 - } - ], - "sectionNumber": 3, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 61, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b94d0cfd925427f3168102c909976d3", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: ", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 368.95, - "y": 89.104004 - }, - "width": 73.98999, - "height": 14.037, - "page": 1 - } - ], - "sectionNumber": 3, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Rapporteur Member State: ", - "textAfter": " Co-Rapporteur Member", - "comments": [], - "startOffset": 101, - "endOffset": 108, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "aa9ceae3ccd0b2e0ead5c114d4a47a90", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: ", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 392.62, - "y": 62.343994 - }, - "width": 54.92798, - "height": 14.037, - "page": 1 - } - ], - "sectionNumber": 1, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 137, - "endOffset": 143, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "138750ec91141a611b0c4da4fa053a37", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: Version history", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 89.184, - "y": 702.5 - }, - "width": 43.55268, - "height": 10.526819, - "page": 2 - } - ], - "sectionNumber": 6, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 13, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bd936a519fc0f40b163bd9038a172b35", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 2 - } - ], - "sectionNumber": 2361, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c419a894c27f87312a8d70de415f3594", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 3 - } - ], - "sectionNumber": 2362, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "11035a95841651847d077a8ca8ce6481", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table of contents", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 156.02, - "y": 199.14001 - }, - "width": 25.59999, - "height": 11.454, - "page": 3 - } - ], - "sectionNumber": 8, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3602, - "endOffset": 3607, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "084ad90293677fe37099614a5e4dfcad", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 4 - } - ], - "sectionNumber": 2363, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b97566e66fc8c650199a1052418a87bb", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 5 - } - ], - "sectionNumber": 2364, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "840ad971b0940fc4f261eb7c1658ba9f", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 156.02, - "y": 620.18 - }, - "width": 21.603989, - "height": 11.454, - "page": 5 - } - ], - "sectionNumber": 9, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6407, - "endOffset": 6411, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0c103a796ac82a9ae58be42105910fec", - "type": "false_positive", - "value": "List of", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3 Proposed decision with respect to the application ................................ 189", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 156.02, - "y": 235.40997 - }, - "width": 33.412003, - "height": 11.454, - "page": 6 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 961, - "endOffset": 968, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b69a4074e458f944eba38354fe2fe58", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3 Proposed decision with respect to the application ................................ 189", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 210.17, - "y": 249.21002 - }, - "width": 22.744003, - "height": 11.454, - "page": 6 - } - ], - "sectionNumber": 10, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 874, - "endOffset": 877, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "774723c88a98f7c4325c32f4005cccf9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 6 - } - ], - "sectionNumber": 2365, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f7b94c09d124c45d3373a1d72c075aa3", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 7 - } - ], - "sectionNumber": 2366, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d6c1ad45cbc9844426035012c892f5e9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 8 - } - ], - "sectionNumber": 2367, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "42ec9dc2f75b331122ed8a588b067b80", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 165.008, - "y": 220.04999 - }, - "width": 36.328003, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 797, - "endOffset": 804, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fcf16d42dd42c5d82b9a94a03b687961", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur\nMember State", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 147.74, - "y": 472.31 - }, - "width": 30.96257, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 15, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 189, - "endOffset": 195, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6a4f22fb08c700bd47944c4ab5eeca70", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 85.32912, - "y": 270.69 - }, - "width": 35.422707, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 532, - "endOffset": 539, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f60f40d36864bbf386ffb4689693a1ca", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1 Statement of subject matter and purpose for which this report\nhas been prepared and background information on the application", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 483.72, - "y": 586.46 - }, - "width": 41.881012, - "height": 11.017679, - "page": 9 - }, - { - "topLeft": { - "x": 70.944, - "y": 573.86 - }, - "width": 90.63377, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 14, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 446, - "endOffset": 473, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4c321fd7a2ca17c49ad0319b52ca6909", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 184.73, - "y": 207.41998 - }, - "width": 36.350098, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 890, - "endOffset": 897, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "071adeaf8369d559e63a97654007615d", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur\nMember State", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 331.2562, - "y": 484.91 - }, - "width": 41.89215, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 15, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(EU) No 844/2012 ", - "textAfter": " was assigned", - "comments": [], - "startOffset": 134, - "endOffset": 141, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ccb093235e61b5339f0d0d917146ca69", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 234.77, - "y": 80.94403 - }, - "width": 19.469925, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1439, - "endOffset": 1443, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f98616c0ea8310c97cc6ca78ee37bb0f", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 148.51106, - "y": 93.54401 - }, - "width": 41.89894, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "an application to ", - "textAfter": " as RMS", - "comments": [], - "startOffset": 1325, - "endOffset": 1332, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b73168aa424912e5f26aa9229e009aaf", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 345.31, - "y": 106.26001 - }, - "width": 133.91055, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1269, - "endOffset": 1296, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c25731e133260aa756c83bcfc3dfe2b9", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 250.61, - "y": 93.54401 - }, - "width": 30.84111, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1344, - "endOffset": 1350, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "be4c366be63455cdb5a632d3af387d92", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 9 - } - ], - "sectionNumber": 2368, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b8df762356032e9c9c8f90f703ee41a9", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 204.87822, - "y": 333.93 - }, - "width": 41.991547, - "height": 11.017679, - "page": 9 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 251, - "endOffset": 259, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d8e4df925dfb0051168648b649a9b8d6", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 253.61, - "y": 581.18 - }, - "width": 19.458878, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 635, - "endOffset": 639, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bd35932c98dd25d146596fb88af08b44", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.81427, - "y": 440.39 - }, - "width": 21.236328, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1317, - "endOffset": 1320, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b29e8f4750ab880e4d5e49caf2f08673", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 185.78, - "y": 402.47 - }, - "width": 19.469925, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1560, - "endOffset": 1564, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "232345742932677575d4f58c1b2e2144", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 385.70016, - "y": 542.39 - }, - "width": 21.236328, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 790, - "endOffset": 793, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "34a978e1b5e09ab0693644f220a18f7e", - "type": "CBI_address", - "value": "Syngenta Limited", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "1.2.3 Information relating to the collective provision of dossiers", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 63.42401 - }, - "width": 79.538574, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 20, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "provision of dossiers ", - "textAfter": " is the", - "comments": [], - "startOffset": 67, - "endOffset": 83, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "dc260bd17962bc0a0455dfafbe644844", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 330.53314, - "y": 619.1 - }, - "width": 21.092804, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 391, - "endOffset": 394, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6d9167a1d818498a5e4040af1e7b88dd", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 435.7, - "y": 759.04 - }, - "width": 35.4227, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1527, - "endOffset": 1534, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e8966d135c340f0247d9f694644416d1", - "type": "PII", - "value": "regina.dorn@syngenta.com", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.2 Applicant(s) information", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 188.34003 - }, - "width": 122.451065, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 287, - "endOffset": 311, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f7a7c2aa89fdddfb0732bdb95d09b1c9", - "type": "PII", - "value": "+41 (61) 323 6155", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.2 Applicant(s) information", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 200.94 - }, - "width": 83.41362, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 261, - "endOffset": 278, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9258e98a88924b62f75dafd367ac50b5", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.2 Applicant(s) information", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 302.25 - }, - "width": 133.23717, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 111, - "endOffset": 138, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7aa20086f4a4b3772b288f0c1a3ffa61", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 209.57, - "y": 491.87 - }, - "width": 19.580322, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1094, - "endOffset": 1098, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ed24aa78088604b015dab87561ba589a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 10 - } - ], - "sectionNumber": 2369, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "20da3e649a8d47a78652f7e395adb992", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.3 EU Regulatory history for use in plant protection products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 207.05, - "y": 759.04 - }, - "width": 133.46898, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 16, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1479, - "endOffset": 1506, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2caefaeda223d2a65640e2316d8d34d9", - "type": "false_positive", - "value": "November", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.1.4 Evaluations carried out under other regulatory contexts", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 356.2452, - "y": 657.86 - }, - "width": 47.36798, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 17, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 243, - "endOffset": 251, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "256616825544ea39f45148f4aaaf48fe", - "type": "PII", - "value": "+41 (61) 323 6358", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.2 Applicant(s) information", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 213.65997 - }, - "width": 83.41362, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 238, - "endOffset": 255, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "52ec029a726efd3c6f12ed37328bfb2b", - "type": "PII", - "value": "Regina Dorn", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.2 Applicant(s) information", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 226.28998 - }, - "width": 57.624176, - "height": 11.017679, - "page": 10 - } - ], - "sectionNumber": 18, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 219, - "endOffset": 230, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c61246a8a4752456b1f7d1e661c37f02", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 11 - } - ], - "sectionNumber": 2370, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "082bdaad32c2bb6faf7f1452dd4063d1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 12 - } - ], - "sectionNumber": 2371, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c79887e0e5c2f1bb4f487b18e8d5b2fd", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 13 - } - ], - "sectionNumber": 2372, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2769a0f93a6e58ed4fd2a9ed35c4bd57", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.4.2 Producer of the plant protection product", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 393.45 - }, - "width": 133.23718, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 144, - "endOffset": 171, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fc4c07b328b087412ccc409f1e32b03d", - "type": "PII", - "value": "Patrick Gardinal", - "reason": "Producer was found", - "matchedRule": 27, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4.2 Producer of the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 406.07 - }, - "width": 73.40033, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 127, - "endOffset": 143, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "49b4b3d2c95bd811976573a7ff4b7172", - "type": "PII", - "value": "+41 (61) 323 6155", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4 Information on the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 531.83 - }, - "width": 83.41362, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 220, - "endOffset": 237, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "150548e4469cb28152b426cd142c19e6", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.4 Information on the plant protection product", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 633.02 - }, - "width": 133.23717, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 70, - "endOffset": 97, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0e06579a249a55c74b138564549b697e", - "type": "PII", - "value": "+41 (0) 61 323 61 55", - "reason": "Producer was found", - "matchedRule": 27, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4.2 Producer of the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 330.21 - }, - "width": 94.33217, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 245, - "endOffset": 265, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "37f9e3c45b6ff7fdc5110ad456ccd8f8", - "type": "PII", - "value": "+41 (0) 61 323 60 51", - "reason": "Producer was found", - "matchedRule": 27, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4.2 Producer of the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 342.81 - }, - "width": 94.388565, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 219, - "endOffset": 239, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3272cb018f4d83bab82e5a004e57a261", - "type": "PII", - "value": "regina.dorn@syngenta.com", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4 Information on the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 519.11 - }, - "width": 122.49596, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 246, - "endOffset": 270, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c016f17170fed2c8b75a9b7b0f74a216", - "type": "PII", - "value": "Regina Dorn", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4 Information on the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 557.03 - }, - "width": 57.624176, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 178, - "endOffset": 189, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3c33ecbf5329f74c69427b890d9678e2", - "type": "PII", - "value": "+41 (61) 323 6358", - "reason": "Applicant information was found", - "matchedRule": 25, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4 Information on the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 147.86, - "y": 544.43 - }, - "width": 83.41362, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 35, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 197, - "endOffset": 214, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "007ca0cc583d19cf0582a99a7c0b1bc2", - "type": "false_positive", - "value": "Syngenta Crop Protection AG", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.4.2 Producer of the plant protection product", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 456.71 - }, - "width": 133.23718, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 53, - "endOffset": 80, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8206711d24719711388a810a7daae785", - "type": "PII", - "value": "patrick.gardinal@syngenta.com", - "reason": "Producer was found", - "matchedRule": 27, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "1.4.2 Producer of the plant protection product", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 148.94, - "y": 317.49 - }, - "width": 141.26324, - "height": 11.017679, - "page": 13 - } - ], - "sectionNumber": 36, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 274, - "endOffset": 303, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "55694777e588bbb2be29cdaf13824514", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.4.7 Field of use envisaged", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 141.74, - "y": 426.95 - }, - "width": 26.871994, - "height": 11.358, - "page": 14 - } - ], - "sectionNumber": 43, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 11, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a4bbeb42c519ea3ed154d1f01dfa85f4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 14 - } - ], - "sectionNumber": 2373, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e98b5d198c4fcacf6864cfcb3f2946ca", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 15 - } - ], - "sectionNumber": 2374, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b848180f2f9646a089f538c25a59751", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 16 - } - ], - "sectionNumber": 2375, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1bda62d3888e54565bd624daec9474bd", - "type": "false_positive", - "value": "Blackwell, ISBN", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "1.5 Detailed uses of the plant protection product", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 400.43585, - "y": 125.34 - }, - "width": 22.378326, - "height": 9.65418, - "page": 16 - }, - { - "topLeft": { - "x": 135.14, - "y": 116.100006 - }, - "width": 36.921783, - "height": 9.65418, - "page": 16 - } - ], - "sectionNumber": 59, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 969, - "endOffset": 984, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b6e69037f9015af109b61275c5d5d0c4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 17 - } - ], - "sectionNumber": 2376, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "430a07cf621b873f4043d83c16eb3187", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 18 - } - ], - "sectionNumber": 2377, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e0bd35d8bc01fe1599705690b891c6e6", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 19 - } - ], - "sectionNumber": 2378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "20c94a27baeaaf9a1ef9f55ba548b08e", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.2.2 Summary of physical and chemical properties of the plant protection\nproduct", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 449.96924, - "y": 210.29999 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 19 - } - ], - "sectionNumber": 68, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 157, - "endOffset": 160, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5b6a9654d0db08bfd2c969e022691857", - "type": "hint_only", - "value": "batch analysis", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2 Summary of active substance hazard and of product risk assessment", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 601.94 - }, - "width": 64.899506, - "height": 11.017679, - "page": 19 - } - ], - "sectionNumber": 66, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 223, - "endOffset": 237, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9910e65a9b5de1cb732742a76487d498", - "type": "false_positive", - "value": "Major annual", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.3 Data on application and efficacy", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 695.42 - }, - "width": 60.649124, - "height": 11.017679, - "page": 20 - } - ], - "sectionNumber": 69, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 68, - "endOffset": 80, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "eed013e378bb7c68c49090b0c64eaf6a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 20 - } - ], - "sectionNumber": 2379, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "051aeea510d49e8ebb585cae931e3c69", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "2.3.2 Summary of information on the development of resistance", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 307.22214, - "y": 531.83 - }, - "width": 41.89215, - "height": 11.017679, - "page": 20 - } - ], - "sectionNumber": 70, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "weed species in ", - "textAfter": " and the", - "comments": [], - "startOffset": 511, - "endOffset": 518, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0e87c113fed01b886bdc4a486c4f06ce", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 133.38 - }, - "width": 32.03537, - "height": 10.44714, - "page": 21 - } - ], - "sectionNumber": 77, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "62750594ebc2aa09d27c1c4cc87e0748", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 21 - } - ], - "sectionNumber": 2380, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "421a390c0359ea03c62c4f8e66487deb", - "type": "CBI_author", - "value": "Moster", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 686.3 - }, - "width": 29.26651, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 83, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "MET9800605 ", - "textAfter": " (1996a) MET980060", - "comments": [], - "startOffset": 118, - "endOffset": 124, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "df2a12e25f4e63d4da029b946bb07003", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 570.35 - }, - "width": 25.890076, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 85, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Rezaaiyan", - "comments": [], - "startOffset": 113, - "endOffset": 118, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f24931d218fa560911d70d90639270ea", - "type": "CBI_author", - "value": "Rezaaiyan", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 460.13885, - "y": 570.35 - }, - "width": 42.6727, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 85, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Vargo & ", - "textAfter": " (1999) ASB2016-784", - "comments": [], - "startOffset": 121, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "697c8b10fea8863d82809c68aa6477f0", - "type": "CBI_author", - "value": "Evans", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 535.79 - }, - "width": 25.372192, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 85, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Rezaaiyan (1999) ASB2016-784 ", - "textAfter": " (2002) ASB2016-79", - "comments": [], - "startOffset": 150, - "endOffset": 155, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a533d52c8cc0f90b87905758fd4076c1", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 350.01 - }, - "width": 46.34793, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 89, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 129, - "endOffset": 139, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fb6820a76add0634c005cec047d94183", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 193.38 - }, - "width": 25.890076, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 92, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) ASB2016-78", - "comments": [], - "startOffset": 119, - "endOffset": 124, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a191b9e9a6b68c2901dbb9cd1ecb21a0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 2381, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "601b1113b809f8065918f1f6a39942d3", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 483.59 - }, - "width": 18.73877, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-33", - "comments": [], - "startOffset": 161, - "endOffset": 165, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d58bf851701557a697a0a320d099db5f", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 326.97003 - }, - "width": 18.73877, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 89, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-33", - "comments": [], - "startOffset": 159, - "endOffset": 163, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d76af2779afd22abb787e712a4a05ed1", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 506.63 - }, - "width": 46.34793, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 86, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 131, - "endOffset": 141, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7cf033f175750396e016c4e45e8d60c1", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 718.22 - }, - "width": 32.03537, - "height": 10.44714, - "page": 22 - } - ], - "sectionNumber": 82, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1bce53a0ff374db727a8b5216896e8a9", - "type": "CBI_author", - "value": "Hargeaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 622.58 - }, - "width": 43.13086, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 84, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2016-336", - "comments": [], - "startOffset": 121, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a4fab15127229783efba03e19c40f227", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 599.54 - }, - "width": 18.73877, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 84, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargeaves (2008) ASB2016-336 ", - "textAfter": " (2008) ASB2016-33", - "comments": [], - "startOffset": 150, - "endOffset": 154, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "06323955e848abd3569e04fcd4038753", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 2382, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "991978f09d101eaa0b528e18ffaf2449", - "type": "CBI_author", - "value": "Wolf", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 592.46 - }, - "width": 21.587372, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 102, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005) ASB2015-34", - "comments": [], - "startOffset": 119, - "endOffset": 123, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3d4e85d6156c182e978f262a31511ff1", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 718.22 - }, - "width": 32.03537, - "height": 10.44714, - "page": 23 - } - ], - "sectionNumber": 97, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "514b72db46771afe2eb39abcd7fd6cce", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-2: Validated methods for the generation of pre-authorization data for S-\nmetolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 447.35 - }, - "width": 32.03537, - "height": 10.44714, - "page": 23 - } - ], - "sectionNumber": 105, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a0d1df4d2e3eab08f7f0eead9c9940e7", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 280.28998 - }, - "width": 32.03537, - "height": 10.44714, - "page": 23 - } - ], - "sectionNumber": 109, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1d4163757427a2cdbfc4744662b32004", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 119.46002 - }, - "width": 46.34793, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 112, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 166, - "endOffset": 176, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6a11bb10fb6c5a26a4cf01ac8a9c339f", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 235.28998 - }, - "width": 18.73877, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 110, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargeaves (2008) ASB2016-336 ", - "textAfter": " (2008) ASB2016-33", - "comments": [], - "startOffset": 187, - "endOffset": 191, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "aa2b09541f0ec8fe7a6f2e65a03f8e2e", - "type": "CBI_author", - "value": "Evans", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 148.62 - }, - "width": 25.372192, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 111, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Rezaaiyan (1999) ASB2016-784 ", - "textAfter": " (2002) ASB2016-79", - "comments": [], - "startOffset": 177, - "endOffset": 182, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "eec007ab7b1b34c1d3b3e17f357cc122", - "type": "CBI_author", - "value": "Hargeaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 258.33002 - }, - "width": 43.13086, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 110, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2016-336", - "comments": [], - "startOffset": 158, - "endOffset": 167, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "38343cbad7b42bd12d6eb5b9cc5004e9", - "type": "CBI_author", - "value": "Rezaaiyan", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 460.13885, - "y": 183.06 - }, - "width": 42.75287, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 111, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Vargo & ", - "textAfter": " (1999) ASB2016-784", - "comments": [], - "startOffset": 148, - "endOffset": 157, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "77df2e7fa239120bdae14b958d622dd2", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 183.06 - }, - "width": 25.890076, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 111, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Rezaaiyan", - "comments": [], - "startOffset": 140, - "endOffset": 145, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8aae7ffcea75cab331d72c40704430f8", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 96.42401 - }, - "width": 18.73877, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 112, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-33", - "comments": [], - "startOffset": 196, - "endOffset": 200, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f2a311b9a5cea47027504810a3d666a3", - "type": "CBI_author", - "value": "Biedermann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 680.06 - }, - "width": 49.744293, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 99, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994) TOX980016", - "comments": [], - "startOffset": 53, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "896fbb917cec01a54db67ce79df5798f", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 113.34003 - }, - "width": 18.73877, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 124, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-33", - "comments": [], - "startOffset": 195, - "endOffset": 199, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "90903e725f4ed955aeca58dbbbf9ff8b", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 671.78 - }, - "width": 18.73877, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 116, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-33", - "comments": [], - "startOffset": 195, - "endOffset": 199, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "77c8cb5d366cf28528d09548fed27b58", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 72.664 - }, - "width": 25.890076, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 125, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) ASB2016-78", - "comments": [], - "startOffset": 100, - "endOffset": 105, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e789a79cb5fc995a2e6873bacd0f6b54", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 200.10004 - }, - "width": 46.34793, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 123, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 166, - "endOffset": 176, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1a2b4492fbb5274fca616b4a46cefed6", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 443.62, - "y": 347.97 - }, - "width": 32.03537, - "height": 10.44714, - "page": 24 - } - ], - "sectionNumber": 120, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d9bc21b604e2ac804e3ac51080f4001e", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 177.06 - }, - "width": 18.73877, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 123, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-33", - "comments": [], - "startOffset": 196, - "endOffset": 200, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "000a798e6e3b6228a34c808003ff92c4", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 619.58 - }, - "width": 25.890076, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 117, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) ASB2016-78", - "comments": [], - "startOffset": 301, - "endOffset": 306, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9d600ba316fcb9c6becca526dd45d2b4", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 716.66 - }, - "width": 32.03537, - "height": 10.44714, - "page": 24 - } - ], - "sectionNumber": 115, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "482615d1716dd1ca731f766e0256a11a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 2383, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5826ac55a1dadaeb49596a84f46d1c5d", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-3: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 694.7 - }, - "width": 46.34793, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 116, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 165, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "177b767a78b235b6d7f2161a99306a43", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 263.73004 - }, - "width": 25.890076, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 122, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Rezaaiyan", - "comments": [], - "startOffset": 140, - "endOffset": 145, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "69c14912a246506d7e2a676f1e023e27", - "type": "CBI_author", - "value": "Evans", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 229.28998 - }, - "width": 25.372192, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 122, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Rezaaiyan (1999) ASB2016-784 ", - "textAfter": " (2002) ASB2016-79", - "comments": [], - "startOffset": 177, - "endOffset": 182, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "82b6df6b591818135ca354a4e874d36d", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 136.38 - }, - "width": 46.34793, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 124, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 165, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "77a3447270b5d5f2844769bdadd40d4e", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 304.52997 - }, - "width": 18.73877, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 121, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargeaves (2008) ASB2016-336 ", - "textAfter": " (2008) ASB2016-33", - "comments": [], - "startOffset": 187, - "endOffset": 191, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d6b1d7a94b35d7d9bead085b3165fce3", - "type": "CBI_author", - "value": "Rezaaiyan", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.89886, - "y": 263.73004 - }, - "width": 42.75287, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 122, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Vargo & ", - "textAfter": " (1999) ASB2016-784", - "comments": [], - "startOffset": 148, - "endOffset": 157, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6ee258faba49b798d70b001982326368", - "type": "CBI_author", - "value": "Hargeaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 327.45 - }, - "width": 43.13086, - "height": 10.526819, - "page": 24 - } - ], - "sectionNumber": 121, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2016-336", - "comments": [], - "startOffset": 158, - "endOffset": 167, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e9554cd88d2e00e648219eeb916be933", - "type": "CBI_author", - "value": "Garrigue", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 387.93 - }, - "width": 36.358032, - "height": 10.526819, - "page": 25 - } - ], - "sectionNumber": 134, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014) ASB2016-772", - "comments": [], - "startOffset": 260, - "endOffset": 268, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c605fba4f5e72fb9da23004d990258f7", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 443.62, - "y": 718.22 - }, - "width": 32.03537, - "height": 10.44714, - "page": 25 - } - ], - "sectionNumber": 128, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2cbc024e6670b8ac2ee7c57650602000", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 408.47 - }, - "width": 32.03537, - "height": 10.44714, - "page": 25 - } - ], - "sectionNumber": 133, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9ad287957f028261f75a3f3be87bac9e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 25 - } - ], - "sectionNumber": 2384, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "03f018c5380354b2907a397a37acc949", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 255.33002 - }, - "width": 46.34793, - "height": 10.526819, - "page": 25 - } - ], - "sectionNumber": 135, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005) ASB2016-78", - "comments": [], - "startOffset": 226, - "endOffset": 236, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e206a2c87536e8068936fc5a51027703", - "type": "CBI_author", - "value": "Garrigue", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-5: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 365.01 - }, - "width": 36.358032, - "height": 10.526819, - "page": 25 - } - ], - "sectionNumber": 134, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Garrigue (2014) ASB2016-772 ", - "textAfter": " (2014a) ASB2016-77", - "comments": [], - "startOffset": 288, - "endOffset": 296, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "01aa9c49e6d80e034dcfaa406b495fe2", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-8: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 223.04999 - }, - "width": 32.03537, - "height": 10.44714, - "page": 26 - } - ], - "sectionNumber": 147, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aec6c35ccc6e147deadaef0968b7bd32", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-7: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 457.67 - }, - "width": 32.036438, - "height": 10.44714, - "page": 26 - } - ], - "sectionNumber": 143, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b9752f000b10efe9625805380c257927", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 26 - } - ], - "sectionNumber": 2385, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "25a70b8aacd51b0f6f6a36e726c52dfc", - "type": "CBI_author", - "value": "Vargo", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-7: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 437.15 - }, - "width": 25.890076, - "height": 10.526819, - "page": 26 - } - ], - "sectionNumber": 144, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) ASB2016-78", - "comments": [], - "startOffset": 244, - "endOffset": 249, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b601e4d3a0e9874c3da6e3a1659b38c0", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-8: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 202.62 - }, - "width": 40.282288, - "height": 10.526819, - "page": 26 - } - ], - "sectionNumber": 148, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014) ASB2016-77", - "comments": [], - "startOffset": 221, - "endOffset": 229, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8239e4c741a87844c58e34bd46b9d24b", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 440.62, - "y": 686.9 - }, - "width": 32.03537, - "height": 10.44714, - "page": 26 - } - ], - "sectionNumber": 138, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "514a812c6b7d46b5cb6268e3ac2f6068", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 27 - } - ], - "sectionNumber": 2386, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a9c6ec2d10fdbd93d51882766025bfb4", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 610.58 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 169, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 251, - "endOffset": 259, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8a610726e8636d3817e2b4d4c6989587", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 697.34 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 168, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 265, - "endOffset": 273, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f7471490f55f0404bb609ecfdb1d0b9b", - "type": "CBI_author", - "value": "Giannone", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 407.81024, - "y": 402.71 - }, - "width": 39.834137, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 171, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "ASB2015-335 ILV of ", - "textAfter": " (2002)", - "comments": [], - "startOffset": 157, - "endOffset": 165, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b19dc41676a03a648c0bdadb94de50f0", - "type": "false_positive", - "value": "Luna", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 267.7521, - "y": 338.97 - }, - "width": 21.368256, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 172, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 106, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6cff0504ac95041305c7467fcc86f343", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 442.34155, - "y": 576.14 - }, - "width": 30.342194, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 169, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "of Class & ", - "textAfter": " (2014)", - "comments": [], - "startOffset": 236, - "endOffset": 243, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c5d441ffdabf38dd2eddaff8fb1456b0", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 437.15 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 171, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 173, - "endOffset": 181, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6e4fbce828684fa11bbf87aacb642b6e", - "type": "CBI_author", - "value": "Allen", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 286.76996 - }, - "width": 23.131165, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 173, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2017) ASB2017-13208,", - "comments": [], - "startOffset": 138, - "endOffset": 143, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f52d33940532235bbaee52f448634426", - "type": "CBI_author", - "value": "Miller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 610.58 - }, - "width": 25.900024, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 169, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13201", - "comments": [], - "startOffset": 193, - "endOffset": 199, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a03c05b33b9ed64e68696910a543c9df", - "type": "CBI_author", - "value": "Giannone", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 500.87 - }, - "width": 39.72458, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 170, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Giannone (2002) ASB2011-14092 ", - "textAfter": " (2002) ASB2011-14095", - "comments": [], - "startOffset": 198, - "endOffset": 206, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "484b95f98163582e3db2925811c8f2ab", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 200.10004 - }, - "width": 46.34793, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 174, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-336", - "comments": [], - "startOffset": 290, - "endOffset": 300, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "655f67578e035f1f2b7fa1b9ae6d3ea0", - "type": "CBI_author", - "value": "Benazeraf", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 437.15 - }, - "width": 41.477478, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 171, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2004) ASB2015-335", - "comments": [], - "startOffset": 121, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ec05524efc278e1c33e322bec5e8e766", - "type": "CBI_author", - "value": "Giannone", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 523.91 - }, - "width": 39.72458, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 170, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2002) ASB2011-14092", - "comments": [], - "startOffset": 168, - "endOffset": 176, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "32435881f294424e5e1a8b4261cfb90d", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 373.53 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 172, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 190, - "endOffset": 198, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6dcc9b687fc6c606a39a4d7ccf6b1098", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 200.10004 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 174, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 332, - "endOffset": 340, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fa99b75c2fc73aa321c6c33ca9f33447", - "type": "false_positive", - "value": "Luna", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 267.7521, - "y": 252.33002 - }, - "width": 21.368256, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 173, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 83, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f6d782c099ae2435ce071c550adbfb77", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 523.91 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 170, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 228, - "endOffset": 236, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b06e98a694398a11d099c6b68fc6afc", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 373.53 - }, - "width": 30.342194, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 172, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 161, - "endOffset": 168, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cc5bd462341ec7e11581109aa37c4bef", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 412.3918, - "y": 697.34 - }, - "width": 30.342194, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 168, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014) ASB2016-794", - "comments": [], - "startOffset": 238, - "endOffset": 245, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "82d1e645a93672bfdd8e7fc2b7cffe6d", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 286.76996 - }, - "width": 38.05127, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 173, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 188, - "endOffset": 196, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7986fd0bcd75038c9613fe0a71e84b35", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 407.92975, - "y": 576.14 - }, - "width": 22.6232, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 169, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "ASB2017-13201 ILV of ", - "textAfter": " & Richter", - "comments": [], - "startOffset": 228, - "endOffset": 233, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e105aae46713b4b7b764eff602c91393", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 697.34 - }, - "width": 22.6232, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 168, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 230, - "endOffset": 235, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "76a2aad5e8626bac4e84e558dd7e37de", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 2387, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f81f4c1123999b9ad651179b589dbc20", - "type": "false_positive", - "value": "Luna", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 267.99115, - "y": 662.78 - }, - "width": 21.477814, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 168, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 171, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5c1340d100dcbfb627524c3794dfced9", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 407.92975, - "y": 252.33002 - }, - "width": 30.232635, - "height": 10.526819, - "page": 28 - } - ], - "sectionNumber": 173, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "ASB2017-13208, ILV of ", - "textAfter": " (2016)", - "comments": [], - "startOffset": 173, - "endOffset": 180, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "774f2be4d846399c76cd62b39e679442", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 692.9 - }, - "width": 18.73877, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 177, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) ASB2015-338 ", - "textAfter": " (2008) ASB2015-339", - "comments": [], - "startOffset": 329, - "endOffset": 333, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b5363d45df3cb3267969330bf75e76e1", - "type": "CBI_author", - "value": "Richardson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 439.07 - }, - "width": 46.517273, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 179, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014) ASB2016-792", - "comments": [], - "startOffset": 258, - "endOffset": 268, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "753c5587beea2f4a8e52b20c7842e703", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 571.79 - }, - "width": 38.05127, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 178, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 327, - "endOffset": 335, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1ddff335cc2613385f26d7d4cd0953d6", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 424.0949, - "y": 525.71 - }, - "width": 18.73877, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 178, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008) and ", - "textAfter": " (2008)", - "comments": [], - "startOffset": 315, - "endOffset": 319, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4e4fbfbe72ec89162aa44ce812c39d6a", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 439.07 - }, - "width": 38.05127, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 179, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 288, - "endOffset": 296, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a067553a085913ed13ba669312d3fd02", - "type": "CBI_author", - "value": "Robinson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 571.79 - }, - "width": 39.316193, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 178, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014) ASB2016-793", - "comments": [], - "startOffset": 258, - "endOffset": 266, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a76cbc4d628ad577230168a50810dc5e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 2388, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "20ccebaf720aa848f8264cbed4f97687", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 306.33002 - }, - "width": 38.05127, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 180, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 334, - "endOffset": 342, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2986409554bf851d77ca981e0f7028af", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 715.94 - }, - "width": 38.05127, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 177, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 353, - "endOffset": 361, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bc1cdc46ab3810c8094d7aaed90326c2", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 306.33002 - }, - "width": 40.282288, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 180, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014) ASB2016-774", - "comments": [], - "startOffset": 306, - "endOffset": 314, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7d685e5b5a942b14ef7d0599379f3111", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 407.81024, - "y": 537.23 - }, - "width": 46.46747, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 178, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "ASB2016-793 ILV of ", - "textAfter": " (2008) and", - "comments": [], - "startOffset": 293, - "endOffset": 303, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3d3f9a2ed4dbe2044d471c8d00846a0a", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 715.94 - }, - "width": 46.34793, - "height": 10.526819, - "page": 29 - } - ], - "sectionNumber": 177, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2008) ASB2015-338", - "comments": [], - "startOffset": 299, - "endOffset": 309, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fa6b15b2cbbc6c99a43c5bbd8fec1005", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 99.41998 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 196, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 13, - "endOffset": 20, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ced0cc93174c20adabbe871d48b3c0e5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 2389, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f2c14aa37aaf6739d37bc5ffbddd754d", - "type": "CBI_author", - "value": "Miller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 403.06, - "y": 297.69 - }, - "width": 25.900024, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 190, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-1320", - "comments": [], - "startOffset": 106, - "endOffset": 112, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ac4dc39d47cd5753477c166416982807", - "type": "false_positive", - "value": "Luna", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 267.7521, - "y": 571.79 - }, - "width": 21.368256, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 184, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 86, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "42656974c1b9732cdbf0a13e85654fa4", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 216.33002 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 192, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 5, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "72ec3dfd8c651110614e81f9e9d643bc", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 606.26 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 184, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 141, - "endOffset": 148, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "903c09ed293ba527eed717eb8996978d", - "type": "CBI_author", - "value": "Miller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 403.06, - "y": 356.13 - }, - "width": 25.900024, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 188, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-1320", - "comments": [], - "startOffset": 108, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2d90ba4d7be48f8129f9a5559ada6243", - "type": "CBI_author", - "value": "Allen", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 403.06, - "y": 99.41998 - }, - "width": 23.131165, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 196, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2017) ASB2017-1320", - "comments": [], - "startOffset": 71, - "endOffset": 76, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "548a45fe3367cd93fa01a872d235a307", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 191.2718, - "y": 326.85004 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 189, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 38, - "endOffset": 45, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0f0f85662f5c3e6cfd90d1a8ccf884ed", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 128.70001 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 195, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 33, - "endOffset": 40, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7f24f4b0cdee0fce5385710d5701be60", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 99.41998 - }, - "width": 30.338928, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 196, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 42, - "endOffset": 49, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "435d3ba5e1da8b86c7e1eccb9fe89117", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 191.2718, - "y": 385.29 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 187, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 36, - "endOffset": 43, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6012a0eb975de777d70ca3549f83a095", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 128.70001 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 195, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 4, - "endOffset": 11, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f89ba7339f69d06f5d672d33b2b99f7e", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 216.33002 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 192, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 34, - "endOffset": 41, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cf9bd2e1bee5392f683ff45e49e08c76", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 356.13 - }, - "width": 22.623154, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 188, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 36, - "endOffset": 41, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c55d8734c6401a2faabd04edbb5c8548", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 318.53305, - "y": 326.85004 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 189, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 74, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9e50eb53a3e1e13831dc7fe3df1012b5", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 385.29 - }, - "width": 22.623154, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 187, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 28, - "endOffset": 33, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2eca1dc437d65fd1fce7fad21da817d7", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 297.69 - }, - "width": 22.623154, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 190, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 34, - "endOffset": 39, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7d93014445967be615818f1b2975c4dd", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 318.5218, - "y": 356.13 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 188, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 80, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "50f29810527d7d2cf536347b1d3e2aad", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 385.29 - }, - "width": 22.6232, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 187, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 64, - "endOffset": 69, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a53b162ec0d7626255845c1ff908fb34", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 191.2718, - "y": 356.13 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 188, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 44, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2da81f2502fc0819038f1f3050924dab", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 326.85004 - }, - "width": 22.623154, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 189, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 30, - "endOffset": 35, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8c62326975ee043bfa07add02df1cb2e", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 318.5218, - "y": 385.29 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 187, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 72, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1fc820120dcde19907ddb7250daea903", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 191.2718, - "y": 297.69 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 190, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 42, - "endOffset": 49, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4526467d0bdf8d9e79dc5a0cdc9038dd", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 187.02002 - }, - "width": 30.338715, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 193, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 33, - "endOffset": 40, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1d001201aea636ca735005215fce6976", - "type": "false_positive", - "value": "Syngenta", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 478.18, - "y": 606.26 - }, - "width": 38.082214, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 184, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 170, - "endOffset": 178, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c7491cc50fe941c62ec6bf5ff345bb7f", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 157.85999 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 194, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 34, - "endOffset": 41, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e3d0140274867fec6a216f5e485af16a", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 297.69 - }, - "width": 22.6232, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 190, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 70, - "endOffset": 75, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8a7fd1c097a153144191fa817c615108", - "type": "CBI_author", - "value": "Allen", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 403.06, - "y": 157.85999 - }, - "width": 23.131165, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 194, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2017) ASB2017-1320", - "comments": [], - "startOffset": 63, - "endOffset": 68, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f813f7271d6ac788648dd6b0bb68e240", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 326.85004 - }, - "width": 22.63446, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 189, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 66, - "endOffset": 71, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "97b81a0e167b0413531cfbfed39138ed", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 187.02002 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 193, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 4, - "endOffset": 11, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4a6aab5c721c0d3761563b1e29fc1b29", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 157.85999 - }, - "width": 30.342148, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 194, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 5, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4ac5e07187685d39b66cb775940d869c", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 318.5218, - "y": 297.69 - }, - "width": 30.342194, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 190, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Class & ", - "textAfter": " (2014), ASB2016-794", - "comments": [], - "startOffset": 78, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e956a73bceadcac000a22275c3ef41c0", - "type": "CBI_author", - "value": "Class", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 356.13 - }, - "width": 22.6232, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 188, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Richter", - "comments": [], - "startOffset": 72, - "endOffset": 77, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0ddd728c6274e18f64afbbeeaa532515", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 594.74 - }, - "width": 40.282288, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "SYN547977, CGA-40172, CGA-41507: ", - "textAfter": " (2014), ASB2016-774", - "comments": [], - "startOffset": 302, - "endOffset": 310, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f7cfdf59f504987d79fe67de511b029c", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 652.22 - }, - "width": 46.34793, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", - "textAfter": " (2008), ASB2015-338", - "comments": [], - "startOffset": 213, - "endOffset": 223, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d50c19f4d56110735eb965ec00322010", - "type": "CBI_author", - "value": "Richardson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 403.06, - "y": 629.3 - }, - "width": 46.529327, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(2014), ASB2016- 793 ", - "textAfter": " (2014), ASB2016-792", - "comments": [], - "startOffset": 397, - "endOffset": 407, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "78faac4acdb8fc6d04e496661cd91fcd", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 652.22 - }, - "width": 46.34787, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", - "textAfter": " (2008), ASB2015-338", - "comments": [], - "startOffset": 58, - "endOffset": 68, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2380e464078d8609c933d0c33c8b84ff", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 715.94 - }, - "width": 46.34793, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 200, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "CGA-354743: ", - "textAfter": " (2008) ASB2015-336,", - "comments": [], - "startOffset": 68, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a04360f059dbbe2fa2ece024ca35348d", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 519.59 - }, - "width": 18.73877, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 202, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008), ASB2015-338 ", - "textAfter": " (2008), ASB2015-339", - "comments": [], - "startOffset": 236, - "endOffset": 240, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f3980ceade6ea3603ee7af5585e3bb79", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 594.74 - }, - "width": 40.28224, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "SYN547977, CGA-40172, CGA-41507: ", - "textAfter": " (2014), ASB2016-", - "comments": [], - "startOffset": 147, - "endOffset": 155, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a0e876708ed1dd79b8d8473ebf2bed2e", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 519.59 - }, - "width": 18.738754, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 202, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008), ASB2015-338 ", - "textAfter": " (2008), ASB2015-339", - "comments": [], - "startOffset": 81, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e4f13e1fd33cff9c4b2df356fef7773b", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 485.03 - }, - "width": 40.282288, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 202, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "SYN547977, CGA-40172, CGA-41507: ", - "textAfter": " (2014), ASB2016-774", - "comments": [], - "startOffset": 294, - "endOffset": 302, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8a50474df071726cd919942ecedb6c02", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 715.94 - }, - "width": 46.34787, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 200, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "CGA-354743: ", - "textAfter": " (2008) ASB2015-", - "comments": [], - "startOffset": 12, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3388c9d46b52de845d5d5002be63baa2", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 485.03 - }, - "width": 40.28224, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 202, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "SYN547977, CGA-40172, CGA-41507: ", - "textAfter": " (2014), ASB2016-", - "comments": [], - "startOffset": 139, - "endOffset": 147, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ac5c019866380880da2fd1e64c83108b", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 351.45 - }, - "width": 30.342148, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 205, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 13, - "endOffset": 20, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "68931e9aa97cf4a11f75d8d57a752cf9", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 380.61 - }, - "width": 30.342148, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 204, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 12, - "endOffset": 19, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3909b7139058c62cb7b158e5c37ae7eb", - "type": "CBI_author", - "value": "Robinson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 403.06, - "y": 652.22 - }, - "width": 39.316193, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", - "textAfter": " (2014), ASB2016-", - "comments": [], - "startOffset": 367, - "endOffset": 375, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3ab4c84ea1be8f014f4c5af951d77cd2", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 629.3 - }, - "width": 18.738754, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008), ASB2015-338 ", - "textAfter": " (2008), ASB2015-339", - "comments": [], - "startOffset": 89, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5d3eee802a7d266cc07623475f96309b", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 542.51 - }, - "width": 46.34787, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 202, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", - "textAfter": " (2008), ASB2015-338", - "comments": [], - "startOffset": 50, - "endOffset": 60, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0200ff14ba1a9edb5bb4e576515c891b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 2390, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a59b59ddb9c9ebb2308256a90c00049e", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.5.2.2 Residue analysis", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 318.91345, - "y": 248.25 - }, - "width": 44.475525, - "height": 11.017679, - "page": 31 - } - ], - "sectionNumber": 207, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the method by ", - "textAfter": " (2014) for", - "comments": [], - "startOffset": 1932, - "endOffset": 1940, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b4065ef0f5d8b2163eb3411ecfcc6263", - "type": "CBI_author", - "value": "Sole", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 629.3 - }, - "width": 18.73877, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Hargreaves (2008), ASB2015-338 ", - "textAfter": " (2008), ASB2015-339", - "comments": [], - "startOffset": 244, - "endOffset": 248, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1927eddfb9e83490e993161d1748c11f", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 351.45 - }, - "width": 30.342194, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 205, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 42, - "endOffset": 49, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "efe92bf9dba593f700c22176371c8e47", - "type": "CBI_author", - "value": "Richter", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 380.61 - }, - "width": 30.342194, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 204, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2016) ASB2017-13207", - "comments": [], - "startOffset": 41, - "endOffset": 48, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d99882b6eef0118e6e888ce9610dd472", - "type": "CBI_author", - "value": "Hargreaves", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 542.51 - }, - "width": 46.39447, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 202, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Metolachlor, CGA-51202, CGA-354743: ", - "textAfter": " (2008), ASB2015-338", - "comments": [], - "startOffset": 205, - "endOffset": 215, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9b327eae1cc5fe81752ee5cb13ba9766", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 258.64395, - "y": 401.15 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 392, - "endOffset": 395, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b945fbb28494566f60e6f7f12139912c", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 278.453, - "y": 421.79 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 256, - "endOffset": 259, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "69f5b7c1bacf1ace6c682855cc53c7ca", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 422.3359, - "y": 328.65 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 912, - "endOffset": 915, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "da25a30eb84b2f86db31cc57661b1fbb", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 310.91595, - "y": 359.73 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 680, - "endOffset": 683, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "67c048db5af31f3217c0325e82707c2c", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 195.464, - "y": 328.65 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 864, - "endOffset": 867, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "479d2c9618ae73862951011c31a8d5af", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 244.87401, - "y": 88.02399 - }, - "width": 12.36702, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 212, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 322, - "endOffset": 325, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f18dd47b24a6601a9291668a058e383e", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 173.87299, - "y": 380.37 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 509, - "endOffset": 512, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f8a2bc88c5ee4dd8d54597f9889a6b3f", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 363.341, - "y": 297.57 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1117, - "endOffset": 1120, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e4e40ec9cb1abf55c0589556b71f33d2", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 368.34103, - "y": 421.79 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 277, - "endOffset": 280, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "092f3b449d4782a0b21a3e19bfc91750", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 334.289, - "y": 318.33002 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 966, - "endOffset": 969, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ef069844f1ae029e52842ad69ae0c896", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 394.60098, - "y": 338.97 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 841, - "endOffset": 844, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2ab6160fc823b7f4e2701b6f32b40f1d", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 167.402, - "y": 390.81 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 438, - "endOffset": 441, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1bc42984884971a7383f333b19932c7e", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 353.824, - "y": 308.01 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1042, - "endOffset": 1045, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "86bae50096d2ac8333cef5ab16916c7b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 32 - } - ], - "sectionNumber": 2391, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e0534b0b3a2abbe9f1a25c45a1957e5c", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 375.08603, - "y": 390.81 - }, - "width": 12.502014, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 486, - "endOffset": 489, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a26f3549a6a2707a5f58a8a8b4d16766", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 390.647, - "y": 370.05 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 630, - "endOffset": 633, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6fa7c5108791f4a77caa286bf9f52305", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 209.84598, - "y": 349.41 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 726, - "endOffset": 729, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7601d8f8b74a5636c4a1463fbd309a28", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 370.85004, - "y": 380.37 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 555, - "endOffset": 558, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8c3871dc80e193801867e7454f726a10", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 186.113, - "y": 287.25 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1148, - "endOffset": 1151, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2d1905f4caa4533b8691c2773f980f88", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 167.402, - "y": 401.15 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 371, - "endOffset": 374, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b28172de31d4265a65cda080b44f941b", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 181.193, - "y": 338.97 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 791, - "endOffset": 794, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b647c6d6dd14f110730a0333a5ede22e", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 263.783, - "y": 411.47 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 323, - "endOffset": 326, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bea4699e07507eacba3298b9de902228", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 295.69696, - "y": 370.05 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 607, - "endOffset": 610, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7fa1811bd5d17087b7bea8565f6ae4b5", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 422.39902, - "y": 318.33002 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 990, - "endOffset": 993, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6b6702b2d401b6c7f4d9e8ea1be83077", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 292.69098, - "y": 349.41 - }, - "width": 12.367004, - "height": 10.0905, - "page": 32 - } - ], - "sectionNumber": 209, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 747, - "endOffset": 750, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9121ae9a23f0a4d86f81c79fd92ce26a", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 190.79985, - "y": 732.74 - }, - "width": 46.17569, - "height": 11.017679, - "page": 33 - } - ], - "sectionNumber": 217, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 10, - "endOffset": 20, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c2baca3ac9d9d1920601331ee8282cfc", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 33 - } - ], - "sectionNumber": 2392, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2bfc49ca9b5544569411c936cf99df04", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-1: Details on literature search and its results (date: 19 August 2016)", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 371.1272, - "y": 758.56 - }, - "width": 17.504791, - "height": 11.017679, - "page": 33 - } - ], - "sectionNumber": 216, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 47, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2c40e55c80fed504f1537064510559d1", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 676.46 - }, - "width": 45.292175, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 221, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 41, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a866029dd1beffc56e0f8e5c685c20f6", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 2393, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a9dffda5fd230fd4a812d27c3b07d69c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 35 - } - ], - "sectionNumber": 2394, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4ccf2b666a5eea16c327c5b64e1e619b", - "type": "false_positive", - "value": "Buehler assay", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-6: Results of skin sensitisation tests in comparison with CLP criteria", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 228.77, - "y": 558.59 - }, - "width": 56.81584, - "height": 10.526819, - "page": 36 - } - ], - "sectionNumber": 240, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 606, - "endOffset": 619, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5891f6526b40724880fdf37df7816d9f", - "type": "CBI_author", - "value": "Anon", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Comparison with criteria for classification and labelling and conclusion", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 139.7984, - "y": 302.37 - }, - "width": 25.354248, - "height": 11.017679, - "page": 36 - } - ], - "sectionNumber": 241, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the subcategorization (", - "textAfter": "., 2014 ASB2016-685).", - "comments": [], - "startOffset": 1321, - "endOffset": 1325, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1f693dc0372d61b9d9186d96986e507b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 36 - } - ], - "sectionNumber": 2395, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b6dcdb0f311b2f1b34d0dc8792d33b32", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 2396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "76b08ac3ca0d7d04fbfcdc7f256374a1", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 462.82, - "y": 485.15 - }, - "width": 47.572968, - "height": 10.44714, - "page": 38 - } - ], - "sectionNumber": 253, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 45, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b37b9bad33d45da98a72614542a2ba12", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 2397, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3f75408e8612393359eec50baa8002f7", - "type": "CBI_author", - "value": "Tisdell", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-9: Summary of the results of the submitted long-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 126.17999 - }, - "width": 28.828339, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 272, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 109, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "75fbb12e27c83571bf30b8488168df30", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-9: Summary of the results of the submitted long-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 471.82, - "y": 181.14001 - }, - "width": 47.5719, - "height": 10.44714, - "page": 39 - } - ], - "sectionNumber": 271, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 112, - "endOffset": 122, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4f809b6d2af0bef7ce2a9619eb46a14f", - "type": "CBI_author", - "value": "Hertner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 517.91 - }, - "width": 31.407898, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 268, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1995", - "comments": [], - "startOffset": 128, - "endOffset": 135, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ebe8430b24e278aae7b7a726e165c0ac", - "type": "CBI_author", - "value": "Tisdell", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-9: Summary of the results of the submitted long-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 85.50397 - }, - "width": 28.828339, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 273, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 100, - "endOffset": 107, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5232d93021f73ffc97c6fbdf127a7fa0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 2398, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "34b2aedb24846939dd8a77c338ca589e", - "type": "CBI_author", - "value": "Hertner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 692.3 - }, - "width": 31.407898, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 264, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 117, - "endOffset": 124, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "81ec8034ec026a48328807cfa008cc48", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 462.82, - "y": 753.4 - }, - "width": 47.572968, - "height": 10.44714, - "page": 39 - } - ], - "sectionNumber": 262, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 45, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3d2aa43b8dcf2a386ffde3f6edf5a050", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 2399, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "71c1c14ab8a446471352da5757147486", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 468.22, - "y": 434.27 - }, - "width": 47.57187, - "height": 10.44714, - "page": 40 - } - ], - "sectionNumber": 276, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 89, - "endOffset": 99, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "43bf00e91e4e7974e01b52a22d705ca7", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 41 - } - ], - "sectionNumber": 2400, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "842e1ba4082a69b48472fbb8c97a1eed", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 42 - } - ], - "sectionNumber": 2401, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9c0045ea4b1c452b0e5b8efe13158bab", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 43 - } - ], - "sectionNumber": 2402, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aaeb951370a9e559046c2432b9dca076", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 44 - } - ], - "sectionNumber": 2403, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "30a9c54f4b9c99a5f364a46b0c90549f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 45 - } - ], - "sectionNumber": 2404, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7638a71f54a5d5a4ecd0058ff5754f8b", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6.10 Summary of medical data and information", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 136.68718, - "y": 494.15 - }, - "width": 17.493774, - "height": 11.017679, - "page": 46 - } - ], - "sectionNumber": 321, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1047, - "endOffset": 1050, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "96b0b7450444448354268bd61e2af50b", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Conclusion by the RMS (2016):", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 350.34186, - "y": 280.76996 - }, - "width": 36.438416, - "height": 11.017679, - "page": 46 - } - ], - "sectionNumber": 323, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 194, - "endOffset": 201, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4d6aac75b6c6848f44a0cf8c510c0a5c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 46 - } - ], - "sectionNumber": 2405, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "25fe2a31c5f212e7ce46debf3bd18383", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Conclusion by the RMS (2016):", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 350.34186, - "y": 104.46002 - }, - "width": 36.438416, - "height": 11.017679, - "page": 47 - } - ], - "sectionNumber": 327, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 194, - "endOffset": 201, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bfdbbe5a1a92caafa18761b59f03f798", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 47 - } - ], - "sectionNumber": 2406, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a07b14dd094a59935f9cf7f63fde8708", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Conclusion by the RMS (2016):", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 350.34186, - "y": 520.31 - }, - "width": 36.438416, - "height": 11.017679, - "page": 47 - } - ], - "sectionNumber": 325, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 194, - "endOffset": 201, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4d9cba3a00b37ef9c900609ee6e3a7f2", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 48 - } - ], - "sectionNumber": 2407, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ac0ffa28299c4233d586797393b9c7ca", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7 Residues", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 310.13657, - "y": 102.900024 - }, - "width": 32.717896, - "height": 11.017679, - "page": 48 - } - ], - "sectionNumber": 329, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 212, - "endOffset": 218, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "31be7c0c1c83c4e356fa6387815834bf", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 244.36832, - "y": 240.09003 - }, - "width": 32.717896, - "height": 11.017679, - "page": 49 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 353, - "endOffset": 359, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5b4545250b55eeab5d8b09d3b6120f40", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 164.71777, - "y": 252.69 - }, - "width": 14.987686, - "height": 11.017679, - "page": 49 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 240, - "endOffset": 243, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f1db5b43b44c100aaa05e31027c75825", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 49 - } - ], - "sectionNumber": 2408, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8727b997017df763a45f1a7075c4a4b6", - "type": "false_positive", - "value": "List of", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 170.21, - "y": 758.92 - }, - "width": 31.293747, - "height": 10.929359, - "page": 50 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 685, - "endOffset": 692, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "629825d907085acdff6c0db9d86a1836", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 50 - } - ], - "sectionNumber": 2409, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bc72454dc012f3388a05789e0f07c9b9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 51 - } - ], - "sectionNumber": 2410, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7516b8f104ce5eaf9037fdb5ee0bb9e0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 52 - } - ], - "sectionNumber": 2411, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2224819429abeb77c8a1a7fc4941a106", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 53 - } - ], - "sectionNumber": 2412, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4efa200d414f22aab2c774837ac12dd0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 54 - } - ], - "sectionNumber": 2413, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "40d3c0cc2dcd4e25f913f4201727cdcf", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 371.73566 - }, - "width": 110.5348, - "height": 93.22937, - "page": 54 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e1caaec5496bb0c3c8c32221f9b6fb90", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 557.5062 - }, - "width": 110.75764, - "height": 75.90493, - "page": 54 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b38696e44f10de1b133d359c26e71b6", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 274.40796 - }, - "width": 113.04885, - "height": 91.30305, - "page": 54 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "528308e99d0256735dddc4845dccea80", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.85, - "y": 476.02 - }, - "width": 110.75, - "height": 75.6, - "page": 54 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "14725840d580b2d1f55f240ea2ee137a", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 182.47939 - }, - "width": 112.93428, - "height": 85.882164, - "page": 54 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "dc0c5e571bf5239111ebef4dbdba24e5", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 111.12166 - }, - "width": 189.78651, - "height": 65.33364, - "page": 54 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "75db5a442ad57a9862e1af481ef4a048", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 55 - } - ], - "sectionNumber": 2414, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8b82cefa1b25e3df905a480325d96830", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.1 Metabolism in plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 298.05 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 55 - } - ], - "sectionNumber": 379, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 749, - "endOffset": 752, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ee45747ade1ba3f2e2ff4b7e34adc3ee", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.1 Metabolism in plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 285.31, - "y": 222.21002 - }, - "width": 14.982391, - "height": 11.017679, - "page": 55 - } - ], - "sectionNumber": 379, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1224, - "endOffset": 1227, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a299b28c087f09cee6808c5d3b33c91d", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.1 Metabolism in plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 238.23312, - "y": 323.37 - }, - "width": 14.987686, - "height": 11.017679, - "page": 55 - } - ], - "sectionNumber": 379, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 634, - "endOffset": 637, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bddbdec204726742bf8093ef377f185e", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.1 Metabolism in plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 151.76782, - "y": 285.45 - }, - "width": 32.717926, - "height": 11.017679, - "page": 55 - } - ], - "sectionNumber": 379, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 862, - "endOffset": 868, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f3b9c67a1ed941a3c1ac8e468a2cffcd", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 544.0382 - }, - "width": 180.72943, - "height": 77.969536, - "page": 55 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4739424b7a51474914e3a519f6faa607", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 627.9419 - }, - "width": 181.5275, - "height": 92.96038, - "page": 55 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "22076b912290edf504ceab4c3e07a4ea", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 258.91, - "y": 464.24075 - }, - "width": 113.01097, - "height": 73.76492, - "page": 55 - } - ], - "sectionNumber": 378, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "07644e65d8e7472cd50545d97c6abfc1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 56 - } - ], - "sectionNumber": 2415, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d556df87c0ccecb6a5a49398a7d4e5ae", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 57 - } - ], - "sectionNumber": 2416, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2379058df283aea1ea9c23484ebaef79", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 58 - } - ], - "sectionNumber": 2417, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a496d6a6dffde3e12d7bc4f56abd559f", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.2 Metabolism in poultry", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 243.81633, - "y": 683.3 - }, - "width": 32.71791, - "height": 11.017679, - "page": 59 - } - ], - "sectionNumber": 383, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 350, - "endOffset": 356, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "617b502621919f103c104d6df87e1f5b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 59 - } - ], - "sectionNumber": 2418, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1c83c3d22b9b9270cca5efba6b6f16f1", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.3 Metabolism in lactating ruminants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 243.81633, - "y": 304.52997 - }, - "width": 32.71791, - "height": 11.017679, - "page": 59 - } - ], - "sectionNumber": 384, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 368, - "endOffset": 374, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9839b0940f9cafe06377b8be73c9312a", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.2 Metabolism in poultry", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 484.6713, - "y": 480.83 - }, - "width": 14.987671, - "height": 11.017679, - "page": 59 - } - ], - "sectionNumber": 383, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1748, - "endOffset": 1751, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2558ef028cd81b32b2e7fa9acd39adef", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.2 Metabolism in poultry", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 173.71535, - "y": 607.46 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 59 - } - ], - "sectionNumber": 383, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 804, - "endOffset": 807, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f0efdba1df805c215c805e4b4d1fbca9", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.5 Metabolism in fish", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 387.54288, - "y": 507.59 - }, - "width": 35.30124, - "height": 11.017679, - "page": 60 - } - ], - "sectionNumber": 388, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 195, - "endOffset": 202, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c98d18f14e102c76e9f6349855541fce", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.2.3 Metabolism in lactating ruminants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 759.04 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 60 - } - ], - "sectionNumber": 384, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1834, - "endOffset": 1837, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "50529a413094d3816f7c54a13ade6631", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 60 - } - ], - "sectionNumber": 2419, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "10f1c79f39300f764052f85d8e12a0c4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 61 - } - ], - "sectionNumber": 2420, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "52afd4edd45f6a26d845ac829738aabb", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 62 - } - ], - "sectionNumber": 2421, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "35590f5a8ab5a24c3c97d26d41f39276", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.3 Definition of the residue", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 518.27 - }, - "width": 23.676155, - "height": 11.017679, - "page": 63 - } - ], - "sectionNumber": 397, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1143, - "endOffset": 1148, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7c3396859ae627e67d4d65d4d8af185c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 63 - } - ], - "sectionNumber": 2422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "193d639fed9c2ab7232c7bdcc0f4801f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 64 - } - ], - "sectionNumber": 2423, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "492de2fd178bf399ca92767bedb6047f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 65 - } - ], - "sectionNumber": 2424, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4a5dc2003729403f7e3c8de91c85f4a0", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.3.2 Definition of the residue in animals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 412.3, - "y": 127.26001 - }, - "width": 14.987701, - "height": 11.017679, - "page": 65 - } - ], - "sectionNumber": 398, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 221, - "endOffset": 224, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7aeb03becafecea93f1f156cd13cf9ae", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 66 - } - ], - "sectionNumber": 2425, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "75f13390cd7607da20a985c42c2a9cd9", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.4 Summary of residue trials in plants and identification of critical GAP", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 201.88498, - "y": 66.90399 - }, - "width": 32.828323, - "height": 11.017679, - "page": 67 - } - ], - "sectionNumber": 411, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2196, - "endOffset": 2202, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "09a2ef81c3f57274fc7dece7877e7c37", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.4 Summary of residue trials in plants and identification of critical GAP", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 313.16998 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 67 - } - ], - "sectionNumber": 411, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1504, - "endOffset": 1507, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c0ce5338fdedaee828f9ac07c3bb2617", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-3: Summary of new residue data from EU sunflower trials", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 472.42, - "y": 254.01001 - }, - "width": 19.67688, - "height": 9.58986, - "page": 67 - } - ], - "sectionNumber": 404, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "** (mg/kg", - "comments": [], - "startOffset": 71, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4fa34f209c3869fda26bc22367eb0c10", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 67 - } - ], - "sectionNumber": 2426, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c559372cb688b3ce0eb8ded4632d7682", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-5: Summary of new residue data from EU maize trials", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 470.5, - "y": 236.85004 - }, - "width": 19.67688, - "height": 9.58986, - "page": 68 - } - ], - "sectionNumber": 422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "** (mg/kg", - "comments": [], - "startOffset": 71, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e044a0805d8b829d67424b22d5884486", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 68 - } - ], - "sectionNumber": 2427, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7548aac113c0b4b2f4c084b209dfdf70", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 69 - } - ], - "sectionNumber": 2428, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "734820fa83391e1db0a46bf26627c5c2", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-5: Summary of new residue data from EU maize trials", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 470.5, - "y": 753.88 - }, - "width": 19.67688, - "height": 9.58986, - "page": 69 - } - ], - "sectionNumber": 440, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "** (mg/kg", - "comments": [], - "startOffset": 71, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3848294295c7831d02e323cd383eb150", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.4.2 Maize", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 163.61711, - "y": 471.35 - }, - "width": 32.828323, - "height": 11.017679, - "page": 69 - } - ], - "sectionNumber": 452, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2061, - "endOffset": 2067, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "70b46f05c43cbeda95b21ca0bfdc836e", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.5 Summary of feeding studies in poultry, ruminants, pigs and fish", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 361.76462, - "y": 588.38 - }, - "width": 32.717896, - "height": 11.017679, - "page": 70 - } - ], - "sectionNumber": 485, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1310, - "endOffset": 1316, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "423db19641042898eff105d6017ca86e", - "type": "false_positive", - "value": "Turkey", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-7: Results of the dietary burden calculation", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 85.104, - "y": 233.37 - }, - "width": 29.953728, - "height": 10.526819, - "page": 70 - } - ], - "sectionNumber": 483, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "53448ae09b81756692796b0944ab76d4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 70 - } - ], - "sectionNumber": 2429, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2c3a3b368756272e5a681da189e499b6", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.5.2 Ruminant", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 74.65344, - "y": 695.78 - }, - "width": 17.49376, - "height": 11.017679, - "page": 71 - } - ], - "sectionNumber": 487, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 769, - "endOffset": 772, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0146894bf39484882987a7ffaad46664", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.5.4 Fish", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 141.74, - "y": 582.98 - }, - "width": 22.875992, - "height": 11.358, - "page": 71 - } - ], - "sectionNumber": 489, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5e45eb2acdb6b5b40d19e8393088bd20", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 71 - } - ], - "sectionNumber": 2430, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "09e83f1eb38245cfc689b1cdedab13e9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 72 - } - ], - "sectionNumber": 2431, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1df5cb6b31de0f027442a91dba1284f2", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 435.22128, - "y": 60.783997 - }, - "width": 19.46991, - "height": 11.017679, - "page": 72 - } - ], - "sectionNumber": 514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 864, - "endOffset": 868, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b1cccde75881f7754d68dfe3182b9d46", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-8: Toxicological reference values for the dietary risk assessment of\nS-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 141.5, - "y": 199.38 - }, - "width": 26.54741, - "height": 10.526819, - "page": 72 - } - ], - "sectionNumber": 495, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 16, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "92babd4b3976c8fb24d3675253f7700d", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-9: Residue input values for the consumer risk assessment", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 253.85, - "y": 569.15 - }, - "width": 22.672943, - "height": 10.526819, - "page": 73 - } - ], - "sectionNumber": 504, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " according to", - "comments": [], - "startOffset": 27, - "endOffset": 30, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c30e8c2e63eb4997824b43f81b13f5c5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 73 - } - ], - "sectionNumber": 2432, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c66fdeb28e39da9cedd25bd453872c3e", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 471.72223, - "y": 407.4301 - }, - "width": 13.087524, - "height": 8.687853, - "page": 74 - } - ], - "sectionNumber": 514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the highest national ", - "textAfter": " was identified", - "comments": [], - "startOffset": 2096, - "endOffset": 2099, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1672f40eaa6e97dfa2d8c864bbdf7bd2", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 176.44547, - "y": 400.31815 - }, - "width": 29.028625, - "height": 8.687853, - "page": 74 - } - ], - "sectionNumber": 514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2191, - "endOffset": 2200, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ea835b96f684f2a303edf878a29cebd8", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 577.7728, - "y": 407.4301 - }, - "width": 13.087524, - "height": 8.687853, - "page": 74 - } - ], - "sectionNumber": 514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "identified (proposed temporary ", - "textAfter": " = pTMRL).", - "comments": [], - "startOffset": 2135, - "endOffset": 2138, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a9af70d4e97de6d244660f4f6640c40b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 74 - } - ], - "sectionNumber": 2433, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0d08b7c1923736a74805e2208e01226b", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:ocr", - "color": [ - 0.7411765, - 0.8392157, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 536.7944, - "y": 436.8539 - }, - "width": 170.53722, - "height": 16.778795, - "page": 74 - } - ], - "sectionNumber": 514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d09ecae7f6967e5f23347d9c1cfeceb3", - "type": "ocr", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:ocr", - "color": [ - 0.7411765, - 0.8392157, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 537.2772, - "y": 462.3328 - }, - "width": 170.05429, - "height": 49.438755, - "page": 74 - } - ], - "sectionNumber": 514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "186b0370b7b6ebef62e59283e04dd044", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Prepare workbook for refined\ncalculations", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 112.64698, - "y": 455.74457 - }, - "width": 14.364342, - "height": 8.86552, - "page": 75 - } - ], - "sectionNumber": 522, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "IESTI calculation. Threshold ", - "textAfter": " is the", - "comments": [], - "startOffset": 825, - "endOffset": 828, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8f9141f5a3c3779e8cd4d502efbadc07", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Prepare workbook for refined\ncalculations", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 388.41788, - "y": 404.19733 - }, - "width": 13.8637085, - "height": 8.86552, - "page": 75 - } - ], - "sectionNumber": 517, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Commodities pTMRL/ threshold ", - "textAfter": " (mg/kg)", - "comments": [], - "startOffset": 114, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d8dc5fef76f91efe9f6b402340f3ff6c", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Prepare workbook for refined\ncalculations", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 552.97705, - "y": 404.19733 - }, - "width": 13.8637085, - "height": 8.86552, - "page": 75 - } - ], - "sectionNumber": 517, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Commodities pTMRL/ threshold ", - "textAfter": " (mg/kg)", - "comments": [], - "startOffset": 177, - "endOffset": 180, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d1c7477eeaec147102192d36ac466e27", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Prepare workbook for refined\ncalculations", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 753.5852, - "y": 404.19733 - }, - "width": 13.8637085, - "height": 8.86552, - "page": 75 - } - ], - "sectionNumber": 517, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Commodities pTMRL/ threshold ", - "textAfter": " (mg/kg", - "comments": [], - "startOffset": 240, - "endOffset": 243, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "38b5a287fa713af836278608fa5c280d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 75 - } - ], - "sectionNumber": 2434, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "01a3cf5f5564721a5fa68abf4f277e2e", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: Prepare workbook for refined\ncalculations", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 231.94382, - "y": 404.19733 - }, - "width": 13.863739, - "height": 8.86552, - "page": 75 - } - ], - "sectionNumber": 517, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Commodities pTMRL/ threshold ", - "textAfter": " (mg/kg)", - "comments": [], - "startOffset": 51, - "endOffset": 54, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "dfe766aff07f098d554b140fe7263e6a", - "type": "false_positive", - "value": "December", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 507.96268, - "y": 696.62 - }, - "width": 17.633636, - "height": 11.017679, - "page": 76 - }, - { - "topLeft": { - "x": 70.944, - "y": 683.9 - }, - "width": 33.325127, - "height": 11.017679, - "page": 76 - } - ], - "sectionNumber": 528, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 237, - "endOffset": 245, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "79426893df2c5511570bd47769e46fd2", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-10: EU MRLs and MRLs proposed by the RMS", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 287.4043, - "y": 561.11 - }, - "width": 24.425934, - "height": 10.44714, - "page": 76 - } - ], - "sectionNumber": 523, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Existing EU ", - "textAfter": " (mg/kg)", - "comments": [], - "startOffset": 34, - "endOffset": 37, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a01a3ad8e5588b0f485a828cfecc0048", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 76 - } - ], - "sectionNumber": 2435, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "db700470724e21e9a4aa68a77b3cefba", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 393.6465, - "y": 645.98 - }, - "width": 24.923676, - "height": 11.017679, - "page": 76 - } - ], - "sectionNumber": 528, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "on in the ", - "textAfter": " review (0.05", - "comments": [], - "startOffset": 555, - "endOffset": 558, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "05c56b79c8614db3462ba63cfcc4e7bf", - "type": "CBI_address", - "value": "MRL", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.7-10: EU MRLs and MRLs proposed by the RMS", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 327.67, - "y": 549.59 - }, - "width": 24.425934, - "height": 10.44714, - "page": 76 - } - ], - "sectionNumber": 523, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Proposed EU ", - "textAfter": " (mg/kg)", - "comments": [], - "startOffset": 58, - "endOffset": 61, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4e623c2c2c43f721b7bdd67d700df6e6", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 281.30017, - "y": 683.9 - }, - "width": 19.458862, - "height": 11.017679, - "page": 76 - } - ], - "sectionNumber": 528, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 286, - "endOffset": 290, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "11b6051a91d6c1948fa9311c9a2e8aa2", - "type": "false_positive", - "value": "February", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8 Fate and behaviour in the environment", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 146.25105, - "y": 243.06 - }, - "width": 40.832336, - "height": 11.017679, - "page": 76 - } - ], - "sectionNumber": 588, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 260, - "endOffset": 268, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4d7a8674e9858857e5b999caf60404e3", - "type": "false_positive", - "value": "Major metabolites", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8 Fate and behaviour in the environment", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 170.21, - "y": 758.92 - }, - "width": 87.46529, - "height": 10.929359, - "page": 77 - } - ], - "sectionNumber": 588, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 433, - "endOffset": 450, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "14a0992e4f164dfd57cd9c51af524842", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 418.75507, - "y": 246.09003 - }, - "width": 30.34436, - "height": 11.017679, - "page": 77 - }, - { - "topLeft": { - "x": 402.46, - "y": 233.37 - }, - "width": 53.0094, - "height": 11.017679, - "page": 77 - }, - { - "topLeft": { - "x": 402.46, - "y": 220.77002 - }, - "width": 12.691376, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 476, - "endOffset": 495, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4767325d61dacd1bd51db6ea818f0fcc", - "type": "false_positive", - "value": "Sodium Salt", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 612.86 - }, - "width": 55.18431, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 26, - "endOffset": 37, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e5fb433c217e1e7326a5cb53bb5b481c", - "type": "CBI_author", - "value": "Hein W.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 157.02002 - }, - "width": 38.282104, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 532, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "21.1% (d153) (", - "textAfter": ", 2007) water:", - "comments": [], - "startOffset": 126, - "endOffset": 133, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b9f36108ceba66d6ce945fed035f5400", - "type": "false_positive", - "value": "Sodium Salt", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 536.99 - }, - "width": 55.18431, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 100, - "endOffset": 111, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9f4ff77115801f4d5636b71389b30b94", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 429.07742, - "y": 93.664 - }, - "width": 19.42575, - "height": 11.017679, - "page": 77 - }, - { - "topLeft": { - "x": 402.46, - "y": 81.064026 - }, - "width": 29.030518, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 532, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(d 362) (", - "textAfter": ", 1997)", - "comments": [], - "startOffset": 168, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "64f48105caea0a90d7966f7324ecbab9", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.4813, - "y": 359.85 - }, - "width": 19.42575, - "height": 11.017679, - "page": 77 - }, - { - "topLeft": { - "x": 402.46, - "y": 347.25 - }, - "width": 29.030518, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study end) (", - "textAfter": " 1997) lysimeter:", - "comments": [], - "startOffset": 407, - "endOffset": 414, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c348429751dd9592f985041566c1e849", - "type": "CBI_author", - "value": "Keller A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 432.68753, - "y": 612.86 - }, - "width": 20.618103, - "height": 11.017679, - "page": 77 - }, - { - "topLeft": { - "x": 402.46, - "y": 600.26 - }, - "width": 23.477478, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 256, - "endOffset": 264, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a59f42680d04506c15bb8129561c658b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 77 - } - ], - "sectionNumber": 2436, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "14cd0ccf4ecfc6631fda72f7f01c6daa", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.4813, - "y": 486.35 - }, - "width": 19.42575, - "height": 11.017679, - "page": 77 - }, - { - "topLeft": { - "x": 402.46, - "y": 473.75 - }, - "width": 29.030518, - "height": 11.017679, - "page": 77 - } - ], - "sectionNumber": 531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study end) (", - "textAfter": ", 1997) s/w", - "comments": [], - "startOffset": 330, - "endOffset": 337, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f8a7893b8af93a6f997972cbd19e7af1", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 418.75507, - "y": 542.99 - }, - "width": 30.34436, - "height": 11.017679, - "page": 78 - }, - { - "topLeft": { - "x": 402.46, - "y": 530.27 - }, - "width": 53.0094, - "height": 11.017679, - "page": 78 - }, - { - "topLeft": { - "x": 402.46, - "y": 517.67 - }, - "width": 12.691376, - "height": 11.017679, - "page": 78 - } - ], - "sectionNumber": 535, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012", - "comments": [], - "startOffset": 174, - "endOffset": 193, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "da1bbad0a2f11139295726952989f11a", - "type": "CBI_author", - "value": "Morgenroth U", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 453.95 - }, - "width": 39.441284, - "height": 11.017679, - "page": 78 - }, - { - "topLeft": { - "x": 402.46, - "y": 441.23 - }, - "width": 29.593597, - "height": 11.017679, - "page": 78 - } - ], - "sectionNumber": 536, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "7.6% (d120) (", - "textAfter": ", 1997) lysimeter:", - "comments": [], - "startOffset": 119, - "endOffset": 131, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "503d7caff3b552dd1568e0ceb99fa81e", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 644.18 - }, - "width": 43.77997, - "height": 11.017679, - "page": 78 - } - ], - "sectionNumber": 535, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(d 362) (", - "textAfter": ", 1997) lysimeter:", - "comments": [], - "startOffset": 103, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2de1d1734a06e17644bb05ad1d8d04c5", - "type": "CBI_author", - "value": "Clark A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 263.73004 - }, - "width": 36.089478, - "height": 11.017679, - "page": 78 - } - ], - "sectionNumber": 537, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "6.5% (d14) (", - "textAfter": ", 1995)", - "comments": [], - "startOffset": 132, - "endOffset": 139, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "dd49db0f56a86bb32ff6e6fe7225abf0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 78 - } - ], - "sectionNumber": 2437, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7ccce817afae36a58747fe32a1b692b9", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 418.76944, - "y": 340.05 - }, - "width": 30.333313, - "height": 11.017679, - "page": 78 - }, - { - "topLeft": { - "x": 402.46, - "y": 327.45 - }, - "width": 53.0094, - "height": 11.017679, - "page": 78 - }, - { - "topLeft": { - "x": 402.46, - "y": 314.73004 - }, - "width": 12.691376, - "height": 11.017679, - "page": 78 - } - ], - "sectionNumber": 536, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 193, - "endOffset": 212, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7c03d1e8bce03b9f17a1bc5c4abecfec", - "type": "CBI_author", - "value": "Clark A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 644.18 - }, - "width": 36.074097, - "height": 11.017679, - "page": 79 - } - ], - "sectionNumber": 540, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "120 d) (", - "textAfter": ", 1995) lysimeter:", - "comments": [], - "startOffset": 108, - "endOffset": 115, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9bcbe98ba6e3c968789c2b28d91e628c", - "type": "CBI_author", - "value": "Fent", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 137.22003 - }, - "width": 20.62912, - "height": 11.017679, - "page": 79 - } - ], - "sectionNumber": 542, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 1999)", - "comments": [], - "startOffset": 187, - "endOffset": 191, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "143389213840861c765d2ff144e5e4b9", - "type": "CBI_author", - "value": "Fent", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.18, - "y": 530.27 - }, - "width": 20.62912, - "height": 11.017679, - "page": 79 - } - ], - "sectionNumber": 540, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 1999)", - "comments": [], - "startOffset": 178, - "endOffset": 182, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "921c2b0a7cf4f1ab451a9a62ff29f2f3", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 79 - } - ], - "sectionNumber": 2438, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2c1dd0802d9da2a47e9be794f3b2a8a5", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 418.76944, - "y": 352.77 - }, - "width": 30.333313, - "height": 11.017679, - "page": 79 - }, - { - "topLeft": { - "x": 402.46, - "y": 340.05 - }, - "width": 53.0094, - "height": 11.017679, - "page": 79 - }, - { - "topLeft": { - "x": 402.46, - "y": 327.45 - }, - "width": 12.691376, - "height": 11.017679, - "page": 79 - } - ], - "sectionNumber": 541, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 248, - "endOffset": 267, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca877e9a57d740b8d142c125e459864e", - "type": "CBI_author", - "value": "Hein W.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 453.95 - }, - "width": 38.282104, - "height": 11.017679, - "page": 79 - } - ], - "sectionNumber": 541, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "9.1% (d153) (", - "textAfter": ", 2007) lysimeter:", - "comments": [], - "startOffset": 178, - "endOffset": 185, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cff586a170ae312427641926a8ed6fed", - "type": "CBI_author", - "value": "Kitschmann P", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 263.73004 - }, - "width": 33.45758, - "height": 11.017679, - "page": 79 - }, - { - "topLeft": { - "x": 402.46, - "y": 251.01001 - }, - "width": 34.241425, - "height": 11.017679, - "page": 79 - } - ], - "sectionNumber": 542, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "181 d) (", - "textAfter": ", 1997a) lysimeter:", - "comments": [], - "startOffset": 110, - "endOffset": 122, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5dab16572591eb168eecc7b2ea183fd4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 80 - } - ], - "sectionNumber": 2439, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "deb3e18ac6a374c0ae7ab4d61d0d5c34", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 517.67 - }, - "width": 30.333313, - "height": 11.017679, - "page": 80 - }, - { - "topLeft": { - "x": 402.46, - "y": 505.07 - }, - "width": 53.0094, - "height": 11.017679, - "page": 80 - }, - { - "topLeft": { - "x": 402.46, - "y": 492.35 - }, - "width": 12.691376, - "height": 11.017679, - "page": 80 - } - ], - "sectionNumber": 545, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 200, - "endOffset": 219, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "559bd94632792dbc995eb09cebe0bea1", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 428.63 - }, - "width": 28.522736, - "height": 11.017679, - "page": 80 - } - ], - "sectionNumber": 546, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "44.2% (d120) (", - "textAfter": " ,1997) sediment:", - "comments": [], - "startOffset": 182, - "endOffset": 188, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cede1c2d2f6bd1a9b23e8f7a97170b18", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 644.18 - }, - "width": 33.45758, - "height": 11.017679, - "page": 80 - }, - { - "topLeft": { - "x": 402.46, - "y": 631.58 - }, - "width": 25.34317, - "height": 11.017679, - "page": 80 - } - ], - "sectionNumber": 545, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "28 d) (", - "textAfter": ", 1997) lysimeter:", - "comments": [], - "startOffset": 127, - "endOffset": 137, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e680ebcae14656e56a034bc98e9ec314", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 276.81 - }, - "width": 43.77997, - "height": 11.017679, - "page": 80 - } - ], - "sectionNumber": 546, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "8.2% (d175) (", - "textAfter": ", 1997) s/w", - "comments": [], - "startOffset": 264, - "endOffset": 271, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b1ac4fdd4e68656cf895dc5b90e8800e", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 352.77 - }, - "width": 43.77997, - "height": 11.017679, - "page": 80 - } - ], - "sectionNumber": 546, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "9.6% (d175) (", - "textAfter": ", 1997) water:", - "comments": [], - "startOffset": 224, - "endOffset": 231, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "73d41f796a79f127edd68ec34906b569", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 408.92944, - "y": 150.29999 - }, - "width": 43.77997, - "height": 11.017679, - "page": 80 - } - ], - "sectionNumber": 546, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "54.7% (d271) (", - "textAfter": ", 1997)", - "comments": [], - "startOffset": 342, - "endOffset": 349, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "11ce63236c2ce84693ceb29a987385b9", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 253.28998 - }, - "width": 30.333313, - "height": 11.017679, - "page": 81 - }, - { - "topLeft": { - "x": 402.46, - "y": 240.57 - }, - "width": 53.0094, - "height": 11.017679, - "page": 81 - }, - { - "topLeft": { - "x": 402.46, - "y": 227.97003 - }, - "width": 12.691376, - "height": 11.017679, - "page": 81 - } - ], - "sectionNumber": 552, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 166, - "endOffset": 185, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c44f6bdffb4aa82db20f3b09c56b755f", - "type": "CBI_author", - "value": "Bond&Ha nd", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 430.07 - }, - "width": 46.219788, - "height": 11.017679, - "page": 81 - }, - { - "topLeft": { - "x": 402.46, - "y": 417.35 - }, - "width": 12.039978, - "height": 11.017679, - "page": 81 - } - ], - "sectionNumber": 551, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2014)", - "comments": [], - "startOffset": 159, - "endOffset": 169, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3b208cbe6d1cbfb736d29a72fa500308", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 81 - } - ], - "sectionNumber": 2440, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c70f4d81f0d94821dae8a8e0839d1fed", - "type": "CBI_author", - "value": "Bond&Ha nd", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 618.86 - }, - "width": 46.219788, - "height": 11.017679, - "page": 81 - }, - { - "topLeft": { - "x": 402.46, - "y": 606.26 - }, - "width": 12.039978, - "height": 11.017679, - "page": 81 - } - ], - "sectionNumber": 550, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2014)", - "comments": [], - "startOffset": 151, - "endOffset": 161, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "739f412ec91beed049731b111c2a2b88", - "type": "CBI_author", - "value": "Bond&Ha nd", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 618.86 - }, - "width": 46.219788, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 402.46, - "y": 606.26 - }, - "width": 12.039978, - "height": 11.017679, - "page": 82 - } - ], - "sectionNumber": 555, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2014)", - "comments": [], - "startOffset": 212, - "endOffset": 222, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6f4869ce6d8264352da55acb3fb9aba2", - "type": "false_positive", - "value": "Ammonium Salt", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 74.65344, - "y": 656.9 - }, - "width": 54.212784, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 70.944, - "y": 644.18 - }, - "width": 18.222397, - "height": 11.017679, - "page": 82 - } - ], - "sectionNumber": 555, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 33, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a84d5ee91e412916d2ca0b2c6e9b03d1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 82 - } - ], - "sectionNumber": 2441, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "654925f59a464bda8942992208402327", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 432.95 - }, - "width": 30.333313, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 402.46, - "y": 420.35 - }, - "width": 53.0094, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 402.46, - "y": 407.63 - }, - "width": 12.691376, - "height": 11.017679, - "page": 82 - } - ], - "sectionNumber": 556, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 172, - "endOffset": 191, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "87de219fa1445793fb1173a82e345b9f", - "type": "false_positive", - "value": "Ammonium Salt", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 74.65344, - "y": 279.21002 - }, - "width": 54.212784, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 70.944, - "y": 266.49 - }, - "width": 18.222397, - "height": 11.017679, - "page": 82 - } - ], - "sectionNumber": 557, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 33, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "938b3941639e1ab683eaf21cdd694616", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 241.16998 - }, - "width": 30.333313, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 402.46, - "y": 228.57 - }, - "width": 53.0094, - "height": 11.017679, - "page": 82 - }, - { - "topLeft": { - "x": 402.46, - "y": 215.94 - }, - "width": 12.691376, - "height": 11.017679, - "page": 82 - } - ], - "sectionNumber": 557, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 189, - "endOffset": 208, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c42f90a28580ba89fe0434316ace01ea", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 83 - } - ], - "sectionNumber": 2442, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "00e81b46bf872907cee9e86f35caffff", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 618.86 - }, - "width": 30.333313, - "height": 11.017679, - "page": 83 - }, - { - "topLeft": { - "x": 402.46, - "y": 606.26 - }, - "width": 53.0094, - "height": 11.017679, - "page": 83 - }, - { - "topLeft": { - "x": 402.46, - "y": 593.66 - }, - "width": 12.691376, - "height": 11.017679, - "page": 83 - } - ], - "sectionNumber": 560, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 160, - "endOffset": 179, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "24ed99a55bf28d4e099d42d6642b0507", - "type": "CBI_author", - "value": "Fent", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 442.67 - }, - "width": 20.62912, - "height": 11.017679, - "page": 83 - } - ], - "sectionNumber": 561, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "a.i. equivalente/L (", - "textAfter": " 1999)", - "comments": [], - "startOffset": 119, - "endOffset": 123, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c07c18f6b20d1d94852dcc2feb1704fe", - "type": "CBI_author", - "value": "Zbaerben&Nicoll ier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 250.16998 - }, - "width": 30.333313, - "height": 11.017679, - "page": 83 - }, - { - "topLeft": { - "x": 402.46, - "y": 237.57 - }, - "width": 53.0094, - "height": 11.017679, - "page": 83 - }, - { - "topLeft": { - "x": 402.46, - "y": 224.85004 - }, - "width": 12.691376, - "height": 11.017679, - "page": 83 - } - ], - "sectionNumber": 562, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2012)", - "comments": [], - "startOffset": 196, - "endOffset": 215, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d2f040b34001e9d4fca9c0c07c47621f", - "type": "false_positive", - "value": "Sodium Salt", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 300.81 - }, - "width": 55.18431, - "height": 11.017679, - "page": 83 - } - ], - "sectionNumber": 562, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 20, - "endOffset": 31, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5cb335ad96628b8a389886752b5ce838", - "type": "CBI_author", - "value": "Bond&Ha nd", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 618.86 - }, - "width": 46.219788, - "height": 11.017679, - "page": 84 - }, - { - "topLeft": { - "x": 402.46, - "y": 606.26 - }, - "width": 12.039978, - "height": 11.017679, - "page": 84 - } - ], - "sectionNumber": 565, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "equivalent /L (", - "textAfter": ", 2014)", - "comments": [], - "startOffset": 224, - "endOffset": 234, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "37f9d87cbf5dfe17a4bff25706d6bfdd", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 315.21002 - }, - "width": 43.77997, - "height": 11.017679, - "page": 84 - } - ], - "sectionNumber": 566, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study (", - "textAfter": ", 1997) s/w", - "comments": [], - "startOffset": 247, - "endOffset": 254, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f49d6396f5977ed90c6dcb59d9e495ac", - "type": "false_positive", - "value": "Ammonium Salt", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 74.65344, - "y": 656.9 - }, - "width": 54.212784, - "height": 11.017679, - "page": 84 - }, - { - "topLeft": { - "x": 70.944, - "y": 644.18 - }, - "width": 18.222397, - "height": 11.017679, - "page": 84 - } - ], - "sectionNumber": 565, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 33, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ea55b3e4a672a41ea7c5556bb4a96da2", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 201.29999 - }, - "width": 43.77997, - "height": 11.017679, - "page": 84 - } - ], - "sectionNumber": 566, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study (", - "textAfter": ", 1997)", - "comments": [], - "startOffset": 327, - "endOffset": 334, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f1380958db5fd208a19f3b6539d85bbf", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 428.99 - }, - "width": 43.77997, - "height": 11.017679, - "page": 84 - } - ], - "sectionNumber": 566, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study (", - "textAfter": ", 1997) water:", - "comments": [], - "startOffset": 171, - "endOffset": 178, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "01c980bd4e15f1062a4464c0f899d40e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 84 - } - ], - "sectionNumber": 2443, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "15350ff315d39b6f4d049e424db0520e", - "type": "CBI_author", - "value": "Simmonds R", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-1: Major metabolites of S-metolachlor (considered potentially relevant for\nenvironmental risk assessment according to SANCO/221/2000, rev.10- final, 2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 530.27 - }, - "width": 48.019318, - "height": 11.017679, - "page": 85 - }, - { - "topLeft": { - "x": 402.46, - "y": 517.67 - }, - "width": 8.363678, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 570, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study (", - "textAfter": ", 2012", - "comments": [], - "startOffset": 234, - "endOffset": 244, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b8e4e2b5f77d8eb44d6e4c0a23822b44", - "type": "CBI_author", - "value": "Simmonds M", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 449.34692, - "y": 284.61 - }, - "width": 60.472412, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 153, - "endOffset": 163, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "aefa00a506228535147eac6d79fc96a7", - "type": "CBI_author", - "value": "Simmonds R", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 413.74286, - "y": 297.33002 - }, - "width": 58.143005, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(Simmonds M & ", - "textAfter": ", 2013) <2.6", - "comments": [], - "startOffset": 124, - "endOffset": 134, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "630c49a0d5b37d4cf06a4af79588956b", - "type": "CBI_author", - "value": "Merritt, A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 432.7979, - "y": 335.73 - }, - "width": 45.699554, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 574, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 116, - "endOffset": 126, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b5cfcb910f6ca6c324f3e26a4e458168", - "type": "CBI_author", - "value": "Simmonds R", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 208.73999 - }, - "width": 58.143005, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(moist soil) (", - "textAfter": ", 2012) TLC", - "comments": [], - "startOffset": 250, - "endOffset": 260, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "41641b00cc48e7cf87a84f7164213cd7", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 85 - } - ], - "sectionNumber": 2444, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "698432891c2cfcd3ad7dad66ba2c2f56", - "type": "CBI_author", - "value": "Simmonds R", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 413.74286, - "y": 272.01 - }, - "width": 58.143005, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(Simmonds M & ", - "textAfter": ", 2014) soil-photolysis:", - "comments": [], - "startOffset": 166, - "endOffset": 176, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "350ad337c1fb641b49f87f390a6cf3a7", - "type": "CBI_author", - "value": "Merritt, A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 432.7979, - "y": 145.5 - }, - "width": 45.667877, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 354, - "endOffset": 364, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b8a8a3bd54cd299d026b8021a834d28c", - "type": "CBI_author", - "value": "Simmonds M", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 449.34692, - "y": 309.93 - }, - "width": 60.472412, - "height": 11.017679, - "page": 85 - } - ], - "sectionNumber": 575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 111, - "endOffset": 121, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9c9df40b9fe6825e9d32ccfc22d32918", - "type": "CBI_author", - "value": "Merritt, A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 454.74542, - "y": 454.43 - }, - "width": 45.667908, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 578, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 413, - "endOffset": 423, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e2a85b56add0426d56ce653310dca0e4", - "type": "CBI_author", - "value": "Mamouni A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 456.556, - "y": 377.97 - }, - "width": 54.554993, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 579, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 164, - "endOffset": 173, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "163e9c57fbbbb63d7fc4d10e9926ec65", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 229.40997 - }, - "width": 54.12442, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 580, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "at d28 (", - "textAfter": ", 1997 a", - "comments": [], - "startOffset": 103, - "endOffset": 113, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2478900c2ca67a27726b9699ffdf59fc", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 86 - } - ], - "sectionNumber": 2445, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5dffc398f2e80e3739f563268bc40bfd", - "type": "CBI_author", - "value": "Mamouni A.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 456.58, - "y": 694.82 - }, - "width": 57.28897, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 578, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "max: 2.2% (", - "textAfter": ", 1997a) sediment:", - "comments": [], - "startOffset": 128, - "endOffset": 138, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "88b27fedbfd7b14e43f26e24e66966b1", - "type": "CBI_author", - "value": "Mamouni A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 456.556, - "y": 416.03 - }, - "width": 54.554993, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 579, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 129, - "endOffset": 138, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "52fca84de74b707284909f50d6c04ac9", - "type": "CBI_author", - "value": "Simmonds R", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 505.07 - }, - "width": 58.143005, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 578, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(moist soil) (", - "textAfter": ", 2012) TLC", - "comments": [], - "startOffset": 327, - "endOffset": 337, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d246b7546e3f9b3db34767b1ed13bfc7", - "type": "CBI_author", - "value": "Mamouni A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 456.556, - "y": 340.05 - }, - "width": 54.554993, - "height": 11.017679, - "page": 86 - } - ], - "sectionNumber": 579, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 203, - "endOffset": 212, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ce067662a0c915094e2e2ef5a6967d66", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 87 - } - ], - "sectionNumber": 2446, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c250085cb1bd0c23cd4e530b5c7f9706", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 376.96884, - "y": 260.97003 - }, - "width": 47.88681, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "metabolism studies (", - "textAfter": "&Simmonds 2013 and", - "comments": [], - "startOffset": 596, - "endOffset": 604, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "07faab383cc11e0352c3ce67b73ed454", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 221.67177, - "y": 223.04999 - }, - "width": 22.373459, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Phaff, 2001 and ", - "textAfter": ", 2007) were", - "comments": [], - "startOffset": 857, - "endOffset": 861, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "40dd467dea535b052de8ae154f2f5376", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 185.46191, - "y": 58.50403 - }, - "width": 47.8869, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "new studies (", - "textAfter": " & Simmonds,", - "comments": [], - "startOffset": 2017, - "endOffset": 2025, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fdd4653ae5685dc38527cf92aa4d9d18", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 216.3003, - "y": 210.29999 - }, - "width": 28.533768, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(Clark, 1995 and ", - "textAfter": ", 1997) the", - "comments": [], - "startOffset": 923, - "endOffset": 929, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "57ec1c86df3f88d0ba0e5ca5845a3053", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 379.05972, - "y": 298.89 - }, - "width": 25.475677, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "several studies (", - "textAfter": ", 1995; Morgenroth,", - "comments": [], - "startOffset": 298, - "endOffset": 303, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1d6d1a4a085e0fc79bf85bee7f1b8084", - "type": "CBI_author", - "value": "Purdy J.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 468.18112, - "y": 412.43 - }, - "width": 36.968323, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 586, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "0.4 µg/l (", - "textAfter": ", 1994", - "comments": [], - "startOffset": 39, - "endOffset": 47, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3acbc340d0c96b3d7f91203a896ccc82", - "type": "CBI_author", - "value": "Kitschmann P", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 406.16943, - "y": 682.1 - }, - "width": 63.022675, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 583, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "4.5% (d28) (", - "textAfter": "., 1997", - "comments": [], - "startOffset": 169, - "endOffset": 181, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9230b19d924967792e5138325474899c", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 89.634735, - "y": 223.04999 - }, - "width": 27.231041, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "degradation studies (", - "textAfter": ", 1996, Phaff,", - "comments": [], - "startOffset": 828, - "endOffset": 833, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b6d2d14ab9db8555fa294dcda62fdacc", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 432.4006, - "y": 260.97003 - }, - "width": 48.019318, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "metabolism studies (Simmonds&", - "textAfter": " 2013 and", - "comments": [], - "startOffset": 605, - "endOffset": 613, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "06d0c24c299f2d8749a3fffbe2152fc5", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 286.28998 - }, - "width": 54.124466, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "1995; Morgenroth, 1997, ", - "textAfter": ", 1997, Keller,", - "comments": [], - "startOffset": 329, - "endOffset": 339, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "125806e8d44f7d8feb038c7d0c39dc57", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 141.1179, - "y": 210.29999 - }, - "width": 25.464645, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "two studies (", - "textAfter": ", 1995 and", - "comments": [], - "startOffset": 907, - "endOffset": 912, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e4794aee367bed061f81f50ca0b6b01f", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 158.25935, - "y": 286.28998 - }, - "width": 28.522736, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "1997, Kitschmann, 1997, ", - "textAfter": ", 1997). However,", - "comments": [], - "startOffset": 347, - "endOffset": 353, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "380b8faef3891c4373b3cf34c09a0053", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 247.35217, - "y": 58.50403 - }, - "width": 48.1297, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "studies (Simmonds & ", - "textAfter": ", 2013 &", - "comments": [], - "startOffset": 2028, - "endOffset": 2036, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c084db7daebf22102e2295fa7886d59e", - "type": "CBI_author", - "value": "Morgenroth", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 439.857, - "y": 298.89 - }, - "width": 53.52832, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "studies (Clark, 1995; ", - "textAfter": ", 1997, Kitschmann,", - "comments": [], - "startOffset": 311, - "endOffset": 321, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "dae6aa64ccf80f89e0526492f5afadc1", - "type": "CBI_author", - "value": "Hein W.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-2: Minor metabolites of S-metolachlor (not considered relevant for environmental risk assessment)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.55743, - "y": 450.95 - }, - "width": 38.29312, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 585, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "< 0.8% (", - "textAfter": ", 2007", - "comments": [], - "startOffset": 40, - "endOffset": 47, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0228cfd5b5380430fbb9da27e911c3c5", - "type": "CBI_author", - "value": "Phaff", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 148.93999, - "y": 223.04999 - }, - "width": 24.824326, - "height": 11.017679, - "page": 87 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "studies (Lucas, 1996, ", - "textAfter": ", 2001 and", - "comments": [], - "startOffset": 841, - "endOffset": 846, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a4e78e1b15d39a844d73e8561c6da6a4", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 334.6123, - "y": 695.78 - }, - "width": 43.77997, - "height": 11.017679, - "page": 88 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "studies (Kitschmann, 1997b; ", - "textAfter": ", 1997b) were", - "comments": [], - "startOffset": 2555, - "endOffset": 2562, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "50789d305df29abede187464aaec370b", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 365.86664, - "y": 683.18 - }, - "width": 40.048492, - "height": 11.017679, - "page": 88 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "2004 and 2005; ", - "textAfter": ", 2003; Nicollier&Glänzel,", - "comments": [], - "startOffset": 2658, - "endOffset": 2667, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "968594bf4eff7c9b6e4743fbac29c9e7", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 264.90582, - "y": 683.18 - }, - "width": 22.461761, - "height": 11.017679, - "page": 88 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "new studies (", - "textAfter": ", 2004 and", - "comments": [], - "startOffset": 2637, - "endOffset": 2641, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0d0714bbe70ddeb6a47af64d372423e8", - "type": "CBI_author", - "value": "Nicollier&Glänzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 439.6249, - "y": 683.18 - }, - "width": 83.20419, - "height": 11.017679, - "page": 88 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "2005; Nicollier, 2003; ", - "textAfter": ", 2003) were", - "comments": [], - "startOffset": 2675, - "endOffset": 2692, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f5421c845cc393aad15514195f71bd2c", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.1 Summary of fate and behaviour in soil", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 239.39233, - "y": 695.78 - }, - "width": 54.234863, - "height": 11.017679, - "page": 88 - } - ], - "sectionNumber": 589, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "degradation studies (", - "textAfter": ", 1997b; Mamouni,", - "comments": [], - "startOffset": 2536, - "endOffset": 2546, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8d51e77a1d51d6b9ca8ad2e5ee36066e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 88 - } - ], - "sectionNumber": 2447, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7257765389187100535b1692e9a502aa", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 89 - } - ], - "sectionNumber": 2448, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "086c9bcacbb7303ae83bffe622b9788b", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 101.70001 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 608, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 46, - "endOffset": 54, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f6c5627809251e43363661a173723f69", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 136.73999 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 607, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 41, - "endOffset": 49, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "994b6c1585f9f879945a1a94034a19bd", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 518.51 - }, - "width": 23.131134, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 591, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 58, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "df4e2137cc60604587b37661a11eb221", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 359.73 - }, - "width": 49.266296, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 598, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 76, - "endOffset": 86, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b6af73a624970a01648f935318d559d5", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 477.23 - }, - "width": 24.774567, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 593, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1996 [M", - "comments": [], - "startOffset": 38, - "endOffset": 43, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "54a26648ff03474739ae8715ce685a8f", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 241.77002 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 604, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 57, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1fa44f5bee92786be09d5761eb8882f9", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 453.71 - }, - "width": 24.774567, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 594, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1996 [M", - "comments": [], - "startOffset": 42, - "endOffset": 47, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8a6bd64198dc189d82aa9d5023112359", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 66.784 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 609, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " an", - "comments": [], - "startOffset": 48, - "endOffset": 56, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2882565f66130415edbc4bb4114c71c1", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 171.65997 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 606, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 56, - "endOffset": 64, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f45a2c5a2d15bc3c4b9a6d127d723fcb", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 2449, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a8f0937bc01ede130194ab5bc5953a8c", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 395.27 - }, - "width": 25.890076, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 596, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 45, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8bd5a4577d372f3a2d3ea5ce8102d118", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 424.55 - }, - "width": 24.774567, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 595, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1996 [M", - "comments": [], - "startOffset": 85, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "45bda80e80c5d9e03ae4c508d2406f85", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 195.18 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 605, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 55, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "48dce62e2d531a3b0c6b103790b6b349", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 90.18402 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 608, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 59, - "endOffset": 67, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "93fd1896d840476ebf6eb2ff0156e686", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 125.22003 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 607, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 54, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d3dd74116e2db67a4166472d84ea3511", - "type": "CBI_author", - "value": "Morgenroth", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 289.28998 - }, - "width": 48.66864, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 601, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 45, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c4666f0cdb4216beade177a6f01701a2", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 312.69 - }, - "width": 49.266296, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 600, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 66, - "endOffset": 76, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d2ec31f19d7e8602d7e22d2f1b169393", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 230.25 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 604, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 70, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d288785f8e834d1cdbb4c6f3e8c71782", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 383.25 - }, - "width": 25.890076, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 597, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1997 [M", - "comments": [], - "startOffset": 44, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "73909aee65b137156b186bc74e00729e", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 206.70001 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 605, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 42, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6ffd07f1e9bd7e08ad72f79440c9cb8a", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 336.21 - }, - "width": 49.266296, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 599, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 47, - "endOffset": 57, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8c13a4d5bd30af752155a648a25b31bd", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 500.75 - }, - "width": 23.131134, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 592, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1995 [M", - "comments": [], - "startOffset": 58, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fee419eb8624d93dfc472f001f74d8ea", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 253.77002 - }, - "width": 20.362274, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 603, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 40, - "endOffset": 44, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7600150ef14b5d15e0033b4a47ff5946", - "type": "CBI_author", - "value": "Phaff", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 265.76996 - }, - "width": 22.653046, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 602, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 50, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d79c53a412c05cfe8c4917d864d4a60a", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 125.22003 - }, - "width": 33.678764, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 607, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4c762590efe91f8b3ef821473a005ae8", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 160.26001 - }, - "width": 43.718445, - "height": 10.526819, - "page": 90 - } - ], - "sectionNumber": 606, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 69, - "endOffset": 77, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d6299365e68ce8f8bbe142b83700d02b", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 285.21002 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 622, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 98, - "endOffset": 106, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7db5d927eeb6878b4ef3d6f00cbaba05", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 671.54 - }, - "width": 43.763794, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 614, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 41, - "endOffset": 49, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ac0a9b0c1adb28d622456241559a725b", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 179.22003 - }, - "width": 24.774567, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 627, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 70, - "endOffset": 75, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8445550b20c05aed7134983ea6733cb8", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 331.77 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 621, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 71, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "529ec29f2128c6e9d1bddc0acb15636a", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 729.98 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 612, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 0, - "endOffset": 8, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2e6aac9c41c7030f2b8be8b94ff06442", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 695.06 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 613, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 71, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3bb1faeb2f3e2dddfb9664132ec7946c", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 155.70001 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 628, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 59, - "endOffset": 67, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0c96e4eff4a7da5873e21884475777b8", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 74.29056, - "y": 144.18 - }, - "width": 33.678764, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 628, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Silt loam (", - "textAfter": ")", - "comments": [], - "startOffset": 11, - "endOffset": 18, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6d9a60dbb2b67792bf2913c77f83e232", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 109.26001 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 629, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 60, - "endOffset": 68, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "250f8b8b43ae3640264ad851ac5ed01b", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 74.29056, - "y": 97.74402 - }, - "width": 33.678764, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 629, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Sandy loam (", - "textAfter": ")", - "comments": [], - "startOffset": 12, - "endOffset": 19, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8c3be5fcbb029781e282fc94d5b905c9", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 660.02 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 614, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 54, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "777eb1db49e631ca98e1dd8822a90b3f", - "type": "CBI_author", - "value": "Phaff", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 389.73 - }, - "width": 22.653046, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 620, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 86, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d235a0c552c6eb3be9d631a1d1664259", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 308.25 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 622, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 85, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fb47d26b3ba155d1ae277676eafdf7fc", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 354.69 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 621, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 58, - "endOffset": 66, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c64699700e916ea883b20e91ffb5c11f", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 132.65997 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 628, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 72, - "endOffset": 80, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2c6daf283325c220bc425ea3dcb97cbc", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 249.69 - }, - "width": 23.131134, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 624, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 86, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3216f191ae44bc67fe4db8c4d11d3776", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 2450, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f531dfc1cde5916d7273f24399e40d0a", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 86.224 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 629, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 73, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0b2cefa5e772a60d630fd0e24810ac27", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 139.65805, - "y": 62.70398 - }, - "width": 33.678757, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 630, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Geometric mean ", - "textAfter": " (n=2)", - "comments": [], - "startOffset": 15, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c8523bef71e27232989c90a8c4a7ea8e", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 463.3, - "y": 706.46 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 613, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 58, - "endOffset": 66, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ccd598583aa8333cde8a5b32b14c7489", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-3: Selection of S-metolachlor trigger endpoint DT50 values", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 660.02 - }, - "width": 33.678764, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 614, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2a4cc37b0729f2116f6e222dd4aeec35", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 598.22 - }, - "width": 43.718445, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 636, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 87, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7b4098d5f8aa76f5382eea9f99c592a8", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 469.79 - }, - "width": 24.774567, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 640, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 94, - "endOffset": 99, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "50ee9001aad33a140ef750a2d2b66675", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 376.17 - }, - "width": 49.266235, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 643, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 83, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "26ffc739b708aa55b5230961b355ef05", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 621.74 - }, - "width": 43.718445, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 635, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 96, - "endOffset": 104, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "13d4e6c7ed99af5e137b0100b40a9425", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 317.73004 - }, - "width": 49.266235, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 645, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 77, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3ee098ad1b3966af1a4791f4381308a7", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 411.23 - }, - "width": 20.362274, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 642, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 70, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2c33fb37e1a1372b708793b664fcab23", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 504.71 - }, - "width": 49.266235, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 639, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 100, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6212a84901442f379cd149cd801355a4", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 703.22 - }, - "width": 25.890076, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 633, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 75, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2c1a3828d47f225f803481c57fcf9bb3", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 575.3 - }, - "width": 43.718445, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 636, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 100, - "endOffset": 108, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2cae93fc40cb412b94ac7cc813b16a38", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 2451, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5aeaca8c4e5343a7af487dbdaae34086", - "type": "CBI_author", - "value": "Morgenroth", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 551.75 - }, - "width": 48.66858, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 637, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 75, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "aad2d191e51c331897c79d502a820003", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 644.78 - }, - "width": 43.718445, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 635, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 83, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "537acbaeb899a5e4ca0ca159a8c11c39", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 341.25 - }, - "width": 24.774567, - "height": 10.526819, - "page": 92 - } - ], - "sectionNumber": 644, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 66, - "endOffset": 71, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1bed650183d72419ba221cdfa3b5222a", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 108.77997 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 667, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 74, - "endOffset": 82, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a939d74fb402c4caa54e1a4979e9592c", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 155.34003 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 666, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 73, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c5b4618bf7ce88df6a33502627066d84", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 353.85 - }, - "width": 24.774567, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 660, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 85, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1fdf7131504b39b2bfa0f87a9fb3d2e3", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 2452, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5e4c5b45e47981c3f1849a4733534af5", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 190.26001 - }, - "width": 25.890076, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 665, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 81, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5624bad3e56fd9eafb7df2ab5a08894f", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 85.86401 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 667, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 87, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "57a1e9939ac40e5bc6b31e8988526c20", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 132.29999 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 666, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 86, - "endOffset": 94, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b7a8f906168beea64c621b9b13f05461", - "type": "CBI_author", - "value": "Phaff", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 494.39 - }, - "width": 22.653046, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 655, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 89, - "endOffset": 94, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "810ad1446758a18a84d318801769f2ae", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 140.72377, - "y": 202.26001 - }, - "width": 33.678757, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 664, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Arithmetic mean ", - "textAfter": " (n=2)", - "comments": [], - "startOffset": 16, - "endOffset": 23, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "023fac96863cac9d86a86300f5b7b493", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 139.65805, - "y": 214.26001 - }, - "width": 33.678757, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 663, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Geometric mean ", - "textAfter": " (n=2)", - "comments": [], - "startOffset": 15, - "endOffset": 22, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6757119e99fec05985b4f60303abdd10", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 447.83 - }, - "width": 23.131134, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 656, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 85, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "52f12bd8aa4c7f6841e19994d7a2bd84", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 236.25 - }, - "width": 49.266235, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 684, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 84, - "endOffset": 94, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e164e5fd8dd356714696e3b401d16a4e", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 527.75 - }, - "width": 49.266235, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 676, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 105, - "endOffset": 115, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "99fc6231bfcbbf6b718c5766e4fff066", - "type": "CBI_author", - "value": "Glänzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 691.7 - }, - "width": 31.965698, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 670, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Nicollier and ", - "textAfter": ", 200", - "comments": [], - "startOffset": 80, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9a4e729cb68c016cf0ea69f01e70e774", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 2453, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ba4ea9cecfc5572c850e119d9072d0cd", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 341.25 - }, - "width": 20.362274, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 681, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 72, - "endOffset": 76, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0eddaa06aec522a66beebdbb04f587f2", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 96.18402 - }, - "width": 49.266235, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 688, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 78, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1bd78603eb12ea18d647183ba355eeb5", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 633.26 - }, - "width": 43.718445, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 672, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 83, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4dcbcc8f0be4da4c8d3fa499d2a308be", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 703.22 - }, - "width": 36.4776, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 670, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Glänzel,", - "comments": [], - "startOffset": 66, - "endOffset": 75, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a83cfa9634f901b24eee845c1f9edcd8", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 387.69 - }, - "width": 20.362274, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 680, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 87, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c0f297f6607660832fd7f57b080ca432", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 668.3 - }, - "width": 39.734497, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 671, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 74, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "18c84a8cac3abd7d9cd412b6a10d5a94", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 142.73999 - }, - "width": 24.774567, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 687, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 81, - "endOffset": 86, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2d87a333e0f19f49ac30dba396aa4190", - "type": "CBI_author", - "value": "Morgenroth", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 586.82 - }, - "width": 48.66858, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 673, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 78, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9361a1d7382decf911f0b56c37705b2d", - "type": "CBI_author", - "value": "Glänzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 178.26001 - }, - "width": 31.965698, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 685, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Nicollier and ", - "textAfter": ", 200", - "comments": [], - "startOffset": 79, - "endOffset": 86, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2ec1e5e399f5be89ec5555dff3a4b404", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 189.65997 - }, - "width": 36.4776, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 685, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Glänzel,", - "comments": [], - "startOffset": 65, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "740d74dc7a2ec65d26f01a3fefa61c2d", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 481.19 - }, - "width": 24.774567, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 677, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 104, - "endOffset": 109, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6709a41c0a5785fdca60a6bf6d28781e", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 703.22 - }, - "width": 36.4776, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 691, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Glänzel,", - "comments": [], - "startOffset": 61, - "endOffset": 70, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "12522c24957aaac245163709503e566b", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 127.02002 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 711, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 76, - "endOffset": 84, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6f8f5e2cc3f527f098da0982a431caf2", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 208.5 - }, - "width": 24.774567, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 709, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 86, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e27a29935fd14b469ef1411737643d4e", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 74.30398, - "y": 115.5 - }, - "width": 33.677704, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 711, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Sandy loam (", - "textAfter": ")", - "comments": [], - "startOffset": 12, - "endOffset": 19, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c861431917176f5cb1ee304dd0b71ab5", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 279.45 - }, - "width": 23.131134, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 705, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 86, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1f17a3a09bc88a0d06607176e457022e", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 302.97003 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 704, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 74, - "endOffset": 82, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8c84c71367a0e3ac4482dbc61f450d6a", - "type": "CBI_author", - "value": "Phaff", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 349.53 - }, - "width": 22.653046, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 703, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 80, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5a7e90e4ada88a215c83ec372b4f39e4", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 103.97998 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 711, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 89, - "endOffset": 97, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "32501645fd50bb7428b431570ba37298", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 326.01 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 704, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 61, - "endOffset": 69, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3e0112d30c690cd0044acb3f649704e2", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 2454, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ad08480419914a10d338b0f1ef037590", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 139.1, - "y": 519.47 - }, - "width": 29.864075, - "height": 10.44714, - "page": 95 - } - ], - "sectionNumber": 698, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 10, - "endOffset": 16, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d4442ff925783676d3df5f47d026cd51", - "type": "CBI_author", - "value": "Glänzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 691.7 - }, - "width": 31.965698, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 691, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Nicollier and ", - "textAfter": ", 200", - "comments": [], - "startOffset": 75, - "endOffset": 82, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3cbaeb1fa3659ecb2ae331d90b26ab77", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 152.70001 - }, - "width": 36.4776, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 736, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 69, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "eeca6648109fefc65ec8134ee20abd25", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 139.1, - "y": 756.28 - }, - "width": 29.864075, - "height": 10.44714, - "page": 96 - } - ], - "sectionNumber": 715, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 10, - "endOffset": 16, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "61d6a500ffa06719f3733e8c853e18b4", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 340.77 - }, - "width": 20.362274, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 728, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 83, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8f8f07061041d92952ffe6b36c778a21", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 540.23 - }, - "width": 49.266235, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 720, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1997", - "comments": [], - "startOffset": 79, - "endOffset": 89, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b1feaf25c2096106d56958f41d6e39d7", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 575.3 - }, - "width": 49.266235, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 719, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1997", - "comments": [], - "startOffset": 78, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d95295b46c2849ae0580cb55c6c412c8", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 645.26 - }, - "width": 43.718445, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 717, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 83, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ba99f286829aad5a127e15c68e2f2267", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 211.26001 - }, - "width": 24.774567, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 734, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 82, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fd524bb3a96358c26763c9852eb5a6b7", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 598.82 - }, - "width": 43.718445, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 718, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 84, - "endOffset": 92, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c0c43cdcc8fbcd64e07847687411616f", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 176.22003 - }, - "width": 49.266235, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 735, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 80, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "30cc6d2fedb886b1903387ad358ffbfb", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 422.75 - }, - "width": 24.774567, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 725, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 95, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "177f0e41bf7b40cfa35103a3b3aab80c", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 505.19 - }, - "width": 36.4776, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 721, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 69, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bb203ccbbc5d2615d35ef4aca2535209", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 2455, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "09cecd25376f4d6f2354b19dbe2755e8", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 621.74 - }, - "width": 43.718445, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 718, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 71, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b9de557560b84b5ce6c7bf7dd1c480e3", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 668.3 - }, - "width": 43.718445, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 717, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 70, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "952fb0e937d1cb378959d6eddc1c6ab6", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 246.69 - }, - "width": 36.4776, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 732, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 200", - "comments": [], - "startOffset": 74, - "endOffset": 83, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1d6d2a5c1a51d2fffe0567dd5253b29d", - "type": "CBI_author", - "value": "Keller", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 703.22 - }, - "width": 25.890076, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 716, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 84, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2aef261a93180309a2d21e975563949b", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 270.21002 - }, - "width": 49.266235, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 731, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 85, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6b11f9c5ce8877d30914b6d2b787e4ed", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 457.79 - }, - "width": 49.266235, - "height": 10.526819, - "page": 96 - } - ], - "sectionNumber": 724, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 100, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "35a6ca80c500e1991444763be055503a", - "type": "CBI_author", - "value": "Gl änzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 513.4367, - "y": 546.71 - }, - "width": 10.959961, - "height": 10.526819, - "page": 97 - }, - { - "topLeft": { - "x": 470.26, - "y": 535.19 - }, - "width": 22.005676, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 749, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Nicollier&", - "textAfter": ", 200", - "comments": [], - "startOffset": 80, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "60b8d31417a3aea577d036986fd52294", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 570.23 - }, - "width": 36.4776, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 748, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "&Gl änzel, 200", - "comments": [], - "startOffset": 76, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c368b7c3d07fca3f3fa3a206cd52994a", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 546.71 - }, - "width": 36.4776, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 749, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "&Gl änzel, 200", - "comments": [], - "startOffset": 70, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a183485907c1127463b5eabe498538b0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 2456, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "be32c4c0872f08cf383c02b2a8e74594", - "type": "CBI_author", - "value": "Gl änzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 513.4367, - "y": 617.78 - }, - "width": 10.959961, - "height": 10.526819, - "page": 97 - }, - { - "topLeft": { - "x": 470.26, - "y": 606.26 - }, - "width": 22.005676, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 745, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Nicollier&", - "textAfter": ", 200", - "comments": [], - "startOffset": 85, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4347a57d953c7556dbc2100e1ec0e2d4", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 641.3 - }, - "width": 39.734497, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 744, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 78, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e673586e57cdc112f778b5ef67c3267f", - "type": "CBI_author", - "value": "Gl änzel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 513.4367, - "y": 570.23 - }, - "width": 10.959961, - "height": 10.526819, - "page": 97 - }, - { - "topLeft": { - "x": 470.26, - "y": 558.71 - }, - "width": 22.005676, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 748, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Nicollier&", - "textAfter": ", 200", - "comments": [], - "startOffset": 86, - "endOffset": 94, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "dd9f106eca3deca004ae89bec05cf0d0", - "type": "CBI_author", - "value": "Nicollier", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-7: Summary of DT50 modelling endpoints for the metabolite CGA368208", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 617.78 - }, - "width": 36.4776, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 745, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "&Gl änzel, 200", - "comments": [], - "startOffset": 75, - "endOffset": 84, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "47018a0184b7bb619b377318db24d65b", - "type": "CBI_author", - "value": "Roohi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-8: Summary of DT50 modelling endpoints for the metabolite CGA37735", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 336.33 - }, - "width": 25.352264, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 755, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 76, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f26ce58bfaff1194767563d8b5496fa8", - "type": "CBI_author", - "value": "Lucas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 506.39 - }, - "width": 24.774567, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 769, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 88, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7da017c59a8a4691ac2b8f6e4434ed9e", - "type": "CBI_author", - "value": "Roohi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 401.39 - }, - "width": 25.352264, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 772, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 86, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "598a75a72eb199fb075bf9cae6410e0b", - "type": "CBI_author", - "value": "Clark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-9: DT50 modelling endpoint for the metabolite CGA40172", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 684.62 - }, - "width": 23.131134, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 763, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 72, - "endOffset": 77, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "aee4789ba8c455f7c61540f2cf9b5627", - "type": "CBI_author", - "value": "Luca", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 471.35 - }, - "width": 20.87024, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 770, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 83, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "63374975b9e22a725f49e3b0fb047b0b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 2457, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5ec6d122f2b7373f3b6c3fbcbbdecb59", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 703.22 - }, - "width": 43.718445, - "height": 10.526819, - "page": 99 - } - ], - "sectionNumber": 784, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "& Simmonds, 201", - "comments": [], - "startOffset": 70, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "393e0f07a2af0bba30d440a55200ee69", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-12: Summary of DT50 modelling endpoints for the metabolite CGA41507", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 399.83 - }, - "width": 43.77997, - "height": 11.017679, - "page": 99 - } - ], - "sectionNumber": 794, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1997", - "comments": [], - "startOffset": 77, - "endOffset": 84, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a154d7a9910fcb5c0f92eca6d28570f0", - "type": "CBI_author", - "value": "Hein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 621.26 - }, - "width": 20.362274, - "height": 10.526819, - "page": 99 - } - ], - "sectionNumber": 787, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ",200", - "comments": [], - "startOffset": 81, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "eff459590acd1ca3815ecd53a230eb69", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 668.3 - }, - "width": 43.718445, - "height": 10.526819, - "page": 99 - } - ], - "sectionNumber": 785, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 81, - "endOffset": 89, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "89b4a6e30ed1b3cc65b9025f18768de0", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 691.7 - }, - "width": 43.718445, - "height": 10.526819, - "page": 99 - } - ], - "sectionNumber": 784, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds& ", - "textAfter": ", 201", - "comments": [], - "startOffset": 80, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6ab70823c968fbbf3c92073bba579401", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 99 - } - ], - "sectionNumber": 2458, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 42, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "deda66059440e7e36e136a5aa9bbce0b", - "type": "CBI_author", - "value": "Merritt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 442.42, - "y": 622.46 - }, - "width": 29.306335, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 798, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 73, - "endOffset": 80, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "403e924a6845b9f3ed5d4833378ed3d5", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 442.42, - "y": 540.95 - }, - "width": 43.718445, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 800, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 101, - "endOffset": 109, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9a1b383f76fd08d701658eb84d5a4b9f", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 104.8578, - "y": 540.95 - }, - "width": 38.110962, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 800, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Borstel, ", - "textAfter": ", loamy sand,", - "comments": [], - "startOffset": 9, - "endOffset": 16, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f7cce036e30ce63688587f5e0ef57d69", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 171.89, - "y": 59.583984 - }, - "width": 38.110962, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 812, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Herxheimweyhe r, ", - "textAfter": null, - "comments": [], - "startOffset": 35, - "endOffset": 42, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "78453ee7183b43077403c6b212e22525", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 224.13 - }, - "width": 38.12091, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 805, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Uhrsleben, ", - "textAfter": null, - "comments": [], - "startOffset": 28, - "endOffset": 35, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f59fbbbb3841cb1b36ccbc495d36e7ea", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 106.619995 - }, - "width": 28.07129, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 810, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 26, - "endOffset": 32, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e3e9d66179b6f5fd3e3c34f649614a4d", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 100.46, - "y": 291.33002 - }, - "width": 29.864082, - "height": 10.44714, - "page": 100 - } - ], - "sectionNumber": 803, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "337a0a92ca923b65ff0ca1620f1aa035", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 2459, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7c8d62701d0dbed9ed7a58e5d6c7e9b3", - "type": "recommendation_CBI_author", - "value": "Dark", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 349.51, - "y": 651.74 - }, - "width": 23.190887, - "height": 10.44714, - "page": 100 - } - ], - "sectionNumber": 797, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " control DegT50/90", - "comments": [], - "startOffset": 33, - "endOffset": 37, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "67c1d9752cb88fb9c2afd5a5f922b770", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-13: Photodegradation of S-metolachlor/metolachlor in irradiated and dark\ncontrol soils", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 104.8578, - "y": 505.91 - }, - "width": 38.110962, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 801, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Borstel, ", - "textAfter": ", loamy sand,", - "comments": [], - "startOffset": 9, - "endOffset": 16, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b337d49ddbf8e1f30664f30ecdb1e057", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 548.51 - }, - "width": 38.12091, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 821, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Meißner Vockerode, ", - "textAfter": null, - "comments": [], - "startOffset": 38, - "endOffset": 45, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5ecfe53023c632f742f45d072f92affc", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 173.45, - "y": 583.46 - }, - "width": 38.230484, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 820, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Goch/Niederrhei n, ", - "textAfter": null, - "comments": [], - "startOffset": 37, - "endOffset": 44, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "74e758ce96baf5367fd69de5310c53fd", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 478.55 - }, - "width": 38.12091, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 823, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Pleidelsheim Württemberg, ", - "textAfter": null, - "comments": [], - "startOffset": 44, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2c1ba9458a1e043060c2e349432b540a", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 513.47 - }, - "width": 38.12091, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 822, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "OldenburgAltratjensdorf, ", - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "48a3725422946416e1fbb31cf20ae60c", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 665.54 - }, - "width": 38.12091, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 817, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Riepsdorf, ", - "textAfter": null, - "comments": [], - "startOffset": 29, - "endOffset": 36, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "09e17a068313f93bebfac8b5f2c1e9d3", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 419.99 - }, - "width": 38.12091, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 825, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Höperhöfen, ", - "textAfter": null, - "comments": [], - "startOffset": 30, - "endOffset": 37, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3edc81174a1cf4bca9838df61dd8d2f8", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 177.89, - "y": 443.51 - }, - "width": 38.230484, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 824, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "RheinauMemprechtshof en, ", - "textAfter": null, - "comments": [], - "startOffset": 48, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6eed735a610bf5dde1c666c5d60fcf34", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 2460, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2c3558235d1e789c9fb49bec683e429b", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 689.06 - }, - "width": 38.12091, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 816, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Wuhnitz, ", - "textAfter": null, - "comments": [], - "startOffset": 27, - "endOffset": 34, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca04314d6fa984be6f7164de91171801", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 100.46, - "y": 756.28 - }, - "width": 29.864082, - "height": 10.44714, - "page": 101 - } - ], - "sectionNumber": 814, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7b05771f2046e21baed3b63ff2519ffa", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 102 - } - ], - "sectionNumber": 2461, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e1d680a8787251e73c5d7a6ccd390187", - "type": "CBI_author", - "value": "Ellgehausen, H.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.86, - "y": 92.94403 - }, - "width": 64.39554, - "height": 10.526819, - "page": 102 - } - ], - "sectionNumber": 847, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1997", - "comments": [], - "startOffset": 47, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0ebe7bdba1acdc771fcf6b0e3ef1d976", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-15 DT50 values at 12 °C S-metolachlor for assessment of the P-criterion (POP,\nPBT, vPvB)", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 76.584, - "y": 596.9 - }, - "width": 33.678764, - "height": 10.526819, - "page": 102 - } - ], - "sectionNumber": 833, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (geometric mean,", - "comments": [], - "startOffset": 0, - "endOffset": 7, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "273166c8fdb9049309b8f4709115cc53", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 74.064, - "y": 200.34003 - }, - "width": 29.864082, - "height": 10.44714, - "page": 102 - } - ], - "sectionNumber": 842, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6d0440aea7d14b244b1ffc41aa70e5df", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 74.064, - "y": 756.28 - }, - "width": 29.864082, - "height": 10.44714, - "page": 103 - } - ], - "sectionNumber": 851, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2cc159e824c96eb2465869f99939df47", - "type": "CBI_author", - "value": "Hein, W.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.86, - "y": 632.9 - }, - "width": 37.30426, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 858, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 63, - "endOffset": 71, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "180b19e4ea368e9bfbdf55b6e49835b5", - "type": "CBI_author", - "value": "Nicollier, G.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.86, - "y": 656.42 - }, - "width": 51.198486, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 857, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2000", - "comments": [], - "startOffset": 54, - "endOffset": 67, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cc89b3ddad43006d6d7b02a4c3bfadb9", - "type": "CBI_author", - "value": "Glänzel, A.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.86, - "y": 682.7 - }, - "width": 46.676605, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 855, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1999", - "comments": [], - "startOffset": 55, - "endOffset": 66, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0b2ea56fc21a0e4fc7d41bb738400f9f", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-18: Freundlich adsorption coefficients and exponents of CGA41507", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 234.81 - }, - "width": 39.734497, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 874, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", A.and Voelkel,", - "comments": [], - "startOffset": 54, - "endOffset": 61, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "17ac702fdf044791a5fdb5f2860a2d5f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 2462, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "33888a53d12e52cc1022f5d4db587f59", - "type": "CBI_author", - "value": "Voelkel, W", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-18: Freundlich adsorption coefficients and exponents of CGA41507", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 223.28998 - }, - "width": 46.990967, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 874, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Mamouni, A.and ", - "textAfter": ". (1997", - "comments": [], - "startOffset": 69, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1013d0dddd17eac11ee7b0eee7b40056", - "type": "CBI_author", - "value": "Mamouni, A.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-17: Freundlich adsorption coefficients and expone.nts of CG40172", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 438.11 - }, - "width": 54.445404, - "height": 10.526819, - "page": 103 - } - ], - "sectionNumber": 865, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995b", - "comments": [], - "startOffset": 51, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a923252e299c221d413c4641501686e4", - "type": "CBI_author", - "value": "Mamouni, A.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-19: Freundlich adsorption coefficients and exponents of CGA51202", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 633.14 - }, - "width": 54.445404, - "height": 10.526819, - "page": 104 - } - ], - "sectionNumber": 887, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995a", - "comments": [], - "startOffset": 47, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8f27aa0683a79fa7bae89be4eb679282", - "type": "CBI_author", - "value": "Voelkel, W", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-21: Freundlich adsorption coefficients and exponents of CGA357704", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 167.94 - }, - "width": 46.975403, - "height": 10.526819, - "page": 104 - } - ], - "sectionNumber": 909, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ". (1997", - "comments": [], - "startOffset": 42, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9bdf720d557eb73fb159b9b29858e78f", - "type": "CBI_author", - "value": "Spare, W.C.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-20: Freundlich adsorption coefficients and exponents of CGA376944", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 378.21 - }, - "width": 49.87372, - "height": 10.526819, - "page": 104 - } - ], - "sectionNumber": 899, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1997", - "comments": [], - "startOffset": 50, - "endOffset": 61, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca90087e0b7e1e3befeb15229d6433a8", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 104 - } - ], - "sectionNumber": 2463, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2df7178bcd3fab8b102b726b4ef0c625", - "type": "CBI_author", - "value": "Ulbrich, R.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-20: Freundlich adsorption coefficients and exponents of CGA376944", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 415.19 - }, - "width": 45.581207, - "height": 10.526819, - "page": 104 - } - ], - "sectionNumber": 896, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1997", - "comments": [], - "startOffset": 41, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "62be855cf9ec640c905179c4ccd5e5bd", - "type": "CBI_author", - "value": "Burgess, M", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-23: Freundlich adsorption coefficients and exponents of CGA37735", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 456.23 - }, - "width": 47.00528, - "height": 10.526819, - "page": 105 - } - ], - "sectionNumber": 929, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ". and Simmonds,", - "comments": [], - "startOffset": 51, - "endOffset": 61, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3d7ac8429c2cbf6ee5869a19dbf390c9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 105 - } - ], - "sectionNumber": 2464, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "635893a4e82b3a2aab9b589dc3bcf708", - "type": "CBI_author", - "value": "Simmonds, M.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-22: Freundlich adsorption coefficients and exponents of SYN546829", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 690.38 - }, - "width": 60.052826, - "height": 10.526819, - "page": 105 - } - ], - "sectionNumber": 918, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 52, - "endOffset": 64, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "05905a1c52a80bc62eb5ad5ab5a4c4e8", - "type": "CBI_author", - "value": "Simmonds, M.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-24: Freundlich adsorption coefficients and exponents of SYN542607", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 235.64996 - }, - "width": 60.052826, - "height": 10.526819, - "page": 105 - } - ], - "sectionNumber": 940, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 50, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cec4d1d3961fd3c753d262e6383865e4", - "type": "CBI_author", - "value": "Simmonds, M.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-23: Freundlich adsorption coefficients and exponents of CGA37735", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 444.83 - }, - "width": 60.052826, - "height": 10.526819, - "page": 105 - } - ], - "sectionNumber": 929, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 67, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "eb6bbe3de0478911dc7d4004248ce94b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 106 - } - ], - "sectionNumber": 2465, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a5079fce85cd693865651fac0a78a181", - "type": "CBI_author", - "value": "MüllerKallert", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-27: Distribution of the radioactivity in leachate of aged soil column leaching\nstudies with S-metolachlor (% applied radioactivity)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 474.94, - "y": 107.82001 - }, - "width": 31.57669, - "height": 10.526819, - "page": 106 - }, - { - "topLeft": { - "x": 474.94, - "y": 96.304016 - }, - "width": 28.71872, - "height": 10.526819, - "page": 106 - } - ], - "sectionNumber": 968, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 47, - "endOffset": 60, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "11170759bfeb4deab84855d54a5da866", - "type": "CBI_author", - "value": "Plücken", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-26: Study conditions of aged column leaching studies with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 468.46, - "y": 319.64996 - }, - "width": 33.071228, - "height": 10.526819, - "page": 106 - } - ], - "sectionNumber": 961, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 57, - "endOffset": 64, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "248f6441a520b972dd1bfaa0fa10a645", - "type": "CBI_author", - "value": "MüllerKallert", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-26: Study conditions of aged column leaching studies with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 468.46, - "y": 366.57 - }, - "width": 31.57669, - "height": 10.526819, - "page": 106 - }, - { - "topLeft": { - "x": 468.46, - "y": 355.17 - }, - "width": 28.71872, - "height": 10.526819, - "page": 106 - } - ], - "sectionNumber": 959, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 55, - "endOffset": 68, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ff34a5ff2f88b530b8f20a928ed6d51d", - "type": "CBI_author", - "value": "Plücken", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-27: Distribution of the radioactivity in leachate of aged soil column leaching\nstudies with S-metolachlor (% applied radioactivity)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 474.94, - "y": 729.98 - }, - "width": 33.071228, - "height": 10.526819, - "page": 107 - } - ], - "sectionNumber": 972, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 56, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fa3ea2fb060d0c702f9f6e2f36e309c1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 107 - } - ], - "sectionNumber": 2466, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "230ab216cc1706e164de60a80f560048", - "type": "published_information", - "value": "Mass Spectrometry", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Lysimeter studies", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 472.27002, - "y": 513.35 - }, - "width": 53.566284, - "height": 11.017679, - "page": 108 - }, - { - "topLeft": { - "x": 70.944, - "y": 500.63 - }, - "width": 38.99968, - "height": 11.017679, - "page": 108 - } - ], - "sectionNumber": 1017, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3838, - "endOffset": 3855, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a4d196958e8eef557b2f7a8e2fdc94fe", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 108 - } - ], - "sectionNumber": 2467, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "da47e4d832722eb63c3fc0243edf6cab", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 109 - } - ], - "sectionNumber": 2468, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b0e06ce555da0c4da4fb78f1770c84d", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Lysimeter studies", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 434.9182, - "y": 578.3 - }, - "width": 12.367004, - "height": 10.0905, - "page": 109 - } - ], - "sectionNumber": 1017, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 5151, - "endOffset": 5154, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "192131c63e5331c44d418b419a908ace", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 110 - } - ], - "sectionNumber": 2469, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f442a2b51b069e7d7fb84acbb4171fed", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Field leaching studies", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 114.53998 - }, - "width": 25.000961, - "height": 10.929359, - "page": 111 - } - ], - "sectionNumber": 1018, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 5, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "116336cf052f0e6d279cfca90fdcc423", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 111 - } - ], - "sectionNumber": 2470, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9ddb6a01650e083c44ee02ef1fe472a9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 112 - } - ], - "sectionNumber": 2471, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "847555f31c3a583fcc0df010d5e066f4", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Field leaching studies", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 187.5264, - "y": 708.5 - }, - "width": 41.89218, - "height": 11.017679, - "page": 112 - } - ], - "sectionNumber": 1018, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "conducted in Lorsch, ", - "textAfter": " at a", - "comments": [], - "startOffset": 549, - "endOffset": 556, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3ce7fb1248ef1bb2a37564381e1c45df", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Field leaching studies", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 240.25348, - "y": 733.7 - }, - "width": 21.26944, - "height": 11.017679, - "page": 112 - } - ], - "sectionNumber": 1018, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 361, - "endOffset": 364, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3b97224569ac1b0b828f2e78757e7006", - "type": "hint_only", - "value": "test site", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Field leaching studies", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 257.92853, - "y": 500.03 - }, - "width": 34.89279, - "height": 11.017679, - "page": 112 - } - ], - "sectionNumber": 1018, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2132, - "endOffset": 2141, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9afc238389743a4d07b603fa227a4ddc", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 113 - } - ], - "sectionNumber": 2472, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "dcadaf01ec13f022610b87a974b05830", - "type": "CBI_author", - "value": "Cline", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.2 Summary of fate and behaviour in water and sediment", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 382.5724, - "y": 173.22003 - }, - "width": 24.857422, - "height": 11.017679, - "page": 114 - } - ], - "sectionNumber": 1040, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "according Zepp and ", - "textAfter": " (1977) at", - "comments": [], - "startOffset": 1429, - "endOffset": 1434, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a1fdf951c70dda87577709fe59617947", - "type": "hint_only", - "value": "latitude", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.2 Summary of fate and behaviour in water and sediment", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 453.58, - "y": 173.22003 - }, - "width": 34.086853, - "height": 11.017679, - "page": 114 - } - ], - "sectionNumber": 1040, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1445, - "endOffset": 1453, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d80424c6f47f38c45777c693f4ebc6cc", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 114 - } - ], - "sectionNumber": 2473, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ca98d0d12508b2d0f325f69aaa4a0c0b", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Groundwater monitoring studies", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.44434, - "y": 633.14 - }, - "width": 14.987701, - "height": 11.017679, - "page": 114 - } - ], - "sectionNumber": 1019, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4276, - "endOffset": 4279, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ae61dc71afd477e7db6a5d9442b9416f", - "type": "CBI_author", - "value": "Zepp", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.8.2 Summary of fate and behaviour in water and sediment", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 337.474, - "y": 173.22003 - }, - "width": 23.54367, - "height": 11.017679, - "page": 114 - } - ], - "sectionNumber": 1040, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "program GC-SOLAR according ", - "textAfter": " and Cline", - "comments": [], - "startOffset": 1420, - "endOffset": 1424, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9d31a7ecb0804086f271dfd4a645332b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 115 - } - ], - "sectionNumber": 2474, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "689e4c77eb025f7c6c2109d39b357c6a", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-30: Degradation in water/sediment systems", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 72.744, - "y": 494.99 - }, - "width": 29.888794, - "height": 10.44714, - "page": 115 - } - ], - "sectionNumber": 1020, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "23653dc5c36d7c29a50836302e348027", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 116 - } - ], - "sectionNumber": 2475, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "dc27d04106a36671fb415b03f1531902", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 221.40884, - "y": 532.31 - }, - "width": 39.854004, - "height": 10.526819, - "page": 116 - } - ], - "sectionNumber": 1031, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "silt loam (study ", - "textAfter": ")", - "comments": [], - "startOffset": 36, - "endOffset": 43, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "830d8e2088f00b7777afaca834193520", - "type": "CBI_author", - "value": "Seyfried", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 210.09863, - "y": 517.55 - }, - "width": 34.864, - "height": 10.526819, - "page": 116 - } - ], - "sectionNumber": 1032, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "sandy loam (study ", - "textAfter": ")", - "comments": [], - "startOffset": 33, - "endOffset": 41, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0f3e03a1dd4421ed21d0e80fb57d949e", - "type": "false_positive", - "value": "Henry's", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.3 Summary of fate and behaviour in air", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 99.00768, - "y": 242.85004 - }, - "width": 34.561592, - "height": 11.017679, - "page": 116 - } - ], - "sectionNumber": 1041, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 149, - "endOffset": 156, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "49b9ea5c20975f18cf6fa7168ae41f29", - "type": "false_positive", - "value": "Law", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.3 Summary of fate and behaviour in air", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 136.17935, - "y": 242.85004 - }, - "width": 20.618088, - "height": 11.017679, - "page": 116 - } - ], - "sectionNumber": 1041, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 157, - "endOffset": 160, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1acf5ae8ffdac668c1384ef977337026", - "type": "CBI_author", - "value": "Mamouni", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 210.09863, - "y": 546.95 - }, - "width": 39.853973, - "height": 10.526819, - "page": 116 - } - ], - "sectionNumber": 1030, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "sandy loam (study ", - "textAfter": ")", - "comments": [], - "startOffset": 33, - "endOffset": 40, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fb5143631cfab5ea38d952ed8d9b902d", - "type": "CBI_author", - "value": "Seyfried", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-31 DT50 values at 12 °C of S-metolachlor for the assessment of the P-criterion\n(POP, PBT, vPvB)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 221.36339, - "y": 502.91 - }, - "width": 34.74446, - "height": 10.526819, - "page": 116 - } - ], - "sectionNumber": 1033, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "silt loam (study ", - "textAfter": ")", - "comments": [], - "startOffset": 36, - "endOffset": 44, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bb486a8851784e259c27d98014589e6d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 117 - } - ], - "sectionNumber": 2476, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1b552b5eeab7519b1843e0f550c9ca3c", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active\nsubstance, metabolites, degradation and reaction products", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 274.44434, - "y": 588.62 - }, - "width": 14.987701, - "height": 11.017679, - "page": 118 - } - ], - "sectionNumber": 1042, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 5698, - "endOffset": 5701, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b7bddcd542498daf58d75641eb01ab5a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 118 - } - ], - "sectionNumber": 2477, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "525571c951f734f5c8e73e372bf34d50", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 119 - } - ], - "sectionNumber": 2478, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ec08773c6bd3290f0aca06a51d99d721", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.8.6 Summary of exposure calculations and product assessment", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 285.40707, - "y": 600.86 - }, - "width": 54.00299, - "height": 11.017679, - "page": 119 - } - ], - "sectionNumber": 1098, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study (21.9 %; ", - "textAfter": ", 1997). However,", - "comments": [], - "startOffset": 744, - "endOffset": 754, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4ac1a291abda744a6662f5aa8f184f54", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.6 Summary of exposure calculations and product assessment", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 575.66 - }, - "width": 17.615196, - "height": 11.017679, - "page": 119 - } - ], - "sectionNumber": 1098, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 898, - "endOffset": 901, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ea27814c31970e89e4ed8bb5b1f5d67f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 120 - } - ], - "sectionNumber": 2479, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "56d9b75dfc291467aa456c4ea836157d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 121 - } - ], - "sectionNumber": 2480, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6850fad3551027acbbdc9377c4616897", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 122 - } - ], - "sectionNumber": 2481, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "96066bc0f041ec342aed89a0be5ea7db", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 123 - } - ], - "sectionNumber": 2482, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "919156f1baf850c6860cb8777eb31a33", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 124 - } - ], - "sectionNumber": 2483, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "39547271626d63b7dba9c7a065323551", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 125 - } - ], - "sectionNumber": 2484, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "84ca1603f6d1da476f8d03f9d4ced518", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 126 - } - ], - "sectionNumber": 2485, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c8c45541ec6eaa5c40f21344afbad8f2", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 127 - } - ], - "sectionNumber": 2486, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4f6e7db9ed2845f927143c6300e70557", - "type": "CBI_author", - "value": "Anas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 78.504, - "y": 453.71 - }, - "width": 21.03952, - "height": 10.5318, - "page": 128 - } - ], - "sectionNumber": 1270, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " platyrhynchos", - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "76d76bc1ab05042e48877b6992491878", - "type": "CBI_author", - "value": "Anas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 78.504, - "y": 593.66 - }, - "width": 21.03952, - "height": 10.5318, - "page": 128 - } - ], - "sectionNumber": 1266, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " platyrhynchos", - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "92e6d9be5413e61df471d4fae7664821", - "type": "false_positive", - "value": "Short", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 523.67 - }, - "width": 22.583313, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1268, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 45, - "endOffset": 50, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "174d3b44d6de65db9d57890368ddbdcc", - "type": "false_positive", - "value": "Short", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 488.75 - }, - "width": 22.583313, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1269, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 46, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "61dc17490712ac26d49019c91aadf97e", - "type": "CBI_author", - "value": "Beavers, J.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 593.66 - }, - "width": 53.82788, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1266, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1983 b", - "comments": [], - "startOffset": 73, - "endOffset": 86, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "919b5d9960c499b00bc818301571076e", - "type": "CBI_author", - "value": "Beavers, J.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 488.75 - }, - "width": 53.82788, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1269, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1983 c", - "comments": [], - "startOffset": 88, - "endOffset": 101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a5f2055cd16d6c1b257c173f75061593", - "type": "CBI_author", - "value": "Beavers, J.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 523.67 - }, - "width": 53.82788, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1268, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1983 a", - "comments": [], - "startOffset": 87, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "19b4540bc88b1e1e19c53e9b0cb75fcd", - "type": "CBI_author", - "value": "Beavers, J.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 453.71 - }, - "width": 53.82788, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1270, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1978 a", - "comments": [], - "startOffset": 111, - "endOffset": 124, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cdabd247305f57ecad6bdd34e7883fa4", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 453.71 - }, - "width": 43.77603, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1270, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0e65f174bff76d266442d5d99fd93efc", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 395.75 - }, - "width": 43.77603, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1271, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 44, - "endOffset": 53, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a374749c184cf93f14220e72bd85f86c", - "type": "CBI_author", - "value": "Beavers, J.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 558.71 - }, - "width": 53.82788, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1267, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1983 d", - "comments": [], - "startOffset": 74, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3583ccae64aff3e6c6926a3b9c0c1dcf", - "type": "CBI_author", - "value": "Anas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 78.504, - "y": 523.67 - }, - "width": 21.03952, - "height": 10.5318, - "page": 128 - } - ], - "sectionNumber": 1268, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " platyrhynchos", - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a11a8ca9a05533656be21d2e7b4df057", - "type": "CBI_author", - "value": "Beavers, J.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 395.75 - }, - "width": 53.82788, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1271, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1978 b", - "comments": [], - "startOffset": 100, - "endOffset": 113, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "973f04578d04343f1da7df760d1f820d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 2487, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "96f7ec75560cdce46000b06905cc0dd7", - "type": "CBI_author", - "value": "Kaczor, M.H.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 683.06 - }, - "width": 55.979218, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1277, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Miller", - "comments": [], - "startOffset": 134, - "endOffset": 146, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b68d4cfa18a103d13ee9e32b139898d7", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 2488, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "67dac98c9abb1539105c1d48d2bb5da4", - "type": "CBI_author", - "value": "Priestley, S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 440.90967, - "y": 602.54 - }, - "width": 48.93747, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1277, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Taylor, S. & ", - "textAfter": " 201", - "comments": [], - "startOffset": 217, - "endOffset": 230, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "200928085ce8adf6302ffc3ca6f2af59", - "type": "CBI_author", - "value": "Taylor, S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 602.54 - }, - "width": 40.660736, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1277, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Statistical Re-analysis by ", - "textAfter": " & Priestley,", - "comments": [], - "startOffset": 204, - "endOffset": 214, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "456dc0ea50fc3d9d05697e3e202b6925", - "type": "CBI_author", - "value": "Miller V.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 456.24808, - "y": 683.06 - }, - "width": 38.14087, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1277, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Kaczor, M.H. & ", - "textAfter": ",.L.C. 1999 029901", - "comments": [], - "startOffset": 149, - "endOffset": 158, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "308185d34aebbc031c70f0d8cfd16628", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 683.06 - }, - "width": 43.77603, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1277, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 46, - "endOffset": 55, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "76289a115e81cfcc89679cec91162463", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-2: Decision relevant endpoints for risk assessment of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 433.55 - }, - "width": 18.210884, - "height": 10.526819, - "page": 130 - } - ], - "sectionNumber": 1287, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "90e4a2c8b029277b4bf28d0363a79e06", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 130 - } - ], - "sectionNumber": 2489, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3ed461a8661a20e0efc695283db73a41", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-2: Decision relevant endpoints for risk assessment of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 461.75 - }, - "width": 18.210884, - "height": 10.526819, - "page": 130 - } - ], - "sectionNumber": 1286, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4a6ff493d8a003ec923394d7f6fecf03", - "type": "CBI_author", - "value": "Collins", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 638.78 - }, - "width": 29.814362, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1298, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995) CGA77102/007", - "comments": [], - "startOffset": 58, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4a3e345ddebf64c8c2acdfb02b48c72f", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 709.34 - }, - "width": 18.210884, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1299, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d3846355874efe39a260d8c796d29466", - "type": "CBI_author", - "value": "Buccafusco", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 709.34 - }, - "width": 47.46347, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1296, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1978) CGA24705/019", - "comments": [], - "startOffset": 57, - "endOffset": 67, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4a108075bee68bdb3be22bcc969b0b97", - "type": "CBI_author", - "value": "Collins", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 550.31 - }, - "width": 29.814362, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1301, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995) CGA77102/007", - "comments": [], - "startOffset": 61, - "endOffset": 68, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "af20c1993b664891c90d29b0be89d480", - "type": "CBI_author", - "value": "Spare", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 520.79 - }, - "width": 23.758606, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1302, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1983) CGA77102/000", - "comments": [], - "startOffset": 64, - "endOffset": 69, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "56d3f00a06c2e9e5a3ac9cbf05d5b176", - "type": "CBI_author", - "value": "Memmert", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 448.31 - }, - "width": 40.34198, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1304, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2006 85925", - "comments": [], - "startOffset": 85, - "endOffset": 92, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9c6d807ee7d1122640f9f0f650ea0106", - "type": "CBI_author", - "value": "Spare", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 609.26 - }, - "width": 23.758606, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1299, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1983) CGA77102/000", - "comments": [], - "startOffset": 60, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bedc6f37319ef3a897bc5498ae734f2b", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 2490, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "074feda81dc1487438ef9d777b037ca7", - "type": "false_positive", - "value": "Parent", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-4: Toxicity data for S-metolachlor and its metabolites potentially relevant for\nsurface water risk assessment", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 76.584, - "y": 684.62 - }, - "width": 26.547401, - "height": 10.526819, - "page": 132 - } - ], - "sectionNumber": 1311, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 6, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e302064e4b5760fb7969872b22584e3a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 132 - } - ], - "sectionNumber": 2491, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1f3cd32ebce14400e082ce0264ba271d", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.3 Summary of effects on arthropods", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 228.42961, - "y": 70.86401 - }, - "width": 36.350082, - "height": 11.017679, - "page": 133 - } - ], - "sectionNumber": 1358, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1423, - "endOffset": 1430, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0a597eb874a67d5da30758a09ee5dfe7", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 133 - } - ], - "sectionNumber": 2492, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aca9bd6d27db0fa5a88f1741635742e5", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.3 Summary of effects on arthropods", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 428.38, - "y": 159.41998 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 133 - } - ], - "sectionNumber": 1358, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 790, - "endOffset": 793, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fcca42ee44f6952d09289b50a3beaccc", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.3 Summary of effects on arthropods", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 222.69 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 133 - } - ], - "sectionNumber": 1358, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 437, - "endOffset": 440, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aae0e9eb86256cdadb5b592affee641a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 134 - } - ], - "sectionNumber": 2493, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0472326e994233fc577f29c60c95f40d", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 631.7 - }, - "width": 20.999695, - "height": 10.44714, - "page": 134 - } - ], - "sectionNumber": 1340, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 106, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2b6fb67005373ec0a89e252950416d38", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 643.22 - }, - "width": 32.03537, - "height": 10.44714, - "page": 134 - } - ], - "sectionNumber": 1340, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 99, - "endOffset": 105, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f313665c88e650b0b16378785e8ae276", - "type": "CBI_author", - "value": "Großmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.9.5 Summary of effects on earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 186.4224, - "y": 313.64996 - }, - "width": 48.008347, - "height": 11.017679, - "page": 135 - } - ], - "sectionNumber": 1376, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "formulation A9396B (", - "textAfter": ", 1997). The", - "comments": [], - "startOffset": 166, - "endOffset": 174, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0c8e306a9bfa6ddfbf8f447ce04753a8", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 135 - } - ], - "sectionNumber": 2494, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "63c47a87d5ced925e127e966c19c47bf", - "type": "false_positive", - "value": "Date", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 736.22 - }, - "width": 20.999695, - "height": 10.44714, - "page": 135 - } - ], - "sectionNumber": 1354, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 106, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6386ada75f0ef71fdf78ed6e48958189", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 747.74 - }, - "width": 32.03537, - "height": 10.44714, - "page": 135 - } - ], - "sectionNumber": 1354, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 99, - "endOffset": 105, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "28f03abbfc148ccf8cd919610f32008c", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 399.95 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1364, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014c 14", - "comments": [], - "startOffset": 106, - "endOffset": 118, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "71d8531843af0247b7add7122bdda4ce", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 306.93 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1366, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014e 14", - "comments": [], - "startOffset": 104, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "eb50418cd5da6ebd3037a15dd5808241", - "type": "CBI_author", - "value": "Forster A.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 108.900024 - }, - "width": 41.36789, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1371, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", Pease G.,", - "comments": [], - "startOffset": 142, - "endOffset": 152, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e6e047ce9828fe195212cdd4050c05e2", - "type": "CBI_author", - "value": "Milanesi F.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 97.38397 - }, - "width": 46.43753, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1371, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "A., Pease G., ", - "textAfter": " 2006 ER-06-KCB21", - "comments": [], - "startOffset": 164, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "115b8d5167745e5525e66aa75b41c81b", - "type": "CBI_author", - "value": "Müther J.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 492.95 - }, - "width": 39.33609, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1362, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2004 20041060/0", - "comments": [], - "startOffset": 102, - "endOffset": 111, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9ccd02c7dd6c7bfe3293383dce81479c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 2495, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b831cf1f4d1d090238079b0d256228ce", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 128.84363, - "y": 120.65997 - }, - "width": 22.603226, - "height": 10.44714, - "page": 136 - } - ], - "sectionNumber": 1370, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 10, - "endOffset": 15, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6135f49c43311b2782fbf6f8ebc24cef", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 353.49 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1365, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014d 14", - "comments": [], - "startOffset": 105, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "94527633f2ec7ab3fc30197edd8623cd", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 213.89996 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1368, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014g 14", - "comments": [], - "startOffset": 104, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "365f37efe456ec764163bda96393be66", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 167.46002 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1369, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014h 14", - "comments": [], - "startOffset": 105, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3e7f163fcc90ac26fb2b8197300e6406", - "type": "CBI_author", - "value": "Pease G.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 460.58765, - "y": 108.900024 - }, - "width": 35.979492, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1371, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Forster A., ", - "textAfter": ", Milanesi F.", - "comments": [], - "startOffset": 154, - "endOffset": 162, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "93b70d7f4635292f0c165764036c9062", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 260.49 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1367, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014f 14", - "comments": [], - "startOffset": 106, - "endOffset": 118, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6ba09936a8a11c69e607f579b3a74a22", - "type": "CBI_author", - "value": "Friedrich S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 446.39 - }, - "width": 48.10086, - "height": 10.526819, - "page": 136 - } - ], - "sectionNumber": 1363, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014b 14", - "comments": [], - "startOffset": 105, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c0591d35f759b0650b25ce359430ba32", - "type": "CBI_author", - "value": "McCormac", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 473.63 - }, - "width": 45.81006, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1381, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA51202_1001", - "comments": [], - "startOffset": 73, - "endOffset": 81, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7082590861443887a542233726374d60", - "type": "CBI_author", - "value": "McCormac", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 241.16998 - }, - "width": 45.81006, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1386, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 NOA436611_1001", - "comments": [], - "startOffset": 100, - "endOffset": 108, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f1b30d779354353eb255ae5a77260d82", - "type": "CBI_author", - "value": "Friedrich", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 380.61 - }, - "width": 37.613007, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1383, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA040172_1000", - "comments": [], - "startOffset": 105, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f0effedcf8909a92c335f27785f6eaf5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 2496, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c6091847b640c28b8bcdbc3747cb7360", - "type": "CBI_author", - "value": "McCormac", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 520.19 - }, - "width": 45.81006, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1380, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA354743_1000", - "comments": [], - "startOffset": 108, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "09264d39ef0c7978e44719accbc111b0", - "type": "CBI_author", - "value": "Vinall", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 194.58002 - }, - "width": 25.840302, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1387, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2013 A9396G_1070", - "comments": [], - "startOffset": 108, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fc770ded17a9cee40664d2e2fb272a5b", - "type": "CBI_author", - "value": "Vinall", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 101.58002 - }, - "width": 25.840302, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1389, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA51202_1001", - "comments": [], - "startOffset": 110, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "edcbeee2ef53a2b83b27c39c0ac169e2", - "type": "CBI_author", - "value": "Friedrich", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 334.17 - }, - "width": 37.613007, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1384, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA050720_1001", - "comments": [], - "startOffset": 105, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3d986c97e751d869d47863837fa84671", - "type": "CBI_author", - "value": "McCormac", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 566.63 - }, - "width": 45.81006, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1379, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2013 A9396G_1070", - "comments": [], - "startOffset": 105, - "endOffset": 113, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "60874166fe2ffaa0cab54f2a22f47277", - "type": "CBI_author", - "value": "Friedrich", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 427.19 - }, - "width": 37.613007, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1382, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA368208_1001", - "comments": [], - "startOffset": 108, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c93f850a34ed3c73f1a3020c33ab4142", - "type": "CBI_author", - "value": "Vinall", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 148.14001 - }, - "width": 25.840302, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1388, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA354743_10010", - "comments": [], - "startOffset": 111, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6a1f7c9e21259aebb5a421d4527ba9ca", - "type": "CBI_author", - "value": "McCormac", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 287.61 - }, - "width": 45.81006, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1385, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA037735_1000", - "comments": [], - "startOffset": 108, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bb0a5744d5787230a8520d12c3670137", - "type": "CBI_author", - "value": "Hutcheson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 101.34003 - }, - "width": 43.638824, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1408, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA77102_1001", - "comments": [], - "startOffset": 66, - "endOffset": 75, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d351b7c2da2edd3d2ee1c65e9aef9a49", - "type": "CBI_author", - "value": "Vinall", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 590.78 - }, - "width": 25.840302, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1395, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA037735_1001", - "comments": [], - "startOffset": 90, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "84bf460b7db4684cc1e78f05bf5cad7b", - "type": "CBI_author", - "value": "Vinall", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 544.19 - }, - "width": 25.840302, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1396, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 NOA436611_1001", - "comments": [], - "startOffset": 91, - "endOffset": 97, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ad1bcaa625fbc4dfe3b7ef38d7357632", - "type": "CBI_author", - "value": "Seyfried", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 255.81 - }, - "width": 34.744507, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1403, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2000 CGA77102/057", - "comments": [], - "startOffset": 71, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "967cfa4581bb94718d79a6d8bc8e9223", - "type": "CBI_author", - "value": "Seyfried", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 150.89996 - }, - "width": 34.744507, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1407, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2000 CGA77102/057", - "comments": [], - "startOffset": 64, - "endOffset": 72, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "45cea8918bfd8f5c2785cce3737ff08d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 2497, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "411068fef44166ca8d867a767ee1afdc", - "type": "CBI_author", - "value": "Hutcheson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 191.58002 - }, - "width": 43.638824, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1406, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA77102_1001", - "comments": [], - "startOffset": 65, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "85033180a9d2c020c3cf72ea63ab1942", - "type": "CBI_author", - "value": "Chetram & Schuster", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 679.7 - }, - "width": 74.377045, - "height": 10.0905, - "page": 139 - } - ], - "sectionNumber": 1413, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1995a CGA77102/007", - "comments": [], - "startOffset": 130, - "endOffset": 148, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "459f62b92abe14dab61442555a7221cf", - "type": "CBI_author", - "value": "Chetram & Schuster", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 610.22 - }, - "width": 74.377045, - "height": 10.0905, - "page": 139 - } - ], - "sectionNumber": 1414, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1995b CGA77102/007", - "comments": [], - "startOffset": 138, - "endOffset": 156, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a24cd1d08471465c970402c822337c59", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 139 - } - ], - "sectionNumber": 2498, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8c3fd5bbb27e7deb57abe176035b6ae8", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 140 - } - ], - "sectionNumber": 2499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e6a18d0fa6e2ab2cc62f2cb86319f7c9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 141 - } - ], - "sectionNumber": 2500, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d2d201b403ff1a23710de025562b8516", - "type": "false_positive", - "value": "Wood", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11 Summary of product exposure and risk assessment", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 261.04907, - "y": 135.18 - }, - "width": 27.98172, - "height": 11.017679, - "page": 142 - } - ], - "sectionNumber": 1458, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1465, - "endOffset": 1469, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d66a549db80c08b31a6bcc03d852ec1d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 142 - } - ], - "sectionNumber": 2501, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "81e943a9fd6f88a85c75812b5ade60f3", - "type": "CBI_author", - "value": "Albuquerque", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.9.11 Summary of product exposure and risk assessment", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 316.96182, - "y": 97.26398 - }, - "width": 58.72174, - "height": 11.017679, - "page": 142 - } - ], - "sectionNumber": 1458, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "refinement report by ", - "textAfter": " (2014). Table", - "comments": [], - "startOffset": 1635, - "endOffset": 1646, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d4ecc28f8d6cc584bfe072bfd9b387cc", - "type": "false_positive", - "value": "Wood", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11 Summary of product exposure and risk assessment", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 469.95856, - "y": 758.92 - }, - "width": 29.096802, - "height": 10.929359, - "page": 143 - } - ], - "sectionNumber": 1458, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1734, - "endOffset": 1738, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "deb9f6d272be26fe0f531eb45dbc54a2", - "type": "false_positive", - "value": "Wood", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-11: Refined long-term risk assessment for the relevant focal species Wood pigeon considering PD for the early post-emergence use of A9396G in maize", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 207.41, - "y": 576.86 - }, - "width": 25.51155, - "height": 10.526819, - "page": 143 - } - ], - "sectionNumber": 1456, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 83, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d56a32985d928e3b625d602006837235", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 143 - } - ], - "sectionNumber": 2502, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8657ac63d14702a32306ecc73a018265", - "type": "false_positive", - "value": "Wood", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11 Summary of product exposure and risk assessment", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 497.36407, - "y": 491.15 - }, - "width": 27.760986, - "height": 11.017679, - "page": 143 - } - ], - "sectionNumber": 1458, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1991, - "endOffset": 1995, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ee6dd7216a252e3b5429f832718cb972", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 144 - } - ], - "sectionNumber": 2503, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "90f6e8050e4c0d4e894813fbbbe6e907", - "type": "false_positive", - "value": "Large", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-13: Long-term risk to mammals from S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 241.25, - "y": 313.28998 - }, - "width": 24.127136, - "height": 10.526819, - "page": 144 - } - ], - "sectionNumber": 1480, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 102, - "endOffset": 107, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c5f41aa9208cb743b6dbe4ead66f4db4", - "type": "false_positive", - "value": "Large", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-13: Long-term risk to mammals from S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 241.25, - "y": 642.02 - }, - "width": 24.127136, - "height": 10.526819, - "page": 145 - } - ], - "sectionNumber": 1491, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 23, - "endOffset": 28, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a06255ef06b0e5d8f767836231673b0e", - "type": "false_positive", - "value": "Wood mouse", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-14: Refined long-term risk assessment for the relevant focal species Wood\nmouse considering 90th %tile PT for the early postemergence use of A9396G in maize", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 232.6712, - "y": 122.58002 - }, - "width": 25.421936, - "height": 10.526819, - "page": 145 - }, - { - "topLeft": { - "x": 193.13, - "y": 111.06 - }, - "width": 27.00557, - "height": 10.526819, - "page": 145 - } - ], - "sectionNumber": 1497, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 81, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aaea7a1c94b166f7c228903e55c8340d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 145 - } - ], - "sectionNumber": 2504, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1953958627070d3ab63bbf6fd9871fc6", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 146 - } - ], - "sectionNumber": 2505, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "94c4efbae8fa5ee2273f0b25136204b8", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-15: Application rate to endpoint ratios for birds and mammals exposed to\nA9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 357.43, - "y": 643.34 - }, - "width": 47.227142, - "height": 10.44714, - "page": 146 - } - ], - "sectionNumber": 1500, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 126, - "endOffset": 135, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8d3fa7b2bb9409ecb2f22fb101afbae1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 147 - } - ], - "sectionNumber": 2506, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8ae452eb77b786ff158859051c87b6f1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 148 - } - ], - "sectionNumber": 2507, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d830ffe14f8609f424128ab823e2adb3", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 149 - } - ], - "sectionNumber": 2508, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ab7f05950c2a0fa85d169609699b89cc", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-17: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 217.58, - "y": 469.1 - }, - "width": 17.53299, - "height": 10.018499, - "page": 149 - } - ], - "sectionNumber": 1524, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 10, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ffa83bab22ebc54366d5e477ac835816", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-17: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 312.77, - "y": 474.26 - }, - "width": 17.53302, - "height": 10.018499, - "page": 149 - } - ], - "sectionNumber": 1524, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 17, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5c8487b44151cf6407db72678ccb69d8", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 150 - } - ], - "sectionNumber": 2509, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "baefd4cae0dd16fdc2044361f917b8ef", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-18: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10, 25m buffer + 80% run-off mitigation", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 194.06, - "y": 463.82 - }, - "width": 19.246704, - "height": 10.44714, - "page": 150 - } - ], - "sectionNumber": 1548, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 10, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "37425942f523f97588fbdbc7bcfac1e3", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-18: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize and sunflower, 1x1440 g a.s./ha, BBCH 00-10, 25m buffer + 80% run-off mitigation", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 283.25, - "y": 469.58 - }, - "width": 19.246765, - "height": 10.44714, - "page": 150 - } - ], - "sectionNumber": 1548, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 17, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3dddfb601169f1cc1e0b25c64e15dff9", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-19: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 193.34, - "y": 463.82 - }, - "width": 19.246704, - "height": 10.44714, - "page": 151 - } - ], - "sectionNumber": 1567, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 10, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "02a410e2d5fe5827b050f0728ee09fd8", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-19: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Steps 1, 2\nand 3 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 281.81, - "y": 469.58 - }, - "width": 19.246765, - "height": 10.44714, - "page": 151 - } - ], - "sectionNumber": 1567, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 17, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4b4e1a55cbdeca8264f0ecef5d7ca3bf", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 151 - } - ], - "sectionNumber": 2510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "369dd1295cee9ea3834254cc0fc9bb9a", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-20: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10, 20m buffer + 80% run-off mitigation", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 194.06, - "y": 463.82 - }, - "width": 19.246704, - "height": 10.44714, - "page": 152 - } - ], - "sectionNumber": 1591, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 10, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "80364b18f92476edc693d6aa8d14c452", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-20: Aquatic organisms: acceptability of risk (PEC/RAC < 1) for S-metolachlor for each organism group based on FOCUS Step 4 calculations for the use of A9396G in maize, 1x1250 g a.s./ha, BBCH 00-10, 20m buffer + 80% run-off mitigation", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 283.25, - "y": 469.58 - }, - "width": 19.246765, - "height": 10.44714, - "page": 152 - } - ], - "sectionNumber": 1591, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 17, - "endOffset": 21, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c9331ccfa58c17013294597543c67bc1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 152 - } - ], - "sectionNumber": 2511, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "16bc2a38b0fee937912350dbed6987f2", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 153 - } - ], - "sectionNumber": 2512, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2bd3384d982ca2eb8b0a9df63f55d705", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 154 - } - ], - "sectionNumber": 2513, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fdf9080492db1cd8089129be38be516d", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11.2 Summary of the risk assessment for non-target arthropods", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 210.79872, - "y": 707.9 - }, - "width": 36.460495, - "height": 11.017679, - "page": 155 - } - ], - "sectionNumber": 1632, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 280, - "endOffset": 287, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7b91f1f5f831b899642b5ee82f714abc", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 155 - } - ], - "sectionNumber": 2514, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "62f7b76d37fb36649d9611b3c4b48e57", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 156 - } - ], - "sectionNumber": 2515, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "dcfb8e3b77e8c3235ce47cf121d94d52", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 157 - } - ], - "sectionNumber": 2516, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "451fa1bc60a152f426a0c57da16f1b7c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 158 - } - ], - "sectionNumber": 2517, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "815f90f57f611a040bd118c5df26fc59", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 159 - } - ], - "sectionNumber": 2518, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "91ae57117121665f3d1e91e6fed9f910", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 160 - } - ], - "sectionNumber": 2519, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b869c220a82609f8e49f6c82e237fe43", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 161 - } - ], - "sectionNumber": 2520, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a08369cdbdcef8ad25c8fe28ca07f224", - "type": "false_positive", - "value": "Lower HC5", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-28: HR5 values calculated for seedling emergence of non-target plants exposed\nto A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 281.83, - "y": 273.81 - }, - "width": 39.168976, - "height": 10.0905, - "page": 162 - }, - { - "topLeft": { - "x": 319.99, - "y": 273.33002 - }, - "width": 4.0, - "height": 8.727, - "page": 162 - } - ], - "sectionNumber": 1802, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 54, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4817e987baf1620ea00d221e5f5c96f7", - "type": "false_positive", - "value": "Anderson-Darling test", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-28: HR5 values calculated for seedling emergence of non-target plants exposed\nto A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 446.911, - "y": 272.73004 - }, - "width": 26.506012, - "height": 10.0905, - "page": 162 - }, - { - "topLeft": { - "x": 361.51, - "y": 262.52997 - }, - "width": 58.822083, - "height": 10.0905, - "page": 162 - } - ], - "sectionNumber": 1802, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 106, - "endOffset": 127, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "20ba64d50c4e16df8a20b273dd21ba24", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11.5 Summary of the risk assessment for non-target terrestrial plants", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 287.10184, - "y": 404.63 - }, - "width": 17.493774, - "height": 11.017679, - "page": 162 - } - ], - "sectionNumber": 1830, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 142, - "endOffset": 145, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "44747c39565920f65fdcbf5ccb05556c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 162 - } - ], - "sectionNumber": 2521, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5579bd783cc9d636941c7c97fb6c57ff", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 163 - } - ], - "sectionNumber": 2522, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e6a277e5e0cadd0995a8ed84aaa7e87e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 164 - } - ], - "sectionNumber": 2523, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6bda6cc865b4c69e4abdec2c8610dc90", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 165 - } - ], - "sectionNumber": 2524, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "76f86b96f349b46961fcc83e2ecd6642", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 166 - } - ], - "sectionNumber": 2525, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "02e232f298e4e884c2da78e585240b1c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 167 - } - ], - "sectionNumber": 2526, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "96c8b993999177d7694cb789d4356d39", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 168 - } - ], - "sectionNumber": 2527, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0fcff63dbd004c3d73db08a21f7e4237", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Proposed notes assigned to an entry:", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 184.28625, - "y": 746.42 - }, - "width": 21.269455, - "height": 11.017679, - "page": 169 - } - ], - "sectionNumber": 1944, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 455, - "endOffset": 458, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "78fa62c6039ee5fe15d54a2e6e6d56e1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 169 - } - ], - "sectionNumber": 2528, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6ebaab442994ace9b707aa6d2fac82a5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 170 - } - ], - "sectionNumber": 2529, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "90391bc7cdf63077448ca6a28c28adf4", - "type": "CBI_author", - "value": "Keller A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 441.7, - "y": 352.41 - }, - "width": 35.65088, - "height": 10.526819, - "page": 170 - } - ], - "sectionNumber": 1947, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 72, - "endOffset": 80, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "181fe3ea5d8d3169c203ee1b5c736653", - "type": "CBI_author", - "value": "Clark A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 441.6295, - "y": 258.81 - }, - "width": 32.77243, - "height": 10.526819, - "page": 170 - } - ], - "sectionNumber": 1948, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "6.5% (d14) (", - "textAfter": ", 1995", - "comments": [], - "startOffset": 58, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d2effe3869cec817ec4b45eb90dd632e", - "type": "CBI_author", - "value": "Clark A", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 469.90594, - "y": 167.94 - }, - "width": 32.77243, - "height": 10.526819, - "page": 170 - } - ], - "sectionNumber": 1949, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "120 d) (", - "textAfter": ", 1995", - "comments": [], - "startOffset": 111, - "endOffset": 118, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5f1bcd43bd9041727f1cbc97f8119ee3", - "type": "CBI_author", - "value": "Hein W.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.6593, - "y": 450.95 - }, - "width": 34.794342, - "height": 10.526819, - "page": 170 - } - ], - "sectionNumber": 1946, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "21.1% (d153) (", - "textAfter": ", 2007) lysimeter:", - "comments": [], - "startOffset": 68, - "endOffset": 75, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c42dbc61969852c65b91f1b8a2d8e219", - "type": "CBI_author", - "value": "Hein W.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.70303, - "y": 522.35 - }, - "width": 34.794342, - "height": 10.526819, - "page": 171 - } - ], - "sectionNumber": 1954, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "9.1% (d153) (", - "textAfter": ", 2007) lysimeter:", - "comments": [], - "startOffset": 67, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b3ab48b4eea30a5d5b7055301e2c69a2", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 464.87613, - "y": 427.43 - }, - "width": 49.166656, - "height": 10.526819, - "page": 171 - } - ], - "sectionNumber": 1955, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "28 d) (", - "textAfter": ", 1997) lysimeter:", - "comments": [], - "startOffset": 72, - "endOffset": 82, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "abab20e15aa47739a863b28523ac08c9", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 171 - } - ], - "sectionNumber": 2530, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "af81cd3ba822fa8e1dbd33d708e51f11", - "type": "CBI_author", - "value": "Morgenroth U", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.74, - "y": 707.06 - }, - "width": 58.1904, - "height": 10.526819, - "page": 171 - } - ], - "sectionNumber": 1952, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "7.6% (d120) (", - "textAfter": ", 1997) lysimeter:", - "comments": [], - "startOffset": 66, - "endOffset": 78, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "55d89a9d8c5039a4c1b3787e3bf9bb16", - "type": "CBI_author", - "value": "Kitschmann P", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.11-1: Metabolites detected in soil degradation studies which fulfil the criteria\naccording to SANCO/221/2000- rev.10-final (2003)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.02, - "y": 618.86 - }, - "width": 49.156647, - "height": 10.526819, - "page": 171 - }, - { - "topLeft": { - "x": 414.1, - "y": 607.34 - }, - "width": 6.5377502, - "height": 10.526819, - "page": 171 - } - ], - "sectionNumber": 1953, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "181 d) (", - "textAfter": ", 1997a) lysimeter:", - "comments": [], - "startOffset": 65, - "endOffset": 77, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a37517192a792cb08a3d09fddc19d9d3", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 172 - } - ], - "sectionNumber": 2531, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2332a887b20571340364d9af9f0dda62", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 364.06702, - "y": 413.75 - }, - "width": 17.493774, - "height": 11.017679, - "page": 173 - } - ], - "sectionNumber": 1999, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 539, - "endOffset": 542, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7483e89e4be8ebe6860e54fe1703f3ac", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.11-2: Summary of the groundwater risk assessment (values ≥ 10 µg/L are highlighted in grey)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 233.69, - "y": 357.93 - }, - "width": 20.493988, - "height": 10.018499, - "page": 173 - } - ], - "sectionNumber": 1972, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 35, - "endOffset": 40, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1a81902030e03dbe6af297102ca99e99", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 173 - } - ], - "sectionNumber": 2532, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a2b71aaf224ae108c3f491f4ea8b9980", - "type": "CBI_author", - "value": "Tessier", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 255.60605, - "y": 151.14001 - }, - "width": 26.812012, - "height": 10.0905, - "page": 174 - } - ], - "sectionNumber": 1999, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "data taken from ", - "textAfter": ", 2014 4", - "comments": [], - "startOffset": 864, - "endOffset": 871, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4657fb8f52a8925d9868fee211c4ed60", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.11-2: Summary of the groundwater risk assessment (values ≥ 10 µg/L are highlighted in grey)", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 233.69, - "y": 757.24 - }, - "width": 20.493988, - "height": 10.018499, - "page": 174 - } - ], - "sectionNumber": 1980, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 35, - "endOffset": 40, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fc39b13ec6a52c74be6a827bcc7cec3f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 174 - } - ], - "sectionNumber": 2533, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "718c5b22d6cc7e71b668ff8f01510eb3", - "type": "CBI_author", - "value": "Amic", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 255.60605, - "y": 140.82 - }, - "width": 20.818024, - "height": 10.0905, - "page": 174 - } - ], - "sectionNumber": 1999, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "data taken from ", - "textAfter": ", 2014 5", - "comments": [], - "startOffset": 925, - "endOffset": 929, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e6a80ef87f2d45741475990e8971e38e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 175 - } - ], - "sectionNumber": 2534, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "537fb2fca042b992943f743ca0e74f20", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 82.21584, - "y": 86.583984 - }, - "width": 17.615196, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3222, - "endOffset": 3225, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ac7c6e403f6c5999f2f06765a851e5a6", - "type": "CBI_author", - "value": "Rüegg", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 212.65689, - "y": 478.67 - }, - "width": 29.68193, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Rüegg (1997) and ", - "textAfter": " (1997b) only", - "comments": [], - "startOffset": 397, - "endOffset": 402, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fa25030fcbc780f0844dd2a5c721da5b", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 384.47998, - "y": 175.14001 - }, - "width": 14.987671, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2622, - "endOffset": 2625, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "809048a355084851e1e842315cc9c86e", - "type": "CBI_author", - "value": "Schwab", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 218.94629, - "y": 390.21 - }, - "width": 35.787064, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Schwab (1997a) and ", - "textAfter": " (1997b) are", - "comments": [], - "startOffset": 986, - "endOffset": 992, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e4c92dc29c65c6b4e5e3c575db18524b", - "type": "CBI_author", - "value": "Corbin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 124.664635, - "y": 213.06 - }, - "width": 31.580818, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "CGA50267. The studies ", - "textAfter": " (2014) and", - "comments": [], - "startOffset": 2263, - "endOffset": 2269, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e9d9397c9c0c3b80ba9a6797503a6571", - "type": "CBI_author", - "value": "Cordingley", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 119.862236, - "y": 314.25 - }, - "width": 50.635857, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "CGA354743. The study ", - "textAfter": " (2005) was", - "comments": [], - "startOffset": 1542, - "endOffset": 1552, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6a96dc6149a0addba1a03d56887b456e", - "type": "CBI_author", - "value": "Schwab", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 124.78609, - "y": 390.21 - }, - "width": 35.89746, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "CGA354743. The studies ", - "textAfter": " (1997a) and", - "comments": [], - "startOffset": 967, - "endOffset": 973, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1920d3d48bbb856971fe46571fb9f110", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 176 - } - ], - "sectionNumber": 2535, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "eea050960d5329d39cdc7f9a3956a81a", - "type": "CBI_author", - "value": "Rüegg", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 126.68496, - "y": 478.67 - }, - "width": 29.681938, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "activity. The studies ", - "textAfter": " (1997) and", - "comments": [], - "startOffset": 380, - "endOffset": 385, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6e954422d812793999beec6698271f8d", - "type": "CBI_author", - "value": "Dupen", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 209.42978, - "y": 213.06 - }, - "width": 30.377457, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Corbin (2014) and ", - "textAfter": " (2014) were", - "comments": [], - "startOffset": 2281, - "endOffset": 2286, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8ae997cdfff9eb6502296379805c1615", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 394.59274, - "y": 503.99 - }, - "width": 17.504791, - "height": 11.017679, - "page": 176 - } - ], - "sectionNumber": 2047, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 236, - "endOffset": 239, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d09c3d36c8f319fb831c5e0e8dcd47e5", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 177 - } - ], - "sectionNumber": 2536, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8d4701444cd0b63cf3aa3904816d6524", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 178 - } - ], - "sectionNumber": 2537, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "73f604dca984ff37ac39d0ee8a9717bf", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 179 - } - ], - "sectionNumber": 2538, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c8f58a44630e080e513daac46b9ff156", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 180 - } - ], - "sectionNumber": 2539, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f87cf33ce880609d88ed40276c7377d1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 181 - } - ], - "sectionNumber": 2540, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9f7a35f942c4ffe287ef3572dfd96c28", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 182 - } - ], - "sectionNumber": 2541, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "685815fea458e63e502442d53285bdb1", - "type": "published_information", - "value": "edition", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.5 STEP 5: Refined risk assessment", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.27199, - "y": 698.3 - }, - "width": 25.884995, - "height": 10.0905, - "page": 183 - } - ], - "sectionNumber": 2127, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4092, - "endOffset": 4099, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "545cfc4ce3d77d4773ab33872f4ec63d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 183 - } - ], - "sectionNumber": 2542, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "29d75793c3b1c863120e257ed16b2e49", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 184 - } - ], - "sectionNumber": 2543, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e417136af1005fc830fcfd619fff933f", - "type": "CBI_author", - "value": "Anon", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.12.3 Mammalian toxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 226.7074, - "y": 335.85 - }, - "width": 25.475693, - "height": 11.017679, - "page": 184 - } - ], - "sectionNumber": 2135, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "for renewal (", - "textAfter": ". 2014, ASB2016-681,", - "comments": [], - "startOffset": 61, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0dd85b3af8ce0cca0940e5a51878ece1", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 185 - } - ], - "sectionNumber": 2544, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f54ee002f5587c687f32172a6696d6c3", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:image", - "color": [ - 0.7411765, - 0.8392157, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 92.9, - "y": 373.57 - }, - "width": 409.55, - "height": 121.55, - "page": 185 - } - ], - "sectionNumber": 2135, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b2ea5fd3a3b80f8d074bd1de25990249", - "type": "formula", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:formula", - "color": [ - 0.011764706, - 0.43529412, - 0.9882353 - ], - "positions": [ - { - "topLeft": { - "x": 158.5, - "y": 538.22 - }, - "width": 278.2, - "height": 232.8, - "page": 185 - } - ], - "sectionNumber": 2135, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5979ab85f7c4b3b0132e310d28f9c4fe", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 186 - } - ], - "sectionNumber": 2545, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "efae9375b688994ed08a1a1fa9e4575c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 187 - } - ], - "sectionNumber": 2546, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bf1163c1d65a0356ad9714842d49bf08", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 188 - } - ], - "sectionNumber": 2547, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0d916f243a2ce9838919b57b068cc297", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 189 - } - ], - "sectionNumber": 2548, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "60f55aeb2782eed6eae0e97b761b4646", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 190 - } - ], - "sectionNumber": 2549, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "afc024dc831767dec3ffbebf06d43ab4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 191 - } - ], - "sectionNumber": 2550, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aefbd1a44863c9db26937db7bfbd2d2f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 192 - } - ], - "sectionNumber": 2551, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a666fc78a637f993e0d580d286d34024", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 193 - } - ], - "sectionNumber": 2552, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "51d41e4f07c27764f1122049fc6a506c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 194 - } - ], - "sectionNumber": 2553, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "11fec3ac84568cf9bbb7e4b6700507c5", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 542.7643, - "y": 422.87 - }, - "width": 41.770752, - "height": 11.017679, - "page": 195 - } - ], - "sectionNumber": 2201, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "is negligible. Therefore, ", - "textAfter": " as RMS", - "comments": [], - "startOffset": 751, - "endOffset": 758, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "59a72edc536f96678e430899a6230a75", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 195 - } - ], - "sectionNumber": 2554, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b62466d922caf4bac1d9eb2f0e3f5457", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 542.771, - "y": 104.56 - }, - "width": 41.770752, - "height": 11.017679, - "page": 195 - } - ], - "sectionNumber": 2205, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "is negligible. Therefore, ", - "textAfter": " as RMS", - "comments": [], - "startOffset": 667, - "endOffset": 674, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "03f80df13cb12fe4e5f511721fc7c4cd", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 196 - } - ], - "sectionNumber": 2555, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ca31c7f6dec137fc5e3a85ae2c911bd0", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 542.7643, - "y": 218.46002 - }, - "width": 41.770752, - "height": 11.017679, - "page": 196 - } - ], - "sectionNumber": 2212, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "is negligible. Therefore, ", - "textAfter": " as RMS", - "comments": [], - "startOffset": 757, - "endOffset": 764, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fca5669057432c6a6177532e0ca80a5d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 197 - } - ], - "sectionNumber": 2556, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b72bba0fa7f1de653cf14440730f3617", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 198 - } - ], - "sectionNumber": 2557, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "57784f6c9536c53d6c1e86d92b1ed882", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 199 - } - ], - "sectionNumber": 2558, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "23b77ae9c3a40ab4e612e42d7f37b9fd", - "type": "false_positive", - "value": "down", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 316.0897, - "y": 340.67 - }, - "width": 25.475647, - "height": 11.017679, - "page": 199 - } - ], - "sectionNumber": 2231, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 115, - "endOffset": 119, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c32e68aac3ac734d3e803c50aa5764ea", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 200 - } - ], - "sectionNumber": 2559, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b6299201039212c37b288d046f26ee0", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 201 - } - ], - "sectionNumber": 2560, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "beb2dec787a01881542bb76cb7668531", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 202 - } - ], - "sectionNumber": 2561, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b83a5629e65c34bc43da4522cd11dd26", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.07, - "y": 208.97998 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 203 - } - ], - "sectionNumber": 2248, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1464, - "endOffset": 1467, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bf82ab0712a60be7c5f7da8ffac5b09c", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 203 - } - ], - "sectionNumber": 2562, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6ce4146c7743a47979f5e903f5357819", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 204 - } - ], - "sectionNumber": 2563, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e5950419b99772a124f3b6f9968fb0f9", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.1.3 Proposal – Low risk active substance", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 198.86, - "y": 230.48999 - }, - "width": 23.692001, - "height": 11.358, - "page": 205 - } - ], - "sectionNumber": 2264, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 17, - "endOffset": 20, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "13ea5072286b78003b83fc46da151e82", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.3 Proposal – Low risk active substance", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.92, - "y": 205.02002 - }, - "width": 21.688957, - "height": 10.929359, - "page": 205 - } - ], - "sectionNumber": 2258, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 3, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9a13bde7d1a2f25bf21f8047b7f5fa43", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 205 - } - ], - "sectionNumber": 2564, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f3b4265832e6bddc75c846c483507368", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 206 - } - ], - "sectionNumber": 2565, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a498642e59c811ed6cfae81d746f7308", - "type": "false_positive", - "value": "List of", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 141.74, - "y": 372.47 - }, - "width": 34.024002, - "height": 11.358, - "page": 206 - } - ], - "sectionNumber": 2314, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6, - "endOffset": 13, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4700d10d9305a48bea7c6a1109d3374a", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 167.94 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 207 - } - ], - "sectionNumber": 2280, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 139, - "endOffset": 142, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "adae0fd0a663bd88d829f3debe85e1f6", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 237.69 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 207 - } - ], - "sectionNumber": 2279, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 209, - "endOffset": 212, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8ecf17c53afda9919009db444a95f4c4", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 207 - } - ], - "sectionNumber": 2566, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "aed26fd7262bee7829a561cf9ab73642", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 110.79999 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 207 - } - ], - "sectionNumber": 2281, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 194, - "endOffset": 197, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b94e9bfb213cd660000fe3ee3b6b695a", - "type": "false_positive", - "value": "Gold", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 137.50366, - "y": 113.82001 - }, - "width": 23.06897, - "height": 11.017679, - "page": 207 - } - ], - "sectionNumber": 2281, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 13, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4e0326c95975cc7f538d44f0c7e0be03", - "type": "false_positive", - "value": "Gold", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 137.50366, - "y": 170.94 - }, - "width": 23.06897, - "height": 11.017679, - "page": 207 - } - ], - "sectionNumber": 2280, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 13, - "endOffset": 17, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7c1de04297a29a636ae0a2d7cbe281a2", - "type": "CBI_author", - "value": "Meseguer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 127.280624, - "y": 375.83 - }, - "width": 44.47554, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2286, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the method by ", - "textAfter": " (2014) for", - "comments": [], - "startOffset": 54, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0f0a772c887532bde1be89edf2a3e799", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 385.43 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2286, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 154, - "endOffset": 157, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a773098d8ad6876de0f8b28e8aeda11b", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 284.01 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2288, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 281, - "endOffset": 284, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4cbe29fa066e73eaad03e4eed5d12945", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 131.94 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2290, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 159, - "endOffset": 162, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "dd4b168a2bd70efbddddd42e745ee1a7", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 76.32, - "y": 128.94 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2290, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 3, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7b667f3a0939291fef7ae3b826bf16ba", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 208 - } - ], - "sectionNumber": 2567, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "33ce615a1b3aaa63c49acf4e48e5ecff", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 209 - } - ], - "sectionNumber": 2568, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "7d134d0f230890fb0019822d84389d2b", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 224.37 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 209 - } - ], - "sectionNumber": 2297, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 198, - "endOffset": 201, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3f7ccda15cae988a2e49e24cfccd5363", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 426.95 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 209 - } - ], - "sectionNumber": 2294, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 217, - "endOffset": 220, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "085953cd66b346dbd310b847f484baef", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 76.32, - "y": 423.95 - }, - "width": 15.102402, - "height": 11.017679, - "page": 209 - } - ], - "sectionNumber": 2294, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 3, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "122f1754953360317b24886a9303a90e", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 154.5 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 209 - } - ], - "sectionNumber": 2298, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 300, - "endOffset": 303, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "007130b7fd17367c019ae5b9b16df445", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 306.69 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 209 - } - ], - "sectionNumber": 2296, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 243, - "endOffset": 246, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fed9197e6b069a28d26eac3df13e18f5", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 221.76097, - "y": 281.85 - }, - "width": 54.124466, - "height": 11.017679, - "page": 210 - } - ], - "sectionNumber": 2305, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "metabolism study (", - "textAfter": ", 1997) in", - "comments": [], - "startOffset": 118, - "endOffset": 128, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2ad800679051391d0d86673d67e99ae5", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 76.32, - "y": 151.85999 - }, - "width": 46.30818, - "height": 11.017679, - "page": 210 - } - ], - "sectionNumber": 2306, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 363, - "endOffset": 373, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b0f6cf156c5a03b95fc54e146cf7800f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 210 - } - ], - "sectionNumber": 2569, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5289f21027d971eb826d53c8622370b8", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 211 - } - ], - "sectionNumber": 2570, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "83506ab57d0601994c38b43b4b43ee66", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.5 Issues that could not be finalised", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 323.59, - "y": 580.46 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 212 - } - ], - "sectionNumber": 2315, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 226, - "endOffset": 229, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ec9de5bdfe493e4793338c11b720ab3e", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 212 - } - ], - "sectionNumber": 2571, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "148453cc2fb429df78b1a587932f9e6f", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 213 - } - ], - "sectionNumber": 2572, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "15b483d4a76fe2d4d7f84d99c479dde4", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.6 Critical areas of concern", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 323.47, - "y": 693.5 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 213 - } - ], - "sectionNumber": 2317, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 171, - "endOffset": 174, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b8ba1e1918bfbcc97988753b087c8382", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.6 Critical areas of concern", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 323.47, - "y": 650.06 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 213 - } - ], - "sectionNumber": 2317, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 301, - "endOffset": 304, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3b92ae13e06ceec416b529cc5e1ba988", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 214 - } - ], - "sectionNumber": 2573, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "71e79c60808afeec9dc9bce2111a0069", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 215 - } - ], - "sectionNumber": 2574, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1e2062a74b12771eec0eb0fe80859e28", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 216 - } - ], - "sectionNumber": 2575, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d3f1a4be728ae635306ab81d12d7d432", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 217 - } - ], - "sectionNumber": 2576, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "161ac1e95b44e5aa5d6ff1b30b99dc70", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.3 Rational for the conditions and restrictions to be associated with the approval or authorisation(s), as appropriate", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 313.27, - "y": 633.62 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 217 - } - ], - "sectionNumber": 2351, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 253, - "endOffset": 256, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "425252f667ce000545c1f7b05f1fca5a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 218 - } - ], - "sectionNumber": 2577, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "648a9e2891ad86aec002416dbdc3a45a", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 219 - } - ], - "sectionNumber": 2578, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "07901828b6075af48303c7b7f376087d", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 459.34, - "y": 795.04 - }, - "width": 43.519257, - "height": 10.526819, - "page": 220 - } - ], - "sectionNumber": 2579, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8b52b13ee7cd21c845b668247d07f6e5", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.4.2 Reference list", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 302.81, - "y": 288.81 - }, - "width": 58.888, - "height": 10.0905, - "page": 221 - } - ], - "sectionNumber": 2356, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 160, - "endOffset": 172, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ad7d944d8204dd033a64ef1fa8ce314a", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4.2 Reference list", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 434.07562, - "y": 462.62 - }, - "width": 46.164642, - "height": 11.017679, - "page": 221 - } - ], - "sectionNumber": 2360, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 106, - "endOffset": 116, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "029ea7d8c8ae16e0fabdfb4b3e3d2f3a", - "type": "recommendation_CBI_author", - "value": "EFSA PPR", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "Table in: 3.4.2 Reference list", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 302.81, - "y": 215.34 - }, - "width": 41.392, - "height": 10.0905, - "page": 221 - } - ], - "sectionNumber": 2358, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " Panel (EFSA", - "comments": [], - "startOffset": 16, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "974abb057979ab9cd96a43143b75a839", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Header", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 705.94, - "y": 548.44 - }, - "width": 43.519226, - "height": 10.526819, - "page": 221 - } - ], - "sectionNumber": 2580, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "da4fc58e363bf80d7edd7f829027c3cf", - "type": "hint_only", - "value": "author", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.4.2 Reference list", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 221.54, - "y": 422.75 - }, - "width": 28.873001, - "height": 10.018499, - "page": 221 - } - ], - "sectionNumber": 2354, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 119, - "endOffset": 125, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "559a23796e46469f275512deddc60eb0", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.4.2 Reference list", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 377.69, - "y": 163.5 - }, - "width": 51.804993, - "height": 10.0905, - "page": 221 - } - ], - "sectionNumber": 2358, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 212, - "endOffset": 224, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0a2172ac7092ec7bdc719c4b927c37e1", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.4.2 Reference list", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 410.36307, - "y": 364.67 - }, - "width": 14.536011, - "height": 10.0905, - "page": 221 - } - ], - "sectionNumber": 2355, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 46, - "endOffset": 49, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "79cf0330c34eee80cb8d2cf37eefd1d2", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4.2 Reference list", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 227.28534, - "y": 462.62 - }, - "width": 46.164642, - "height": 11.017679, - "page": 221 - } - ], - "sectionNumber": 2360, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 59, - "endOffset": 69, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b0d1511bb7b12a2c0a31c5b431fa45c0", - "type": "false_positive", - "value": "PPR", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4.2 Reference list", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 646.05835, - "y": 462.62 - }, - "width": 20.496704, - "height": 11.017679, - "page": 221 - } - ], - "sectionNumber": 2360, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 151, - "endOffset": 154, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c12ddc7ce71012a4ebd1aa6fe4c02607", - "type": "CBI_author", - "value": "Mostert", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 60.664 - }, - "width": 32.075226, - "height": 10.526819, - "page": 21 - } - ], - "sectionNumber": 79, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1996", - "comments": [], - "startOffset": 78, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "97c2f4fd926f90025fca4b412c6b2da1", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 297.81 - }, - "width": 33.2406, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 90, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005) ASB2016-77", - "comments": [], - "startOffset": 137, - "endOffset": 145, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "122cb8cc38d8f90e5ec3bc3c020357d4", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 454.43 - }, - "width": 33.2406, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 87, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005) ASB2016-77", - "comments": [], - "startOffset": 139, - "endOffset": 147, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1ba239871e99061ca96e32c172596725", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 222.69 - }, - "width": 33.2406, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 91, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Tribolet (1998) MET2000-145 ", - "textAfter": " (1998) ASB2015-72", - "comments": [], - "startOffset": 105, - "endOffset": 113, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4a39eaf3b10577bc32a45d5e8ebf75e9", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 379.17 - }, - "width": 33.2406, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 88, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Tribolet (1998) MET2000-145 ", - "textAfter": " (1998) ASB2015-72", - "comments": [], - "startOffset": 107, - "endOffset": 115, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2bd50c69961919d7d678455f4623be83", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 245.60999 - }, - "width": 33.2406, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 91, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) MET2000-145", - "comments": [], - "startOffset": 77, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c62eabdbd695cefdfb9a08e3f167937a", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 402.23 - }, - "width": 33.2406, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 88, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) MET2000-145", - "comments": [], - "startOffset": 79, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "671d568276d33a3aab5d849e53d0f6a0", - "type": "CBI_author", - "value": "Gemrot", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-2: Validated methods for the generation of pre-authorization data for S-\nmetolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 426.83 - }, - "width": 31.457703, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 106, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 2014 ASB2016-786", - "comments": [], - "startOffset": 114, - "endOffset": 120, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "313ed7b38dbbc627e4084e4c232d02d0", - "type": "CBI_author", - "value": "Gemrot", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-2: Validated methods for the generation of pre-authorization data for S-\nmetolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 403.91 - }, - "width": 31.457703, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 106, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Gemrot, 2014 ASB2016-786 ", - "textAfter": ", 2014 ASB2016-78", - "comments": [], - "startOffset": 139, - "endOffset": 145, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "33ff5f06d03e0c11dcb619ce8f666b7e", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 579.74 - }, - "width": 33.2406, - "height": 10.526819, - "page": 26 - } - ], - "sectionNumber": 140, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Tribolet (1998) MET2000-145 ", - "textAfter": " (1998) ASB2015-72", - "comments": [], - "startOffset": 133, - "endOffset": 141, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f74fe0329bf28006a458601b00898c57", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 602.78 - }, - "width": 33.2406, - "height": 10.526819, - "page": 26 - } - ], - "sectionNumber": 140, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1998) MET2000-145", - "comments": [], - "startOffset": 105, - "endOffset": 113, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a46050328220d349008887d5b431de04", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-6: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 666.5 - }, - "width": 33.2406, - "height": 10.526819, - "page": 26 - } - ], - "sectionNumber": 139, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005) ASB2016-77", - "comments": [], - "startOffset": 151, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e5e051fc7e6817cc35966465e6a15830", - "type": "CBI_author", - "value": "Robinson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 715.94 - }, - "width": 39.316193, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 183, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005) ASB2015-340", - "comments": [], - "startOffset": 190, - "endOffset": 198, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ed7a2281dc699e97c8cb77150c2fc75d", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 635.42 - }, - "width": 33.2406, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 183, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Tribolet (1997) MET9800636 ", - "textAfter": " (1997) MET9800637", - "comments": [], - "startOffset": 269, - "endOffset": 277, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "911300c6701be01175cb4aff30d263c7", - "type": "CBI_author", - "value": "Wolf", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 692.9 - }, - "width": 21.587372, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 183, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Robinson (2005) ASB2015-340 ", - "textAfter": " (2005) ASB2015-341", - "comments": [], - "startOffset": 218, - "endOffset": 222, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1011c4aab8e61e0971d59f7b3f440e63", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-9: Methods for the determination of residues of S-Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 377.98, - "y": 658.46 - }, - "width": 33.2406, - "height": 10.526819, - "page": 30 - } - ], - "sectionNumber": 183, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Wolf (2005) ASB2015-341 ", - "textAfter": " (1997) MET9800636", - "comments": [], - "startOffset": 242, - "endOffset": 250, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "53730d4c15766d24348ce2b07ab7e3af", - "type": "CBI_author", - "value": "Robinson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 455.87 - }, - "width": 39.316116, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 203, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005), ASB2015-", - "comments": [], - "startOffset": 4, - "endOffset": 12, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "83615940b5a718f72d5fd433216e2899", - "type": "CBI_author", - "value": "Robinson", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 455.87 - }, - "width": 39.316193, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 203, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2005), ASB2015-340", - "comments": [], - "startOffset": 114, - "endOffset": 122, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "825f0c41d9d32571f5ad9f65e231b598", - "type": "CBI_author", - "value": "Wolf", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 432.83 - }, - "width": 21.58731, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 203, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(2005), ASB2015- 340 ", - "textAfter": " (2005), ASB2015-341", - "comments": [], - "startOffset": 34, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "555ae19df6928c4684aabe08dc2f3ada", - "type": "CBI_author", - "value": "Wolf", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 284.11, - "y": 432.83 - }, - "width": 21.587372, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 203, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Robinson (2005), ASB2015-340 ", - "textAfter": " (2005), ASB2015-341", - "comments": [], - "startOffset": 143, - "endOffset": 147, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d67a4574321ae6c474657b35dfbd3d60", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 421.31 - }, - "width": 33.240494, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 203, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Wolf (2005), ASB2015-341 ", - "textAfter": " (1997), MET9800636", - "comments": [], - "startOffset": 59, - "endOffset": 67, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "17763c96fec3dff7aae43b51d7fa4a7a", - "type": "CBI_author", - "value": "Tribolet", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-10: Studies submitted by the notifier, which describe appropriate analytical\nprocedures for S-metolachlor (completeness check of analytical methods\nfor monitoring purposes and post-registration control in accordance to\nguidance document SANCO/825/00 rev. 8.1)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 156.86, - "y": 398.39 - }, - "width": 33.240494, - "height": 10.526819, - "page": 31 - } - ], - "sectionNumber": 203, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Tribolet (1997), MET9800636 ", - "textAfter": " (1997) MET9800637", - "comments": [], - "startOffset": 87, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b1baf673ccbfcaf495d4fc9c7c0148a5", - "type": "false_positive", - "value": "Draize", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6.3 Summary of short-term toxicity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 268.35028, - "y": 209.58002 - }, - "width": 30.355377, - "height": 11.017679, - "page": 37 - } - ], - "sectionNumber": 252, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2055, - "endOffset": 2061, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c6622dbba2706e5615b9444617845f16", - "type": "false_positive", - "value": "May", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6.3 Summary of short-term toxicity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 695.78 - }, - "width": 21.26944, - "height": 11.017679, - "page": 38 - } - ], - "sectionNumber": 252, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3668, - "endOffset": 3671, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "df8ddcd016919770edca8b01f1c667d6", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 252.69 - }, - "width": 36.46048, - "height": 11.017679, - "page": 127 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 667, - "endOffset": 674, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d422d8b2770245da71fe8d9df14463de", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 290.61 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 127 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 378, - "endOffset": 381, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c0c985d0e4b16b583262f71e9071fb08", - "type": "CBI_author", - "value": "Taylor, S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 268.64996 - }, - "width": 40.707733, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1272, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Statistical Re-analysis by ", - "textAfter": " & Walton,", - "comments": [], - "startOffset": 204, - "endOffset": 214, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6c59a824aaf6593f6db82362694aaca3", - "type": "CBI_author", - "value": "Bomfim Pestana C.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 651.74 - }, - "width": 78.907104, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1265, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1997 CGH", - "comments": [], - "startOffset": 105, - "endOffset": 122, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8fdb796bced2296025adf02a3ed8061b", - "type": "CBI_author", - "value": "Taliaferro", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 349.17 - }, - "width": 40.98947, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1272, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " et al.", - "comments": [], - "startOffset": 145, - "endOffset": 155, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e97275638906d4d79d7e9eb426a16199", - "type": "CBI_author", - "value": "Anas", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 78.504, - "y": 349.17 - }, - "width": 21.03952, - "height": 10.5318, - "page": 128 - } - ], - "sectionNumber": 1272, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " platyrhynchos", - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca6ebe8937cc60f13aa1e2ff5ab6dc50", - "type": "CBI_author", - "value": "Walton, H.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 440.95667, - "y": 268.64996 - }, - "width": 45.08304, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1272, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Taylor, S. & ", - "textAfter": " 2014 CEA.110", - "comments": [], - "startOffset": 217, - "endOffset": 227, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "77c487373da6d82f419f9d3c67e7aef2", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 349.17 - }, - "width": 43.77603, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1272, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 43, - "endOffset": 52, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "89d1036a7ca86da64245a4aaadd806ff", - "type": "CBI_author", - "value": "Taylor, S.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 153.18 - }, - "width": 40.660736, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1273, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Statistical Re-analysis by ", - "textAfter": " & Walton,", - "comments": [], - "startOffset": 191, - "endOffset": 201, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a5bf57665748962936b92d890e1f3c2c", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 233.72998 - }, - "width": 43.77603, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1273, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 44, - "endOffset": 53, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f9b8d005601daab67be88dd46afb1cfb", - "type": "CBI_author", - "value": "Taliaferro", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 233.72998 - }, - "width": 40.98947, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1273, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " et al.", - "comments": [], - "startOffset": 132, - "endOffset": 142, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "712b06d5f5933974ce3b40f1753143fe", - "type": "CBI_author", - "value": "Walton, H.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 440.90967, - "y": 153.18 - }, - "width": 45.08304, - "height": 10.526819, - "page": 128 - } - ], - "sectionNumber": 1273, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Taylor, S. & ", - "textAfter": " 2014 CEA.111", - "comments": [], - "startOffset": 204, - "endOffset": 214, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "712eac5908753c21d64524b93ff7cb76", - "type": "CBI_author", - "value": "Potts", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 366.36334, - "y": 139.38 - }, - "width": 22.925415, - "height": 11.017679, - "page": 129 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the edges (", - "textAfter": ", 1971; Rands,", - "comments": [], - "startOffset": 3166, - "endOffset": 3171, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4691c69363f5b46f7e91007324f97c44", - "type": "CBI_author", - "value": "Jahn", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 282.8016, - "y": 227.97003 - }, - "width": 21.368774, - "height": 11.017679, - "page": 129 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(see DEFRA, 2005; ", - "textAfter": " et al.,", - "comments": [], - "startOffset": 2438, - "endOffset": 2442, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "15c6b46f1b1951aa58cbf3dbbd54da54", - "type": "CBI_author", - "value": "Rands", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 423.34, - "y": 139.38 - }, - "width": 28.434387, - "height": 11.017679, - "page": 129 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "edges (Potts, 1971; ", - "textAfter": ", 1985). The", - "comments": [], - "startOffset": 3179, - "endOffset": 3184, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "85a41b6f24c3462a96ae54659045273c", - "type": "published_information", - "value": "DEFRA", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 213.11714, - "y": 227.97003 - }, - "width": 37.04561, - "height": 11.017679, - "page": 129 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2425, - "endOffset": 2430, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5ad30b20444f5d7d2427763ae5d5dd8c", - "type": "CBI_author", - "value": "Kuhn", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 479.51 - }, - "width": 23.131165, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1281, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1995 2317-95", - "comments": [], - "startOffset": 44, - "endOffset": 48, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "84a16225f08d5f7e5c6d292c36af3557", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 462.13904, - "y": 374.73 - }, - "width": 26.91098, - "height": 10.0905, - "page": 129 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1443, - "endOffset": 1449, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "41a520588685b2b7d68cc6b25126bd6d", - "type": "CBI_author", - "value": "Marshall", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.9 Effects on non-target species", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 142.51201, - "y": 190.02002 - }, - "width": 40.16992, - "height": 11.017679, - "page": 129 - } - ], - "sectionNumber": 1284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study of ", - "textAfter": " et al.", - "comments": [], - "startOffset": 2715, - "endOffset": 2723, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e7c80ce60c2cf64b8c833695f5be2712", - "type": "CBI_author", - "value": "Hefner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 319.28998 - }, - "width": 28.648987, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1307, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 D9345", - "comments": [], - "startOffset": 111, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7838fbebcbd5399c9c2e96dbabaf9cb0", - "type": "CBI_author", - "value": "Hoberg", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 362.25 - }, - "width": 31.02945, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1306, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 1995 94-8-540", - "comments": [], - "startOffset": 133, - "endOffset": 139, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "38e7db0e374691df2da7a3412f858f9b", - "type": "CBI_author", - "value": "Liedtke", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 579.86 - }, - "width": 31.437836, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1300, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2011) D2464", - "comments": [], - "startOffset": 52, - "endOffset": 59, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bd0d0fa3193ff7127fcf84b18bbfd5cf", - "type": "CBI_author", - "value": "Liedtke", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 491.27 - }, - "width": 31.437836, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1303, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2011 D2466", - "comments": [], - "startOffset": 56, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4a3e345ddebf64c8c2acdfb02b48c72f", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 709.34 - }, - "width": 18.210884, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1300, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "015ca530ce587e253b2081d49307df82", - "type": "CBI_author", - "value": "Eckenstein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 405.35 - }, - "width": 44.834076, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1305, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2013 D6903", - "comments": [], - "startOffset": 78, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a1a1cc785cb31ffc6973c0fdd8568d5f", - "type": "CBI_author", - "value": "Candolfi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 177.89996 - }, - "width": 32.626038, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1351, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1998 CGA77102/044", - "comments": [], - "startOffset": 132, - "endOffset": 140, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "689ed599abbfc4cbd7df009e6f1cc06f", - "type": "CBI_author", - "value": "Nienstedt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 441.71 - }, - "width": 35.047028, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1346, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1999 CGA77102/050", - "comments": [], - "startOffset": 178, - "endOffset": 187, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f5ddb7c25fb79201e0eb07a250db1eb3", - "type": "CBI_author", - "value": "Neumann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 489.31607, - "y": 549.47 - }, - "width": 18.680939, - "height": 10.095, - "page": 134 - }, - { - "topLeft": { - "x": 452.02, - "y": 539.15 - }, - "width": 21.087982, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1343, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Wesiak & ", - "textAfter": " 1996 CGA77102/016", - "comments": [], - "startOffset": 107, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b9820509eee8f215ddbca797a8636599", - "type": "CBI_author", - "value": "Nienstedt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 318.81 - }, - "width": 35.047028, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1348, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1999 CGA77102/046", - "comments": [], - "startOffset": 144, - "endOffset": 153, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "46c394475d240231bafbbd73e1221592", - "type": "CBI_author", - "value": "Wesiak", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 549.47 - }, - "width": 26.947052, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1343, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Neumann", - "comments": [], - "startOffset": 98, - "endOffset": 104, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d6d64b1343c3cc30c94ef4dacf489b43", - "type": "CBI_author", - "value": "Nienstedt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 487.55 - }, - "width": 35.047028, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1345, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1999 CGA77102/047", - "comments": [], - "startOffset": 157, - "endOffset": 166, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "02c3e66c8d1867d93af1c0b1f8ede070", - "type": "CBI_author", - "value": "Engelhard", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 592.22 - }, - "width": 39.096954, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1342, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1998 CGA77102/039", - "comments": [], - "startOffset": 118, - "endOffset": 127, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2bbcf865ab71f7ed6cdc7900a7dba3dc", - "type": "CBI_author", - "value": "Candolfi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 223.89001 - }, - "width": 32.626038, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1350, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1998 CGA77102/044", - "comments": [], - "startOffset": 122, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "633acd07ec3361888629cf32539ac686", - "type": "CBI_author", - "value": "Nienstedt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 375.09 - }, - "width": 35.047028, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1347, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2000 CGA77102/054", - "comments": [], - "startOffset": 138, - "endOffset": 147, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "46265f50c7bc96367141ff5f89d0c66e", - "type": "CBI_author", - "value": "Candolfi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 132.06 - }, - "width": 32.662018, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1352, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1998 CGA77102/044", - "comments": [], - "startOffset": 115, - "endOffset": 123, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f600353bab8a7e5cb9beb65be1a70bab", - "type": "CBI_author", - "value": "Candolfi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 269.73004 - }, - "width": 32.626038, - "height": 10.095, - "page": 134 - } - ], - "sectionNumber": 1349, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1997 CGA77102/023", - "comments": [], - "startOffset": 151, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bca6c1695999b1a8893e68de742f7a65", - "type": "CBI_author", - "value": "Wesiak", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 711.98 - }, - "width": 26.947052, - "height": 10.095, - "page": 135 - } - ], - "sectionNumber": 1355, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " & Neumann", - "comments": [], - "startOffset": 124, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a214b922cc764ef242f80866d10e6889", - "type": "CBI_author", - "value": "Neumann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 489.31607, - "y": 711.98 - }, - "width": 18.680939, - "height": 10.095, - "page": 135 - }, - { - "topLeft": { - "x": 452.02, - "y": 701.66 - }, - "width": 21.087982, - "height": 10.095, - "page": 135 - } - ], - "sectionNumber": 1355, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Wesiak & ", - "textAfter": " 1996 CGA77102/016", - "comments": [], - "startOffset": 133, - "endOffset": 140, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1cd9a1983a5cc2b6fc3b8475ed54dc93", - "type": "CBI_author", - "value": "Reber", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-5: Endpoints and effect values relevant for the risk assessment for non-target\narthropods", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 452.02, - "y": 662.06 - }, - "width": 22.492004, - "height": 10.095, - "page": 135 - } - ], - "sectionNumber": 1356, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1996 CGA77102/015", - "comments": [], - "startOffset": 125, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1c079308a463a37f43a3a607c1282cc7", - "type": "CBI_author", - "value": "Klein O.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-6: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nearthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 735.98 - }, - "width": 35.2724, - "height": 10.526819, - "page": 137 - } - ], - "sectionNumber": 1374, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2006 20051078/G1-NFE", - "comments": [], - "startOffset": 160, - "endOffset": 168, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5f257cdc63061a0f599656705f37ad8a", - "type": "CBI_author", - "value": "Schulz", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 683.78 - }, - "width": 28.101196, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1393, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA040172_1000", - "comments": [], - "startOffset": 90, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f4a2d22824bfd4bc592464b327befeee", - "type": "CBI_author", - "value": "Schulz", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 730.22 - }, - "width": 28.101196, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1392, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA368208_1001", - "comments": [], - "startOffset": 57, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ad2b1a82e7498ba9718e2c1975538f54", - "type": "CBI_author", - "value": "Schulz", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-7: Summary of endpoints for toxicity of S-metolachlor and its metabolites on\nnon-target soil meso- and macrofauna other than earthworms", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 637.22 - }, - "width": 28.102234, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1394, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 CGA050720_1001", - "comments": [], - "startOffset": 90, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e09109ca8b14c0fee93f8de7178ab726", - "type": "CBI_author", - "value": "Schulz, L", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 401.39 - }, - "width": 39.216553, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1400, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2011 11", - "comments": [], - "startOffset": 63, - "endOffset": 72, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cfa4e273f602d9476a76f3d0e38c2387", - "type": "CBI_author", - "value": "Grade, R.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 360.57 - }, - "width": 39.575073, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1401, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1996 96156", - "comments": [], - "startOffset": 70, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7ea7db6ed426f9cdbef90ba1ffaa0e4b", - "type": "CBI_author", - "value": "Grade, R.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-8: Endpoints and effect values relevant for the risk assessment for soil nitrogen transformation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 426.7, - "y": 319.89 - }, - "width": 39.575073, - "height": 10.526819, - "page": 138 - } - ], - "sectionNumber": 1402, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1999 CEMR-658", - "comments": [], - "startOffset": 70, - "endOffset": 79, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6c63504acb0ad5631e9379d853654514", - "type": "CBI_author", - "value": "Bramby-Gunary", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 529.19 - }, - "width": 60.08496, - "height": 10.0905, - "page": 139 - } - ], - "sectionNumber": 1415, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 A9396G_1124", - "comments": [], - "startOffset": 222, - "endOffset": 235, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "23bd259d0ef35dc907ae9f203ccc93e3", - "type": "CBI_author", - "value": "Bramby-Gunary", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 379.17 - }, - "width": 60.08496, - "height": 10.0905, - "page": 139 - } - ], - "sectionNumber": 1416, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 A9396G_1124", - "comments": [], - "startOffset": 221, - "endOffset": 234, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4595970650b1d7a4025f3d7cf1fb0c8d", - "type": "PII", - "value": "R. Grade", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.9.10 Summary of effects on biological methods for sewage treatment", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 482.4933, - "y": 746.42 - }, - "width": 42.720154, - "height": 11.017679, - "page": 141 - } - ], - "sectionNumber": 1424, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Point 8.7 (", - "textAfter": " 1996c, R.Grade", - "comments": [], - "startOffset": 407, - "endOffset": 415, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "06473065ea962a612fa5373562adee3e", - "type": "CBI_author", - "value": "R.Grade", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.9.10 Summary of effects on biological methods for sewage treatment", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 104.77055, - "y": 733.7 - }, - "width": 37.943054, - "height": 11.017679, - "page": 141 - } - ], - "sectionNumber": 1424, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(R. Grade 1996c, ", - "textAfter": " 1991a, R.", - "comments": [], - "startOffset": 423, - "endOffset": 430, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b818e0938ed819178f40fce92fc904e9", - "type": "PII", - "value": "R. Grade", - "reason": "PII (Personal Identification Information) found", - "matchedRule": 19, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.9.10 Summary of effects on biological methods for sewage treatment", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 179.50352, - "y": 733.7 - }, - "width": 42.10193, - "height": 11.017679, - "page": 141 - } - ], - "sectionNumber": 1424, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "1996c, R.Grade 1991a, ", - "textAfter": " 1991b) demonstrated", - "comments": [], - "startOffset": 438, - "endOffset": 446, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca79ad3ff27494a9e48c6dc6250a5920", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Mammals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 170.21, - "y": 229.64996 - }, - "width": 51.80992, - "height": 10.929359, - "page": 143 - } - ], - "sectionNumber": 1499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 165, - "endOffset": 174, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4a1b6a5f306e547392abfe459846996a", - "type": "CBI_author", - "value": "Funkenhaus & Giessing", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Mammals", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 106.34, - "y": 410.63 - }, - "width": 106.80736, - "height": 11.017679, - "page": 145 - } - ], - "sectionNumber": 1499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "al. (2013) - ", - "textAfter": " (2010) -", - "comments": [], - "startOffset": 729, - "endOffset": 750, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ea759027d796c060deddc9dff409f378", - "type": "false_positive", - "value": "Wood mouse", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Mammals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 470.10544, - "y": 270.57 - }, - "width": 29.096802, - "height": 10.929359, - "page": 145 - }, - { - "topLeft": { - "x": 170.21, - "y": 257.85004 - }, - "width": 31.084015, - "height": 10.929359, - "page": 145 - } - ], - "sectionNumber": 1499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1463, - "endOffset": 1473, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bfc1697a967434791b3603fcfeef7d44", - "type": "CBI_author", - "value": "Albuquerque, R.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Mammals", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 435.95 - }, - "width": 74.06268, - "height": 11.017679, - "page": 145 - } - ], - "sectionNumber": 1499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the report of ", - "textAfter": " (2014): -", - "comments": [], - "startOffset": 681, - "endOffset": 696, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b1153dc8002ed4221e88aa49e2efea2d", - "type": "false_positive", - "value": "Grimm et", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Mammals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 106.34, - "y": 423.35 - }, - "width": 43.393616, - "height": 11.017679, - "page": 145 - } - ], - "sectionNumber": 1499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 707, - "endOffset": 715, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f6a4120990e4057bdf959c6dd7279e7d", - "type": "CBI_author", - "value": "Wolf, C.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Mammals", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 106.34, - "y": 398.03 - }, - "width": 39.264633, - "height": 11.017679, - "page": 145 - } - ], - "sectionNumber": 1499, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Giessing (2010) - ", - "textAfter": " (2005). The", - "comments": [], - "startOffset": 760, - "endOffset": 768, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca543e7d109353f046384157920efbf4", - "type": "CBI_author", - "value": "Mellanby, K", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Biomagnification in Terrestrial Food Chains", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 76.224, - "y": 77.46399 - }, - "width": 46.440994, - "height": 10.0905, - "page": 147 - } - ], - "sectionNumber": 1511, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "metabolites formed. 1 ", - "textAfter": ". (1967): Food", - "comments": [], - "startOffset": 482, - "endOffset": 493, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "763af156165e2692433cd0084bda508a", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Bioaccumulation and food chain behaviour for birds and mammals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 309.49637, - "y": 474.71 - }, - "width": 30.973602, - "height": 11.017679, - "page": 147 - } - ], - "sectionNumber": 1510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1895, - "endOffset": 1901, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ec46b26220bfae17df3a55f6f24af340", - "type": "CBI_author", - "value": "Gurney", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Biomagnification in Terrestrial Food Chains", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 76.224, - "y": 67.14398 - }, - "width": 28.036003, - "height": 10.0905, - "page": 147 - } - ], - "sectionNumber": 1511, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "S. 1128–1130 2 ", - "textAfter": " et al.", - "comments": [], - "startOffset": 591, - "endOffset": 597, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5f11b5de00eb0d6418c5a8c5c8c68223", - "type": "CBI_author", - "value": "Wolf", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Bioaccumulation and food chain behaviour for birds and mammals", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 296.59, - "y": 639.14 - }, - "width": 21.699982, - "height": 11.0232, - "page": 147 - } - ], - "sectionNumber": 1510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "field studies by ", - "textAfter": " (2005), Funkenhaus", - "comments": [], - "startOffset": 796, - "endOffset": 800, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f4aed4edefa001c995534b48ed36ed97", - "type": "CBI_address", - "value": "Germany", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "Bioaccumulation and food chain behaviour for birds and mammals", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 430.47952, - "y": 626.54 - }, - "width": 41.89215, - "height": 11.017679, - "page": 147 - } - ], - "sectionNumber": 1510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "(Austria, France and ", - "textAfter": "). However, the", - "comments": [], - "startOffset": 922, - "endOffset": 929, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "76809447d1dbbb966783d1a1984369b3", - "type": "false_positive", - "value": "Grimm et", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Bioaccumulation and food chain behaviour for birds and mammals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 626.54 - }, - "width": 43.61441, - "height": 11.0232, - "page": 147 - } - ], - "sectionNumber": 1510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 842, - "endOffset": 850, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "14dfcc53019096f2ba2b5a3361275c0e", - "type": "CBI_author", - "value": "Funkenhaus & Giessing", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Bioaccumulation and food chain behaviour for birds and mammals", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 358.99, - "y": 639.14 - }, - "width": 111.5766, - "height": 11.0232, - "page": 147 - } - ], - "sectionNumber": 1510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "by Wolf (2005), ", - "textAfter": " (2010) and", - "comments": [], - "startOffset": 809, - "endOffset": 830, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ad9aa1d0fc19db337ca8687edfc0cd8a", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Bioaccumulation and food chain behaviour for birds and mammals", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 377.97327, - "y": 626.54 - }, - "width": 30.830078, - "height": 11.017679, - "page": 147 - } - ], - "sectionNumber": 1510, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 911, - "endOffset": 917, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "57606e1cdd3d64f6bf588835dec49c70", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Biomagnification in Terrestrial Food Chains", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 444.22147, - "y": 159.77997 - }, - "width": 36.438416, - "height": 11.017679, - "page": 147 - } - ], - "sectionNumber": 1511, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 327, - "endOffset": 334, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "f147f0867fd48c5ace7f53cd337ca9a5", - "type": "CBI_author", - "value": "Klein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.9.11.3 Summary of the risk assessment for non-target soil meso- and macrofauna", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 187.01854, - "y": 125.82001 - }, - "width": 25.575073, - "height": 11.017679, - "page": 158 - } - ], - "sectionNumber": 1704, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "submitted field study ", - "textAfter": " (2006) shows", - "comments": [], - "startOffset": 1917, - "endOffset": 1922, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "729b6ddb410463e6bfa09fe1c68c2682", - "type": "false_positive", - "value": "Overall, the", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11.3 Summary of the risk assessment for non-target soil meso- and macrofauna", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 365.48022, - "y": 214.38 - }, - "width": 53.49524, - "height": 11.017679, - "page": 158 - } - ], - "sectionNumber": 1704, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1394, - "endOffset": 1406, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4cbfee0fb37ba5b8075d103fd467ee56", - "type": "CBI_author", - "value": "Bramby-Gunary J.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-31: ER50 values available for vegetative vigour", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 420.58, - "y": 531.71 - }, - "width": 67.92398, - "height": 10.0905, - "page": 164 - } - ], - "sectionNumber": 1832, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 2014 Conducted", - "comments": [], - "startOffset": 66, - "endOffset": 82, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "46ec82276bb1510fa26793208c5c79c8", - "type": "published_information", - "value": "Environmental Health", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 165.7352, - "y": 296.01 - }, - "width": 98.3949, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1758, - "endOffset": 1778, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "27e17776591daf2bf479fcdb4d488c11", - "type": "false_positive", - "value": "March", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 378.12656, - "y": 101.34003 - }, - "width": 29.770233, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2777, - "endOffset": 2782, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6e73f9dc4e43dc4fc6ab11eacd81058d", - "type": "false_positive", - "value": "List of", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 75.37104, - "y": 671.42 - }, - "width": 28.76561, - "height": 11.0232, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 65, - "endOffset": 72, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c487a1c1e208fe132da605c8e769453e", - "type": "false_positive", - "value": "PPR", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 240.40976, - "y": 282.57 - }, - "width": 20.607056, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1842, - "endOffset": 1845, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e8278ced04ea056090930f4cb7a39782", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 311.63287, - "y": 192.41998 - }, - "width": 23.746063, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2176, - "endOffset": 2181, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2a9e36c198a8fb79bd3cad15d850ab85", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 460.3007, - "y": 282.57 - }, - "width": 65.12027, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1884, - "endOffset": 1896, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a033ddbe349a7a5cf0f240f6f3afa08e", - "type": "published_information", - "value": "edition", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 263.1229, - "y": 594.02 - }, - "width": 31.591797, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 489, - "endOffset": 496, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "08a3032bbab3ec27be4edd042d30c4ac", - "type": "CBI_address", - "value": "MRL", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 138.97423, - "y": 88.02399 - }, - "width": 24.923676, - "height": 11.017679, - "page": 218 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "2011).  OECD ", - "textAfter": " calculator (2011)", - "comments": [], - "startOffset": 2797, - "endOffset": 2800, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "59f3f20e77b10dfdfcc43531f941b241", - "type": "false_positive", - "value": "Guideline", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 320.81674, - "y": 80.104004 - }, - "width": 44.320923, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6600, - "endOffset": 6609, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "655c617882b97e0e68c5f223d98f9260", - "type": "false_positive", - "value": "July", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 262.63715, - "y": 513.11 - }, - "width": 19.458862, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4286, - "endOffset": 4290, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ba55868b89bdebd7d44f161005efce83", - "type": "false_positive", - "value": "June", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 135.62192, - "y": 236.01001 - }, - "width": 21.24736, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 5754, - "endOffset": 5758, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2647aa158892bd54e88533a0507c64d8", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 148.30688, - "y": 474.47 - }, - "width": 62.986237, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4504, - "endOffset": 4516, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "78dec878b3e6983cf5e761f19398e86c", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 460.62247, - "y": 603.26 - }, - "width": 64.51309, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3783, - "endOffset": 3795, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "fbc03e19fdc75efce26080f08f82689d", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 417.094, - "y": 719.54 - }, - "width": 36.438416, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3132, - "endOffset": 3139, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a7a3b266246c1c8b641dda14f8eaf137", - "type": "false_positive", - "value": "September", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 345.38602, - "y": 280.76996 - }, - "width": 47.964172, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 5560, - "endOffset": 5569, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6043dc8eb4cdfb20a7ed729bf9c1e8f1", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 458.8842, - "y": 448.31 - }, - "width": 66.32364, - "height": 11.017679, - "page": 219 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4690, - "endOffset": 4702, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bb53c6182037666ddcfea33c0af79ba9", - "type": "CBI_author", - "value": "Arnold D", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 153.3483, - "y": 395.39 - }, - "width": 43.139694, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8459, - "endOffset": 8467, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f03d3c6676d9a9d62517355532d2ddcd", - "type": "recommendation_CBI_author", - "value": "JONG, F.M.W.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 125.16319, - "y": 604.22 - }, - "width": 70.772766, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7436, - "endOffset": 7448, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "65fde9ea196a79d48031107c70a1dde6", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 454.33603, - "y": 758.32 - }, - "width": 23.54367, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6764, - "endOffset": 6769, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "be72e57a5400729f8b8cbdab98c1fadd", - "type": "CBI_author", - "value": "Vogt, H.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 237.54318, - "y": 655.46 - }, - "width": 40.445984, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "P.A.; Schmuck, R.; ", - "textAfter": " (2001): Guidance", - "comments": [], - "startOffset": 7151, - "endOffset": 7159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7ed2a211f3c9988e9ba6881aa983df25", - "type": "CBI_author", - "value": "Candolfi, M.P.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 106.34, - "y": 668.18 - }, - "width": 67.438705, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "1995) Ecotoxicology  ", - "textAfter": "; Barrett, K.L.;", - "comments": [], - "startOffset": 7032, - "endOffset": 7046, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5f3bdc8f968447890c846e8202bbce2c", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 471.45062, - "y": 474.47 - }, - "width": 53.958923, - "height": 11.017679, - "page": 220 - }, - { - "topLeft": { - "x": 106.94, - "y": 461.75 - }, - "width": 14.490875, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8151, - "endOffset": 8163, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8f85b63877258563fbecfb9db8d7f848", - "type": "false_positive", - "value": "January", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 411.46036, - "y": 213.53998 - }, - "width": 35.30124, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 9456, - "endOffset": 9463, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d46112970a4aeff9a146c58caea3d5ce", - "type": "CBI_author", - "value": "Forster, R", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 308.50452, - "y": 668.18 - }, - "width": 46.08838, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "K.L.; Campbell, P.; ", - "textAfter": ".; Grandy, N.;", - "comments": [], - "startOffset": 7077, - "endOffset": 7087, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "fb337c8a8efd0856cb603077bd2a2b7b", - "type": "recommendation_CBI_author", - "value": "BROCK, T.C.M.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 201.91322, - "y": 604.22 - }, - "width": 77.97093, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7450, - "endOffset": 7463, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ff0bdc5c35e7887c82d2dada09e649de", - "type": "CBI_author", - "value": "Grandy, N", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 363.13147, - "y": 668.18 - }, - "width": 48.427826, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "P.; Forster, R.; ", - "textAfter": ".; Huet, M.C.;", - "comments": [], - "startOffset": 7090, - "endOffset": 7099, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c66a422f99e50e94410b2d500835b0c1", - "type": "published_information", - "value": "Workshop", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 106.94, - "y": 630.14 - }, - "width": 46.926407, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7304, - "endOffset": 7312, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d626709b8d4fd30cab261e913112b7b4", - "type": "CBI_author", - "value": "Francis", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 335.12576, - "y": 382.65 - }, - "width": 33.358246, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Press, Taylor & ", - "textAfter": " Group, Boca", - "comments": [], - "startOffset": 8584, - "endOffset": 8591, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f983a0037cb7e02504d288e33aa4ba98", - "type": "CBI_author", - "value": "Campbell, P", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 243.50093, - "y": 668.18 - }, - "width": 56.43187, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "M.P.; Barrett, K.L.; ", - "textAfter": ".; Forster, R.;", - "comments": [], - "startOffset": 7063, - "endOffset": 7074, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6dce76f44dcc09dbce3c9930159f4dce", - "type": "CBI_author", - "value": "Barrett, K.L.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 179.60141, - "y": 668.18 - }, - "width": 58.098877, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": " Candolfi, M.P.; ", - "textAfter": "; Campbell, P.;", - "comments": [], - "startOffset": 7048, - "endOffset": 7061, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "60c92dd34d83c79e1e7b9e599f0265d7", - "type": "CBI_author", - "value": "Huet, M.C.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 420.08682, - "y": 668.18 - }, - "width": 51.364532, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "R.; Grandy, N.; ", - "textAfter": "; Lewis. G.;", - "comments": [], - "startOffset": 7102, - "endOffset": 7112, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ab53ad5ce2e87eedd910c7a151c6e242", - "type": "CBI_author", - "value": "Schmuck, R.", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 172.5507, - "y": 655.46 - }, - "width": 58.92688, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "G.; Oomen, P.A.; ", - "textAfter": "; Vogt, H.", - "comments": [], - "startOffset": 7138, - "endOffset": 7149, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1eacde1e867f0e4941b084ec379e2cdf", - "type": "CBI_author", - "value": "Oomen, P.A", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 106.94, - "y": 655.46 - }, - "width": 56.85135, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "M.C.; Lewis. G.; ", - "textAfter": ".; Schmuck, R.;", - "comments": [], - "startOffset": 7125, - "endOffset": 7135, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "af112cd19c008ecbcaf5259e6572f566", - "type": "false_positive", - "value": "London", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 463.2008, - "y": 382.65 - }, - "width": 35.345398, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8611, - "endOffset": 8617, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "01d2fbc12eb272af8e5fa3f5a963364a", - "type": "published_information", - "value": "Press", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 261.27917, - "y": 382.65 - }, - "width": 24.338562, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8568, - "endOffset": 8573, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "2e7a00630c59757d38ce0861982713a9", - "type": "CBI_author", - "value": "Taylor", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 290.52417, - "y": 382.65 - }, - "width": 30.46576, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "& CRC Press, ", - "textAfter": " & Francis", - "comments": [], - "startOffset": 8575, - "endOffset": 8581, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b8ab9de6193b348c26bd8245ee639f5a", - "type": "false_positive", - "value": "North", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 254.3461, - "y": 745.58 - }, - "width": 26.656952, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6813, - "endOffset": 6818, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4967fe9fb84979f215228e3fffa6b694", - "type": "false_positive", - "value": "New York", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 503.62927, - "y": 382.65 - }, - "width": 21.688965, - "height": 11.017679, - "page": 220 - }, - { - "topLeft": { - "x": 106.94, - "y": 370.05 - }, - "width": 23.665115, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8619, - "endOffset": 8627, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5361895a99931efd8f70ce72a06e331b", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 471.44516, - "y": 551.99 - }, - "width": 54.080353, - "height": 11.017679, - "page": 220 - }, - { - "topLeft": { - "x": 106.94, - "y": 539.27 - }, - "width": 14.490875, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7747, - "endOffset": 7759, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "79d82d63dbed341d2ca74f455788ceb3", - "type": "false_positive", - "value": "Short", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 325.85934, - "y": 278.37 - }, - "width": 24.70288, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 9074, - "endOffset": 9079, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "305cc739d36ae73ef55d87b6670dc64d", - "type": "CBI_author", - "value": "Maltby L", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 106.34, - "y": 395.39 - }, - "width": 42.399994, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8449, - "endOffset": 8457, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0d4b126527d932577402547f3922bfcd", - "type": "published_information", - "value": "Press", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 197.73294, - "y": 382.65 - }, - "width": 24.117752, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8556, - "endOffset": 8561, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1ac812dd70f74c26f5e8427172b2248d", - "type": "published_information", - "value": "Workshop", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 106.34, - "y": 226.28998 - }, - "width": 46.926407, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 9297, - "endOffset": 9305, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e828376af57d9a5f2788b3ce21897475", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 471.7236, - "y": 513.11 - }, - "width": 53.60562, - "height": 11.017679, - "page": 220 - }, - { - "topLeft": { - "x": 106.94, - "y": 500.51 - }, - "width": 14.490875, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7951, - "endOffset": 7963, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0cf270a9b7db71b2de381251ceb8d2e7", - "type": "false_positive", - "value": "March", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 138.72415, - "y": 706.82 - }, - "width": 29.770248, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7004, - "endOffset": 7009, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "44f4570120f134f1327ee50c2995157d", - "type": "CBI_author", - "value": "Arts G", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 201.06317, - "y": 395.39 - }, - "width": 30.896317, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 8469, - "endOffset": 8475, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4bd2564fe66d9397e6349ef031334c7c", - "type": "published_information", - "value": "EFSA Journal", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 471.7236, - "y": 162.06 - }, - "width": 53.60562, - "height": 11.017679, - "page": 220 - }, - { - "topLeft": { - "x": 106.94, - "y": 149.46002 - }, - "width": 14.490875, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 9659, - "endOffset": 9671, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "12afd97af487b6e4328bfa2ca606e7c1", - "type": "published_information", - "value": "ISBN", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 203.03212, - "y": 617.54 - }, - "width": 25.88417, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7411, - "endOffset": 7415, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e0c5eda759fcd42b4ddcd7357f724874", - "type": "CBI_author", - "value": "Lewis. G", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "3.4 Appendices", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 477.27408, - "y": 668.18 - }, - "width": 42.433136, - "height": 11.017679, - "page": 220 - } - ], - "sectionNumber": 2353, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "N.; Huet, M.C.; ", - "textAfter": ".; Oomen, P.A.;", - "comments": [], - "startOffset": 7114, - "endOffset": 7122, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "988c2b802cff786e5a77b9339d894f03", - "type": "false_positive", - "value": "Henry’s law", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.2 Physical and chemical properties", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 430.78, - "y": 362.49 - }, - "width": 55.349945, - "height": 11.017679, - "page": 19 - } - ], - "sectionNumber": 67, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 290, - "endOffset": 301, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a45296dc22d9c827e66344be51da6f9a", - "type": "CBI_author", - "value": "Meyer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 112.859985 - }, - "width": 26.965729, - "height": 10.526819, - "page": 21 - } - ], - "sectionNumber": 78, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2013) ASB2016-778", - "comments": [], - "startOffset": 120, - "endOffset": 125, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "21c873cbfaa14d581ac8c86f46f0a3a0", - "type": "CBI_author", - "value": "Meyer", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 89.94403 - }, - "width": 26.965729, - "height": 10.526819, - "page": 21 - } - ], - "sectionNumber": 78, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Meyer (2013) ASB2016-778 ", - "textAfter": " (2013a) ASB2016-77", - "comments": [], - "startOffset": 145, - "endOffset": 150, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "32b2c6c10e56d28cabd7b4269f542697", - "type": "CBI_author", - "value": "Hazelette", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 118.26001 - }, - "width": 38.638885, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 93, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "O’Loughlin (1981) TOX9800334 ", - "textAfter": " (1989) TOX980031", - "comments": [], - "startOffset": 131, - "endOffset": 140, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b9761a0d81820e00c301165df9ce5f92", - "type": "CBI_author", - "value": "Fankhauser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 88.98401 - }, - "width": 46.885803, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 94, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1999) ASB2015-10977", - "comments": [], - "startOffset": 59, - "endOffset": 69, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5e2710bb6f8a8bdf418d33a597507a26", - "type": "false_positive", - "value": "Not stated", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 226.37, - "y": 141.18 - }, - "width": 41.72644, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 93, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 48, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e59a838c25dbea7ac5e0c18b3f804934", - "type": "CBI_author", - "value": "Fankhauser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 66.064026 - }, - "width": 46.885803, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 94, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Fankhauser (1999) ASB2015-10977 ", - "textAfter": " (1999", - "comments": [], - "startOffset": 91, - "endOffset": 101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bbd897cc5f5526dc806f2ecc04bf08e7", - "type": "CBI_author", - "value": "O’Loughlin", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 141.18 - }, - "width": 48.160706, - "height": 10.526819, - "page": 22 - } - ], - "sectionNumber": 93, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1981) TOX9800334", - "comments": [], - "startOffset": 102, - "endOffset": 112, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "da2866261270a6ec88ec64822ca666b6", - "type": "CBI_author", - "value": "Khalil", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 621.62 - }, - "width": 25.85025, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 101, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995) TOX980033", - "comments": [], - "startOffset": 85, - "endOffset": 91, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1800ad44767e30bbed7a2ff1ee689182", - "type": "CBI_author", - "value": "Chang", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-1: Validated methods for the generation of pre-authorization data for\nS-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 422.5, - "y": 650.9 - }, - "width": 27.085297, - "height": 10.526819, - "page": 23 - } - ], - "sectionNumber": 100, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995) TOX980016", - "comments": [], - "startOffset": 58, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "863063b64c950eb3b1536025b2ebc3cc", - "type": "CBI_author", - "value": "Doubovetzky", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.5-4: Validated methods for the generation of pre-authorization data for metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 428.26, - "y": 542.03 - }, - "width": 54.78412, - "height": 10.526819, - "page": 25 - } - ], - "sectionNumber": 130, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1999) ASB2016-76", - "comments": [], - "startOffset": 89, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "118e3a115365cc5126049c49696348dd", - "type": "CBI_author", - "value": "Anon", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 390.4532, - "y": 84.54401 - }, - "width": 25.354218, - "height": 11.017679, - "page": 31 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the applicants (", - "textAfter": "., 2014 ASB2016-1395).", - "comments": [], - "startOffset": 759, - "endOffset": 763, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3f413457fb580a7338e61a9531e13b01", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 147.77997 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 31 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 199, - "endOffset": 202, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a59bdcf0bbe892847c6e501e71b80154", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 479.17007, - "y": 71.94403 - }, - "width": 46.16458, - "height": 11.017679, - "page": 31 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 872, - "endOffset": 882, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "66d9f76e6d4717024cb264e2df2183b9", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 224.94098, - "y": 71.94403 - }, - "width": 32.717926, - "height": 11.017679, - "page": 31 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 817, - "endOffset": 823, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "33a339955e120a3ca7fa0d1ccd286d7d", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 210.584, - "y": 160.5 - }, - "width": 32.717926, - "height": 11.017679, - "page": 31 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 169, - "endOffset": 175, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c6c114e5f265116dc3a745b760ff0e2f", - "type": "false_positive", - "value": "August", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 412.37253, - "y": 521.15 - }, - "width": 34.649933, - "height": 10.929359, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2766, - "endOffset": 2772, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "24bd5615e2a4fc1e031b6f7d4c59a9b4", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 140.74991, - "y": 556.67 - }, - "width": 46.164658, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2532, - "endOffset": 2542, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9e6bd15a817d84ad1ce6278843b7ed95", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 368.2402, - "y": 683.18 - }, - "width": 46.186768, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1659, - "endOffset": 1669, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "641cae5ee15a6b492d54d06f4b5eea66", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 581.9 - }, - "width": 46.30819, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2310, - "endOffset": 2320, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b7830e046238cc8aaee262e42085d161", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 463.0504, - "y": 746.42 - }, - "width": 46.286102, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1177, - "endOffset": 1187, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3629039de950e16b11051e6c490c1302", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 419.79694, - "y": 645.14 - }, - "width": 46.308197, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1891, - "endOffset": 1901, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5c691c177882a0b32b0a0268223b0bb7", - "type": "CBI_author", - "value": "Hartnett", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 430.69354, - "y": 683.18 - }, - "width": 37.045624, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "The references by ", - "textAfter": " et al.", - "comments": [], - "startOffset": 1673, - "endOffset": 1681, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6186e2bfbe911f3b4cef3811963f68b1", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 413.54364, - "y": 708.5 - }, - "width": 46.286102, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1466, - "endOffset": 1476, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e7afe13b081cf8a5ee7e696b94fa5603", - "type": "false_positive", - "value": "Kale", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 83.761444, - "y": 670.46 - }, - "width": 21.843521, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1699, - "endOffset": 1703, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "9b7ab4e6249bdf143fb5bd42e7433e08", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 427.65753, - "y": 569.27 - }, - "width": 17.615204, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2496, - "endOffset": 2499, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "10fa6d8c39587e8538307f6032ffc9bb", - "type": "hint_only", - "value": "references", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 463.16034, - "y": 619.94 - }, - "width": 46.197784, - "height": 11.017679, - "page": 32 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2091, - "endOffset": 2101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "15efbf12a2329bb97452a4c5ad46eb41", - "type": "hint_only", - "value": "purity of", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6 Effects on human and animal health", - "color": [ - 0.98039216, - 0.59607846, - 0.96862745 - ], - "positions": [ - { - "topLeft": { - "x": 113.73504, - "y": 681.62 - }, - "width": 39.33088, - "height": 11.017679, - "page": 33 - } - ], - "sectionNumber": 219, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2984, - "endOffset": 2993, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "40b5ba4225a3eec1233185bb34bf4d52", - "type": "CBI_author", - "value": "Matting E", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 531.47 - }, - "width": 41.128906, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 225, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014), ASB2016-", - "comments": [], - "startOffset": 49, - "endOffset": 58, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "d9b6d99e34c5f17ebff5878c37ed8ccc", - "type": "CBI_author", - "value": "Glaza SM", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 646.7 - }, - "width": 41.17862, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 222, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980015", - "comments": [], - "startOffset": 112, - "endOffset": 120, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "276f3f9cd78e1377c76cd97595ab039e", - "type": "CBI_author", - "value": "Glaza SM", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 501.71 - }, - "width": 41.17862, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 226, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980015", - "comments": [], - "startOffset": 54, - "endOffset": 62, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "670c4adddb4a14e8a777e3c1394432ad", - "type": "false_positive", - "value": "Buehler)", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 95.40841, - "y": 325.16998 - }, - "width": 35.86001, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 231, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 39, - "endOffset": 47, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0146e25e50c52893f7b150228ca8d5ed", - "type": "CBI_author", - "value": "Gehrke H", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 280.28998 - }, - "width": 39.97351, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 232, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (2014), ASB2016-", - "comments": [], - "startOffset": 134, - "endOffset": 142, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "18bfe44a46da812c44ab89a003e68b68", - "type": "CBI_author", - "value": "Glaza SM", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 401.03 - }, - "width": 41.17862, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 229, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980016", - "comments": [], - "startOffset": 120, - "endOffset": 128, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "34a2f01d1a0b22c487b07887727a220d", - "type": "CBI_author", - "value": "Marty JH", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 362.73 - }, - "width": 38.97751, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 230, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980016", - "comments": [], - "startOffset": 156, - "endOffset": 164, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "db153a25158a8a3b670aa776c3dc6db4", - "type": "CBI_author", - "value": "Glaza SM", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 442.19 - }, - "width": 41.17862, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 228, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980015", - "comments": [], - "startOffset": 102, - "endOffset": 110, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1209454ed2137184c23491fc9cebe898", - "type": "false_positive", - "value": "Maximisation test, Buehler", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 79.93056, - "y": 336.69 - }, - "width": 56.467255, - "height": 10.526819, - "page": 34 - }, - { - "topLeft": { - "x": 76.584, - "y": 325.16998 - }, - "width": 51.327896, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 231, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 20, - "endOffset": 46, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e07defd78e07b2f699ca7cd997ba3ae5", - "type": "CBI_author", - "value": "Holbert MS", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 471.95 - }, - "width": 48.499237, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 227, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995), TOX980015", - "comments": [], - "startOffset": 56, - "endOffset": 66, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca0636c978ed6b64c50b7b1cb6f7cee0", - "type": "CBI_author", - "value": "Glaza SM", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 321.45 - }, - "width": 41.17862, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 231, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980016", - "comments": [], - "startOffset": 147, - "endOffset": 155, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bab8d9ba63fe522eceb8e23dde2391a1", - "type": "CBI_author", - "value": "Schoch M", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 591.02 - }, - "width": 41.63684, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 223, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1994), TOX980015", - "comments": [], - "startOffset": 49, - "endOffset": 57, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bbdb866936d60e01622f47303a8beabe", - "type": "CBI_author", - "value": "Winkler G", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-2: Summary of acute toxicity data with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 399.82, - "y": 561.23 - }, - "width": 43.329193, - "height": 10.526819, - "page": 34 - } - ], - "sectionNumber": 224, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1996), TOX980015", - "comments": [], - "startOffset": 51, - "endOffset": 60, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7566f74742c793975c9a872534c412e4", - "type": "CBI_author", - "value": "Fankhauser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 444.11 - }, - "width": 46.885803, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 247, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 113, - "endOffset": 123, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "98bf6d698048ce58c9e5eedfd04be62f", - "type": "CBI_author", - "value": "Fankhauser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 618.5 - }, - "width": 46.885803, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 243, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 113, - "endOffset": 123, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "72ea681c90dd21cd2b4c7dde5e488344", - "type": "CBI_author", - "value": "Mastrocco", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 322.05 - }, - "width": 43.14081, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 250, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 152, - "endOffset": 161, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a074d0d918bca9d100479965f1f95ae7", - "type": "CBI_author", - "value": "Hazelette", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 362.73 - }, - "width": 38.638885, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 249, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 76, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "00a51609d51ef3e1caaae832282f4c76", - "type": "CBI_author", - "value": "Chang", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 403.43 - }, - "width": 27.085297, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 248, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 103, - "endOffset": 108, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f0151011e7ade810adfd658a5dcf6003", - "type": "CBI_author", - "value": "Fankhauser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 484.79 - }, - "width": 46.885803, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 246, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 115, - "endOffset": 125, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e5bc6e118c829496c79390927d2200c4", - "type": "CBI_author", - "value": "Chang", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 536.99 - }, - "width": 27.085297, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 245, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 152, - "endOffset": 157, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3d7618082b9083c1b942006e5c489401", - "type": "CBI_author", - "value": "Fankhauser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-7: Summary of the results of the submitted short-term toxicity studies with S-\nMetolachlor or Metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 465.82, - "y": 577.7 - }, - "width": 46.885803, - "height": 10.526819, - "page": 37 - } - ], - "sectionNumber": 244, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 119, - "endOffset": 129, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e8468d8b6862388522dabddb76be05f8", - "type": "CBI_author", - "value": "Strasser", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 169.26001 - }, - "width": 32.49356, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 259, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 94, - "endOffset": 102, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f6b12fbf31a0af091de3b3957ab3b1af", - "type": "CBI_author", - "value": "Wollny", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 221.48999 - }, - "width": 31.02948, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 258, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 84, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "89b2c4179918a2cb7bb2135534ae3811", - "type": "CBI_author", - "value": "Bohnenberger", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 117.06 - }, - "width": 57.423523, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 260, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 122, - "endOffset": 134, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "430eb7051064e24e9008df6e48bfc2c8", - "type": "false_positive", - "value": "Ames", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 211.94041, - "y": 348.81 - }, - "width": 24.306412, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 256, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 34, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "da2f167621e0b79606638fedc8324ba1", - "type": "CBI_author", - "value": "Beilstein", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 273.69 - }, - "width": 36.457672, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 257, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 84, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bcef8c35a83ec1e0e76f5fe9fade3f62", - "type": "false_positive", - "value": "Ames", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 211.94041, - "y": 424.07 - }, - "width": 24.306412, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 255, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 34, - "endOffset": 38, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5c72f891ce7c8e36d920e456b64485a1", - "type": "CBI_author", - "value": "Sokolowski", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 348.81 - }, - "width": 48.13083, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 256, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 184, - "endOffset": 194, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "f1b8414e8b6365879549ae6882d35204", - "type": "CBI_author", - "value": "Hertner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 424.07 - }, - "width": 31.407898, - "height": 10.526819, - "page": 38 - } - ], - "sectionNumber": 255, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 179, - "endOffset": 186, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3560e8252585324f3459c8e5f1ba8647", - "type": "CBI_author", - "value": "Ham", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 599.3 - }, - "width": 20.501678, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 266, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 120, - "endOffset": 123, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0648a5427d67b6ad20c499662db53004", - "type": "CBI_author", - "value": "Dony", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 651.5 - }, - "width": 23.240723, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 265, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 141, - "endOffset": 145, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e3bc3553c0cd22aca3b03f03807f9a6b", - "type": "CBI_author", - "value": "Cifone", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-8: Summary of the results of the submitted genotoxicity studies with S-\nmetolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 447.82, - "y": 558.59 - }, - "width": 28.091248, - "height": 10.526819, - "page": 39 - } - ], - "sectionNumber": 267, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 111, - "endOffset": 117, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b5d575ed3d7cd6ef125d7832c8d53527", - "type": "CBI_author", - "value": "Gilles", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 458.62, - "y": 187.73999 - }, - "width": 24.794495, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 280, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 174, - "endOffset": 180, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5fb9609be755718444ea92f39427e2b4", - "type": "CBI_author", - "value": "Khalil", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 458.62, - "y": 315.21002 - }, - "width": 25.848907, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 278, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 124, - "endOffset": 130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bf31dd3a94a349bd9622da300469b3a7", - "type": "CBI_author", - "value": "Lochry", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 458.62, - "y": 251.48999 - }, - "width": 29.83429, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 279, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 179, - "endOffset": 185, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "be363ad6d0221c74dc388910022824bc", - "type": "CBI_author", - "value": "O’Loughlin", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 458.62, - "y": 389.85 - }, - "width": 50.81308, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 277, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 176, - "endOffset": 186, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c3eeebd07306be60eeb4921c81118760", - "type": "false_positive", - "value": "Not reported", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 378.82, - "y": 112.619995 - }, - "width": 51.766205, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 281, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 138, - "endOffset": 150, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "dcf4efda6f5a5be4a3d2388fae7b111b", - "type": "CBI_author", - "value": "Lightkep", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.6-10: Summary of the results of the submitted reproductive and development\ntoxicity studies with S-metolachlor or metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 458.62, - "y": 135.53998 - }, - "width": 36.895935, - "height": 10.526819, - "page": 40 - } - ], - "sectionNumber": 281, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 198", - "comments": [], - "startOffset": 151, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "95c30a33e69d09a4a851197d362e6e75", - "type": "CBI_author", - "value": "Lochry", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.7 Summary of neurotoxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 215.9084, - "y": 177.89996 - }, - "width": 32.78418, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "salivation or lacrimation; ", - "textAfter": ", 1985).", - "comments": [], - "startOffset": 579, - "endOffset": 585, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b11fd84533ba70f1dfa65b1abe8ede08", - "type": "CBI_author", - "value": "Manton", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 645.14 - }, - "width": 35.312317, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "historical control data: ", - "textAfter": " (2017, ASB2017-13210)", - "comments": [], - "startOffset": 1627, - "endOffset": 1633, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0ebcf26d6be3da955d7ff712e6e42c36", - "type": "CBI_author", - "value": "Manton", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 126.574554, - "y": 480.71 - }, - "width": 35.3013, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "1%). In addition, ", - "textAfter": " (2017, ASB2017-13211)", - "comments": [], - "startOffset": 2753, - "endOffset": 2759, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c94d1b030ab4c51984b77534cc479c0d", - "type": "CBI_author", - "value": "Lightkep", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 128.49551, - "y": 632.54 - }, - "width": 40.688812, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the study by ", - "textAfter": " (1980, run", - "comments": [], - "startOffset": 1736, - "endOffset": 1744, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca12308c306c3b992f3d245f92ff0875", - "type": "CBI_author", - "value": "Lightkep", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.7 Summary of neurotoxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 108.81121, - "y": 190.5 - }, - "width": 40.629112, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 284, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "in rabbits (", - "textAfter": ", 1980) and", - "comments": [], - "startOffset": 453, - "endOffset": 461, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "133c59c275d6252e4b246706d68c0a21", - "type": "CBI_address", - "value": "Argus Laboratories", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 407.42026, - "y": 645.14 - }, - "width": 87.410095, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "data from the ", - "textAfter": " where the", - "comments": [], - "startOffset": 1698, - "endOffset": 1716, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "42f205b988398fdb30297308df2d8f4b", - "type": "CBI_author", - "value": "Gilles", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 186.89279, - "y": 442.79 - }, - "width": 27.341446, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "in 1995 by ", - "textAfter": " and Giknis.", - "comments": [], - "startOffset": 3059, - "endOffset": 3065, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3d0de1987940398c9cb8c4ec78fe1e72", - "type": "CBI_author", - "value": "Giknis", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 236.40721, - "y": 442.79 - }, - "width": 30.355362, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "by Gilles and ", - "textAfter": ". In this", - "comments": [], - "startOffset": 3070, - "endOffset": 3076, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "15fab336c7dd0c910ef8f94a3130c623", - "type": "CBI_address", - "value": "Ciba-Geigy laboratory", - "reason": "Address found for non vertebrate study", - "matchedRule": 3, - "legalBasis": null, - "redacted": false, - "section": "2.6.6 Summary of reproductive toxicity", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 87.603355, - "y": 468.11 - }, - "width": 100.68195, - "height": 11.017679, - "page": 41 - } - ], - "sectionNumber": 283, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "rabbits from the ", - "textAfter": " (Summit, New", - "comments": [], - "startOffset": 2840, - "endOffset": 2861, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8c2cab2b99e74e718ff90e81edc4edbc", - "type": "CBI_author", - "value": "Akkan", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 322.5014, - "y": 354.21 - }, - "width": 30.134552, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "immunotoxic potential (", - "textAfter": ", 2014, ASB2016-770).", - "comments": [], - "startOffset": 3481, - "endOffset": 3486, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ca22a79c12d2a5439396568a85eb8c41", - "type": "CBI_author", - "value": "Charlton", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.81885, - "y": 759.04 - }, - "width": 39.507477, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "a review (", - "textAfter": " 2014, ASB2016-762)", - "comments": [], - "startOffset": 538, - "endOffset": 546, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "49661bc32e7152077e755ef8f6d46723", - "type": "CBI_author", - "value": "Aït-Aïssa", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 380.66803, - "y": 695.78 - }, - "width": 43.27597, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "0.51 µM) (", - "textAfter": " et al.", - "comments": [], - "startOffset": 1023, - "endOffset": 1032, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "630f18588c9b6c1b3cc19ad3cada90d8", - "type": "CBI_author", - "value": "Tisdel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 309.18826, - "y": 556.67 - }, - "width": 28.5448, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "with rats (", - "textAfter": " et al.", - "comments": [], - "startOffset": 2124, - "endOffset": 2130, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c512523c9a12819735b93f1837e14408", - "type": "CBI_author", - "value": "Laville", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 469.4983, - "y": 721.1 - }, - "width": 32.165924, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "JEG-3 cells (", - "textAfter": " et al.", - "comments": [], - "startOffset": 841, - "endOffset": 848, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5c83ffbfd4d715a3f83cf234206ce82b", - "type": "CBI_author", - "value": "Mathias", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 352.44586, - "y": 632.54 - }, - "width": 36.350098, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "to metolachlor (", - "textAfter": " et al.", - "comments": [], - "startOffset": 1509, - "endOffset": 1516, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ae348606800b56ce86c9e96f83f59e86", - "type": "CBI_author", - "value": "Dalton", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 353.77783, - "y": 657.86 - }, - "width": 30.98462, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "hormone receptor, while ", - "textAfter": " et al.", - "comments": [], - "startOffset": 1317, - "endOffset": 1323, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "10abbc180d88d68fb5eed07d264992dc", - "type": "CBI_author", - "value": "Tisdel", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 152.11006, - "y": 531.35 - }, - "width": 28.5448, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "seminal vesicle (", - "textAfter": " et al.", - "comments": [], - "startOffset": 2293, - "endOffset": 2299, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "24e558587846b636a0c2a5edb3a44d66", - "type": "CBI_author", - "value": "Grennlee", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.8 Summary of further toxicological studies on the active substance", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 352.0208, - "y": 493.43 - }, - "width": 41.273926, - "height": 11.017679, - "page": 42 - } - ], - "sectionNumber": 285, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "was unaltered (", - "textAfter": " et al.", - "comments": [], - "startOffset": 2627, - "endOffset": 2635, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8fcbccb3b9d6c2b9bbe7ff253fe61dd8", - "type": "false_positive", - "value": "Ames test", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.6.9 Summary of toxicological data on impurities and metabolites", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 129.97485, - "y": 632.54 - }, - "width": 45.800323, - "height": 11.017679, - "page": 43 - } - ], - "sectionNumber": 320, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2126, - "endOffset": 2135, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "51c286b7be47e9b3317808acb7686129", - "type": "CBI_author", - "value": "Capps", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.9 Summary of toxicological data on impurities and metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 155.72015, - "y": 133.38 - }, - "width": 28.555847, - "height": 11.017679, - "page": 45 - } - ], - "sectionNumber": 320, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "metabolism study (", - "textAfter": " and Brown,", - "comments": [], - "startOffset": 5871, - "endOffset": 5876, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a2003a29cc1566dd89a2d8420df644d4", - "type": "CBI_author", - "value": "Mücke", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.9 Summary of toxicological data on impurities and metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 336.0748, - "y": 120.77997 - }, - "width": 31.569733, - "height": 11.017679, - "page": 45 - } - ], - "sectionNumber": 320, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "a study by ", - "textAfter": " (1981, TOX9800288).", - "comments": [], - "startOffset": 6006, - "endOffset": 6011, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "afd3986036df4c10b0c03d24d0daeea1", - "type": "CBI_author", - "value": "Brown", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "2.6.9 Summary of toxicological data on impurities and metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 205.13521, - "y": 133.38 - }, - "width": 30.98465, - "height": 11.017679, - "page": 45 - } - ], - "sectionNumber": 320, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study (Capps and ", - "textAfter": ", 1994). Metabolites", - "comments": [], - "startOffset": 5881, - "endOffset": 5886, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "91d6011d97d1e55f3534848b14f0194f", - "type": "false_positive", - "value": "Green", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 71.553764, - "y": 118.7887 - }, - "width": 21.910355, - "height": 9.610338, - "page": 89 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 248, - "endOffset": 253, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "42f0a6ca42ebb4a90d12185d4b42b249", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 448.19 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 618, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 93, - "endOffset": 101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "699766356db3bb6e444d62a43f9bfd4a", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 471.71 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 617, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 106, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c587c34c607710fbe69d53e00a94dcde", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 494.75 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 617, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 93, - "endOffset": 101, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6a22e6e722242d2f45b843c946295f67", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-4: S-Metolachlor modelling endpoint SFO DT50 values normalized to 20 oC\nand pF2 – geometric means of replicate soils for PECGW calculation", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 472.3, - "y": 425.27 - }, - "width": 43.718445, - "height": 10.526819, - "page": 91 - } - ], - "sectionNumber": 618, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 106, - "endOffset": 114, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "46b1b6d659179b1956e1c4fd56cf9af2", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "CGA77102", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 506.54327, - "y": 216.57 - }, - "width": 18.388062, - "height": 10.0905, - "page": 92 - }, - { - "topLeft": { - "x": 106.94, - "y": 206.10004 - }, - "width": 25.003006, - "height": 10.0905, - "page": 92 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study Simmonds & ", - "textAfter": ", 2013, KCA", - "comments": [], - "startOffset": 2309, - "endOffset": 2317, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "43b18a380e31f5420c2c961f927b1459", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "CGA77102", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 453.80325, - "y": 216.57 - }, - "width": 39.61902, - "height": 10.0905, - "page": 92 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "soil degradation study ", - "textAfter": " & Simmonds,", - "comments": [], - "startOffset": 2298, - "endOffset": 2306, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "98aef84861c4626faadb16e3542fd408", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 239.25204, - "y": 237.21002 - }, - "width": 60.544006, - "height": 10.0905, - "page": 92 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2144, - "endOffset": 2159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6f1180eead3f60281e7ca4026c3c6425", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "CGA77102", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 121.661766, - "y": 80.224 - }, - "width": 54.234917, - "height": 11.017679, - "page": 92 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "degradation study (", - "textAfter": ", 1997) in", - "comments": [], - "startOffset": 3022, - "endOffset": 3032, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6ab897c394e1298815e7ec286eeee128", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 237.81 - }, - "width": 43.75293, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 662, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "4e014ebdf4fc6c2f8bd3ec62d814c9b9", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 307.28998 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 661, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 82, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "ad173dac54c416d3c2e840fa0f9fd335", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 96.70056, - "y": 295.89 - }, - "width": 33.678757, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 661, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "clay loam (", - "textAfter": ")", - "comments": [], - "startOffset": 17, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c46431077221269e81607875fe16017a", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 541.79 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 652, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 97, - "endOffset": 105, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "dec1f4fa4c258f2eb1e04314cf4aaea8", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 588.38 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 651, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 98, - "endOffset": 106, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "96e046fd5d9c8e0fd9f4910e249af931", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 284.37 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 661, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b896e341b35bf99a5bbb86617bd7cb73", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 611.3 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 651, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 85, - "endOffset": 93, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6e91590a94a4970e3a2d6fcc0daebe91", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 260.85004 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 662, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 82, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c3c09f8ca631b20ed52ba8f57f2646c9", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 564.83 - }, - "width": 43.718445, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 652, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 84, - "endOffset": 92, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2868118f09522b55930101e4fcdc6d53", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 96.70056, - "y": 249.33002 - }, - "width": 33.678757, - "height": 10.526819, - "page": 93 - } - ], - "sectionNumber": 662, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "clay loam (", - "textAfter": ")", - "comments": [], - "startOffset": 17, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c5c3a04d70d3e7e9cf61d23c24fa3a63", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-5: ESA (CGA354743/CGA380168) detailed modelling endpoint SFO DT50\nvalues normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 282.69 - }, - "width": 43.718445, - "height": 10.526819, - "page": 94 - } - ], - "sectionNumber": 683, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 80, - "endOffset": 88, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "1287f16d4da0034269e318cd1f255b1f", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 173.46002 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 710, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 79, - "endOffset": 87, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8e946b829a2c51093fce086116968c61", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 419.99 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 700, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 82, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bf513a622a76249dfe800910c099eb6d", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 396.95 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 700, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "638e09de82b66f692f6faafc89401a17", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 466.43 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 699, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " and Simmonds,", - "comments": [], - "startOffset": 82, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "875cb7bc35dfdd01fea4cd54ce788f70", - "type": "recommendation_CBI_author", - "value": "Gardner", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5529412, - 0.9411765, - 0.42352942 - ], - "positions": [ - { - "topLeft": { - "x": 74.29056, - "y": 150.41998 - }, - "width": 33.678764, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 710, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "clay loam (", - "textAfter": ")", - "comments": [], - "startOffset": 17, - "endOffset": 24, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": true, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "bc226946d7e5a35b1e8d13057772b583", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 443.51 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 699, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 95, - "endOffset": 103, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8ba2e0bdd573ac9fc4ed7deb3ba17d9d", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-6: OXA (CGA51202/CGA351916) modelling endpoint SFO DT50 values normalised to 20°C and pF2 – geometric means of replicate soils", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 471.7, - "y": 150.41998 - }, - "width": 43.718445, - "height": 10.526819, - "page": 95 - } - ], - "sectionNumber": 710, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds and ", - "textAfter": ", 201", - "comments": [], - "startOffset": 92, - "endOffset": 100, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5a5eea1aa37d895cd826a0fa7b4fb4a9", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.85603, - "y": 598.7 - }, - "width": 60.76201, - "height": 10.0905, - "page": 95 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3721, - "endOffset": 3736, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6c831ab7470e0fd21d414070a15727b2", - "type": "CBI_author", - "value": "Roohi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-8: Summary of DT50 modelling endpoints for the metabolite CGA37735", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 277.76996 - }, - "width": 25.352264, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 757, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 87, - "endOffset": 92, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "5f86795240e4e735b75d6f0ce128fc17", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.85603, - "y": 760.84 - }, - "width": 60.54402, - "height": 10.0905, - "page": 97 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 3995, - "endOffset": 4010, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ee17999dd8c868e8fd245da1673eb5df", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.85603, - "y": 174.29999 - }, - "width": 60.54402, - "height": 10.0905, - "page": 97 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4384, - "endOffset": 4399, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ee4e9a056e2a148ecf6a2d77cce52c26", - "type": "CBI_author", - "value": "Roohi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-8: Summary of DT50 modelling endpoints for the metabolite CGA37735", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 312.81 - }, - "width": 25.352264, - "height": 10.526819, - "page": 97 - } - ], - "sectionNumber": 756, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 81, - "endOffset": 86, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "b4eeb406f44e65bb55891c1fd7f65e22", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.85603, - "y": 466.19 - }, - "width": 60.54402, - "height": 10.0905, - "page": 97 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4186, - "endOffset": 4201, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "d13b276b573e8333e1cea76978373e48", - "type": "CBI_author", - "value": "Roohi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 436.31 - }, - "width": 25.352264, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 771, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 90, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "124d7594d1bfb2d553e6eede60679b35", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 97.86401 - }, - "width": 43.718445, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 780, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "& Simmonds, 201", - "comments": [], - "startOffset": 84, - "endOffset": 92, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "c172e4cd84cfc404b9c4b3d8a921b691", - "type": "CBI_author", - "value": "Roohi", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-10: Summary of DT50 modelling endpoints for the metabolite CGA50720", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 366.33 - }, - "width": 25.352264, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 773, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 201", - "comments": [], - "startOffset": 91, - "endOffset": 96, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a89a96c45c6b82987e6ff72cfdaadaf3", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.85603, - "y": 285.81 - }, - "width": 60.54402, - "height": 10.0905, - "page": 98 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4737, - "endOffset": 4752, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0a23427c78a30e34155cabaa226a2ffb", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 132.89996 - }, - "width": 43.718445, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 779, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": "& Simmonds, 201", - "comments": [], - "startOffset": 77, - "endOffset": 85, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0316b8bf7f06aef3254079b4828e47a3", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 121.380005 - }, - "width": 43.718445, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 779, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds& ", - "textAfter": ", 201", - "comments": [], - "startOffset": 87, - "endOffset": 95, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "209306fe44d4ee96788dda18638e09c1", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 86.343994 - }, - "width": 43.718445, - "height": 10.526819, - "page": 98 - } - ], - "sectionNumber": 780, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "Simmonds& ", - "textAfter": ", 201", - "comments": [], - "startOffset": 94, - "endOffset": 102, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "0fdb511a6556ce5f5eedaae0b8e6de81", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 222.029, - "y": 615.62 - }, - "width": 60.54402, - "height": 10.0905, - "page": 98 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4543, - "endOffset": 4558, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "17b4e74b71722952b4d0418ff44d2e94", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 222.029, - "y": 339.69 - }, - "width": 60.54402, - "height": 10.0905, - "page": 99 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 5155, - "endOffset": 5170, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5996277930fb49e01bb0bfbab93f27ef", - "type": "CBI_author", - "value": "Merritt", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "CGA77102", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 74.65344, - "y": 188.34003 - }, - "width": 32.13282, - "height": 11.017679, - "page": 99 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "first study (", - "textAfter": ", 1995) was", - "comments": [], - "startOffset": 5856, - "endOffset": 5863, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "7405ec4c70ec08be23374e6c9f7b0919", - "type": "false_positive", - "value": "Low", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 461.44662, - "y": 112.5 - }, - "width": 21.236328, - "height": 11.017679, - "page": 99 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 6508, - "endOffset": 6511, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "31c861790f7974326956823ebba4ea3a", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "CGA77102", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 205.32285, - "y": 163.02002 - }, - "width": 48.140823, - "height": 11.017679, - "page": 99 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "new study (", - "textAfter": ", 2012) was", - "comments": [], - "startOffset": 6064, - "endOffset": 6072, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "01cfb0276829163d90925ee4c62bab34", - "type": "CBI_author", - "value": "Simmonds", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-11: Summary of DT50 modelling endpoints for the metabolite NOA436611\n(SYN546829)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 470.26, - "y": 586.22 - }, - "width": 43.718445, - "height": 10.526819, - "page": 99 - } - ], - "sectionNumber": 788, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 201", - "comments": [], - "startOffset": 82, - "endOffset": 90, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "371521c6390348f3011925c65c02a545", - "type": "false_positive", - "value": "Walker equation", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 221.85603, - "y": 505.67 - }, - "width": 60.54402, - "height": 10.0905, - "page": 99 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4985, - "endOffset": 5000, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4cb918c7150a60b39d8e81e098240e46", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 83.104004 - }, - "width": 28.07129, - "height": 10.526819, - "page": 100 - } - ], - "sectionNumber": 811, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 37, - "endOffset": 43, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c7c0c99861cfca5cfc6897f74bbfca1c", - "type": "false_positive", - "value": "Field", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "CGA77102", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 436.67 - }, - "width": 24.272324, - "height": 11.0232, - "page": 100 - } - ], - "sectionNumber": 841, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7545, - "endOffset": 7550, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "ad3f87c346b54bec66cb155a797e81cf", - "type": "false_positive", - "value": "Clay loam", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 73.584, - "y": 618.5 - }, - "width": 42.314087, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 819, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 9, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "052a4c51e984172204b5d2afe1263cc6", - "type": "false_positive", - "value": "France", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.8-14: Rate of degradation field soil dissipation studies of S-metolachlor", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 163.49, - "y": 606.98 - }, - "width": 28.07129, - "height": 10.526819, - "page": 101 - } - ], - "sectionNumber": 819, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 28, - "endOffset": 34, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "3fee1275f3e47f10c1fa52fb8d989914", - "type": "CBI_author", - "value": "Spare, W.C.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-16: Freundlich adsorption coefficients and exponents of S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 446.86, - "y": 153.06 - }, - "width": 49.87372, - "height": 10.526819, - "page": 102 - } - ], - "sectionNumber": 844, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1995", - "comments": [], - "startOffset": 52, - "endOffset": 63, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "faf11dbbf299a41d4df26630b60b6446", - "type": "CBI_author", - "value": "Spare, W.C.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-19: Freundlich adsorption coefficients and exponents of CGA51202", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 443.02, - "y": 690.38 - }, - "width": 49.87372, - "height": 10.526819, - "page": 104 - } - ], - "sectionNumber": 883, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1988", - "comments": [], - "startOffset": 40, - "endOffset": 51, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "cc6050b6c60cd0146658702df8804427", - "type": "CBI_author", - "value": "Spare", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-27: Distribution of the radioactivity in leachate of aged soil column leaching\nstudies with S-metolachlor (% applied radioactivity)", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 474.94, - "y": 201.77997 - }, - "width": 23.758606, - "height": 10.526819, - "page": 106 - } - ], - "sectionNumber": 964, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 38, - "endOffset": 43, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "232a5451188737b777f324df5b1c6c46", - "type": "CBI_author", - "value": "Spare", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.8-26: Study conditions of aged column leaching studies with S-metolachlor", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 468.46, - "y": 460.67 - }, - "width": 23.758606, - "height": 10.526819, - "page": 106 - } - ], - "sectionNumber": 955, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": ", 199", - "comments": [], - "startOffset": 61, - "endOffset": 66, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "2ec61cbbc3fc116805f741a45e605e5f", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.6.3 PECsurface water and PECsediment", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 250.73982, - "y": 368.37 - }, - "width": 17.615189, - "height": 11.017679, - "page": 126 - } - ], - "sectionNumber": 1260, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 966, - "endOffset": 969, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "efaf645c2e834f8a2b90f13e4080184a", - "type": "CBI_author", - "value": "Kitschmann", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.8.6.3 PECsurface water and PECsediment", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 328.19812, - "y": 337.05 - }, - "width": 54.12445, - "height": 11.017679, - "page": 126 - } - ], - "sectionNumber": 1260, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "study (21.9 %; ", - "textAfter": ", 1997). However,", - "comments": [], - "startOffset": 1153, - "endOffset": 1163, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "8d7e7a447db3004963e2b1b2c624487b", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.8.6.3 PECsurface water and PECsediment", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 139.64594, - "y": 311.73004 - }, - "width": 17.493774, - "height": 11.017679, - "page": 126 - } - ], - "sectionNumber": 1260, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1313, - "endOffset": 1316, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "10ef4e1bfc21898a913ffa1e9d73ddf7", - "type": "CBI_author", - "value": "Glaza, S.M.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 514.43 - }, - "width": 48.698395, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1280, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1994 NE", - "comments": [], - "startOffset": 54, - "endOffset": 65, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "17450afb3bd7c725fc44b76528205103", - "type": "CBI_author", - "value": "O’Loughlin", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 432.95 - }, - "width": 48.160706, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1282, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1981 450-0272", - "comments": [], - "startOffset": 126, - "endOffset": 136, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "6d9e921b46f4057f0423d7dd152dc89f", - "type": "CBI_author", - "value": "Schoch, M.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 388.54, - "y": 560.99 - }, - "width": 46.63675, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1279, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " 1994 941056", - "comments": [], - "startOffset": 58, - "endOffset": 68, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "68514cc1fe93625fd3ad20201148c0de", - "type": "false_positive", - "value": "Long-term", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-1: Table of endpoints to assess the risk for birds and other terrestrial vertebrates from the use of A9396G", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 229.37, - "y": 432.95 - }, - "width": 43.77603, - "height": 10.526819, - "page": 129 - } - ], - "sectionNumber": 1282, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 28, - "endOffset": 37, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "4a3e345ddebf64c8c2acdfb02b48c72f", - "type": "false_positive", - "value": "Fish", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 709.34 - }, - "width": 18.210884, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1297, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 4, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "bec57eb114f55ed84fbf1fd8084d3d53", - "type": "CBI_author", - "value": "Sachsse & Ullmann", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-3: Toxicity of S-metolachlor formulations", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 457.78, - "y": 679.82 - }, - "width": 80.34134, - "height": 10.526819, - "page": 131 - } - ], - "sectionNumber": 1297, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " (1974) CGA24705/019", - "comments": [], - "startOffset": 57, - "endOffset": 74, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "9219e9107e128760df0594388633e55c", - "type": "false_positive", - "value": "green algae", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Toxicity of the metabolites", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 189.92207, - "y": 538.19 - }, - "width": 52.0269, - "height": 11.017679, - "page": 133 - } - ], - "sectionNumber": 1339, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 709, - "endOffset": 720, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "33b5b5befc286cfd3bb2cb6f22dacbcf", - "type": "CBI_author", - "value": "Gonzalez-Valero", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Toxicity of the metabolites", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 369.19, - "y": 525.47 - }, - "width": 76.36505, - "height": 11.017679, - "page": 133 - } - ], - "sectionNumber": 1339, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "mesocosm study by ", - "textAfter": " (1998, Doc.", - "comments": [], - "startOffset": 844, - "endOffset": 859, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "92cc150fc5ffb18232fac6d105de4ae3", - "type": "false_positive", - "value": "Gold", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 116.40192, - "y": 475.79 - }, - "width": 23.06897, - "height": 11.017679, - "page": 140 - } - ], - "sectionNumber": 1422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 580, - "endOffset": 584, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "57d07ec505c9965bba93161e7c692d2a", - "type": "CBI_author", - "value": "Boutin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 360.06418, - "y": 349.29 - }, - "width": 30.995636, - "height": 11.017679, - "page": 140 - } - ], - "sectionNumber": 1422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the results of ", - "textAfter": " et al.", - "comments": [], - "startOffset": 1653, - "endOffset": 1659, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "65a7c1eb85f05c88dcd3e048afb02aeb", - "type": "CBI_author", - "value": "Boutin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 482.95627, - "y": 526.43 - }, - "width": 30.995636, - "height": 11.017679, - "page": 140 - } - ], - "sectionNumber": 1422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "submitted the study ", - "textAfter": " et al.", - "comments": [], - "startOffset": 265, - "endOffset": 271, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "db72b864f6007e32ef1b279338a3f9b2", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 338.86328, - "y": 513.71 - }, - "width": 17.504791, - "height": 11.017679, - "page": 140 - } - ], - "sectionNumber": 1422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 335, - "endOffset": 338, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "02a66d164a1cae262b98b0c28fe75915", - "type": "false_positive", - "value": "Klimisch 2", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 159.81601, - "y": 463.19 - }, - "width": 50.514435, - "height": 11.017679, - "page": 140 - } - ], - "sectionNumber": 1422, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 688, - "endOffset": 698, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "e2bec3dcbd20d9ef52a89600d0051974", - "type": "CBI_author", - "value": "Boutin", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 415.18, - "y": 735.98 - }, - "width": 28.180908, - "height": 10.526819, - "page": 140 - } - ], - "sectionNumber": 1420, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " et al.", - "comments": [], - "startOffset": 315, - "endOffset": 321, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a1bebe54556978e94ce19e15da60f1c8", - "type": "false_positive", - "value": "Gold (A9396B)", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table 2.9-9: Endpoints and effect values relevant for the risk assessment for non-target\nterrestrial plants", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 188.9223, - "y": 735.98 - }, - "width": 20.979736, - "height": 10.526819, - "page": 140 - }, - { - "topLeft": { - "x": 167.09, - "y": 724.46 - }, - "width": 41.590485, - "height": 10.526819, - "page": 140 - } - ], - "sectionNumber": 1420, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 261, - "endOffset": 274, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "1f3e34ec384a471dcc4c99098501b8e5", - "type": "false_positive", - "value": "October", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11.1 Summary of the risk assessment for aquatic organisms", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 488.69754, - "y": 655.46 - }, - "width": 36.46048, - "height": 11.017679, - "page": 153 - } - ], - "sectionNumber": 1631, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 4738, - "endOffset": 4745, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8d8723635af41db114cf5eda22270611", - "type": "false_positive", - "value": "Green", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.9.11.1 Summary of the risk assessment for aquatic organisms", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 71.4435, - "y": 200.32025 - }, - "width": 18.026947, - "height": 8.946881, - "page": 154 - } - ], - "sectionNumber": 1631, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 7102, - "endOffset": 7107, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "8e007263e24869f27a3177c8abc02d86", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:image", - "color": [ - 0.7411765, - 0.8392157, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 442.45, - "y": 307.47 - }, - "width": 56.4, - "height": 43.2, - "page": 154 - } - ], - "sectionNumber": 1631, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "236fbdc9c4be13bb4ef77eec80b66025", - "type": "false_positive", - "value": "Klimisch 2", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 291.4128, - "y": 144.18 - }, - "width": 50.28253, - "height": 11.017679, - "page": 163 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 373, - "endOffset": 383, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6657ab6190b18f8da748228689e77ba8", - "type": "false_positive", - "value": "Gold", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 259.94882, - "y": 156.77997 - }, - "width": 22.958527, - "height": 11.017679, - "page": 163 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 265, - "endOffset": 269, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "c7966c48ff039533a6de0f7cefc2ed89", - "type": "CBI_author", - "value": "Boutin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 216.87074, - "y": 182.10004 - }, - "width": 31.106094, - "height": 11.017679, - "page": 163 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "submitted the study ", - "textAfter": " et al.", - "comments": [], - "startOffset": 51, - "endOffset": 57, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "937b4515cee028219e2d38bd9234c74d", - "type": "published_information", - "value": "Vol", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 0.52156866, - 0.92156863, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 70.944, - "y": 169.38 - }, - "width": 17.615196, - "height": 11.017679, - "page": 163 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 121, - "endOffset": 124, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "a0806cf86b8b27c6bbf09394b5c277c7", - "type": "CBI_author", - "value": "Boutin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 470.08423, - "y": 733.7 - }, - "width": 30.995636, - "height": 11.017679, - "page": 164 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "the results of ", - "textAfter": " et al.", - "comments": [], - "startOffset": 1338, - "endOffset": 1344, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "46780e317ce8ca478369526445813d95", - "type": "CBI_author", - "value": "Bramby-Gunary", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 354.34232, - "y": 230.01001 - }, - "width": 73.10663, - "height": 11.017679, - "page": 164 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "than’ endpoints in ", - "textAfter": " (2014). In", - "comments": [], - "startOffset": 1781, - "endOffset": 1794, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "3f1ed4c482e58cd75da5a966378d8ab8", - "type": "CBI_author", - "value": "Boutin", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table 2.9-31: ER50 values available for vegetative vigour", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 434.62, - "y": 337.53 - }, - "width": 25.525024, - "height": 10.0905, - "page": 164 - } - ], - "sectionNumber": 1847, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": " et al.", - "comments": [], - "startOffset": 35, - "endOffset": 41, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "522a3a89895d5b56e0aae7f734258756", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 446.83405, - "y": 215.34003 - }, - "width": 14.987671, - "height": 11.017679, - "page": 165 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 2611, - "endOffset": 2614, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "6fbe32b14f1d2366b08e239529b4da2d", - "type": "CBI_author", - "value": "Boutin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 83.04384, - "y": 202.62 - }, - "width": 30.984634, - "height": 11.017679, - "page": 165 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "species tested in ", - "textAfter": " et al.", - "comments": [], - "startOffset": 2633, - "endOffset": 2639, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "a93b2d208d8ccf46dab26c374199745f", - "type": "CBI_author", - "value": "Boutin", - "reason": "Published Information found", - "matchedRule": 18, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": false, - "section": "Vegetative vigour", - "color": [ - 0.76862746, - 0.59607846, - 0.98039216 - ], - "positions": [ - { - "topLeft": { - "x": 232.85666, - "y": 164.70001 - }, - "width": 31.10608, - "height": 11.017679, - "page": 165 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "with A9396G. From ", - "textAfter": " et al.", - "comments": [], - "startOffset": 2965, - "endOffset": 2971, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e49d6b9456ff9e1317afd852857459b7", - "type": "image", - "value": null, - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Image:image", - "color": [ - 0.7411765, - 0.8392157, - 1.0 - ], - "positions": [ - { - "topLeft": { - "x": 70.9, - "y": 318.12 - }, - "width": 453.6, - "height": 452.9, - "page": 165 - } - ], - "sectionNumber": 1889, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 0, - "endOffset": 0, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": true, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b3095ad780f70a413826ff7e60b6da83", - "type": "false_positive", - "value": "Ames test", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 401.49258, - "y": 131.82 - }, - "width": 44.961273, - "height": 11.017679, - "page": 178 - } - ], - "sectionNumber": 2048, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 223, - "endOffset": 232, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "5d96765a77ed7585346667379973d0d4", - "type": "false_positive", - "value": "Ames", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 461.20795, - "y": 81.304016 - }, - "width": 26.513428, - "height": 11.017679, - "page": 178 - } - ], - "sectionNumber": 2048, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 591, - "endOffset": 595, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "0d0670cb2b3dd2646fa48c5111f23e1f", - "type": "false_positive", - "value": "Ames test", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 335.20847, - "y": 759.04 - }, - "width": 44.74048, - "height": 11.017679, - "page": 179 - } - ], - "sectionNumber": 2048, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 763, - "endOffset": 772, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "db6cd62d126e4bef45fc43218af44187", - "type": "false_positive", - "value": "Ames test", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 499.02307, - "y": 607.22 - }, - "width": 26.513428, - "height": 11.017679, - "page": 179 - }, - { - "topLeft": { - "x": 70.944, - "y": 594.62 - }, - "width": 16.301453, - "height": 11.017679, - "page": 179 - } - ], - "sectionNumber": 2048, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 1941, - "endOffset": 1950, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "b6f0499603bb7333ef1d2dd055547a9a", - "type": "CBI_author", - "value": "Hayes, T.B.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 654.46124, - "y": 435.5 - }, - "width": 54.75055, - "height": 11.017679, - "page": 200 - } - ], - "sectionNumber": 2234, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "amphibian studies (", - "textAfter": " et al.", - "comments": [], - "startOffset": 547, - "endOffset": 558, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "405d4de4c7ac7c9712d8d8eb76f4bae4", - "type": "CBI_author", - "value": "Spolyarich, N.", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: 3 Proposed decision with respect to the application", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 478.01465, - "y": 422.87 - }, - "width": 65.091064, - "height": 11.017679, - "page": 200 - } - ], - "sectionNumber": 2234, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 577, - "endOffset": 591, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": false, - "dossierDictionaryEntry": false, - "hint": false - }, - { - "id": "e3eb2c8adb0f64a108fd75041fd15703", - "type": "false_positive", - "value": "All", - "reason": null, - "matchedRule": 0, - "legalBasis": null, - "redacted": false, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 1.0, - 0.80784315, - 0.80784315 - ], - "positions": [ - { - "topLeft": { - "x": 288.65, - "y": 188.94 - }, - "width": 15.0980835, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2289, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": null, - "textAfter": null, - "comments": [], - "startOffset": 156, - "endOffset": 159, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": true - }, - { - "id": "16f304a4abfb716f40c7bce173b2410d", - "type": "CBI_author", - "value": "Lochry", - "reason": "Author found", - "matchedRule": 1, - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "redacted": true, - "section": "Table in: 3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", - "color": [ - 0.5764706, - 0.59607846, - 0.627451 - ], - "positions": [ - { - "topLeft": { - "x": 108.700325, - "y": 151.02002 - }, - "width": 32.9056, - "height": 11.017679, - "page": 208 - } - ], - "sectionNumber": 2289, - "manual": false, - "status": null, - "manualRedactionType": null, - "manualRedactionUserId": null, - "textBefore": "in rats by ", - "textAfter": " (1985).", - "comments": [], - "startOffset": 141, - "endOffset": 147, - "imageHasTransparency": false, - "excluded": false, - "recategorizationType": null, - "legalBasisChangeValue": null, - "recommendation": false, - "image": false, - "dictionaryEntry": true, - "dossierDictionaryEntry": false, - "hint": false - } - ], - "legalBasis": [ - { - "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", - "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" - }, - { - "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", - "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", - "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" - }, - { - "name": "2. manufacturing or production process", - "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "3. links between a producer and applicant", - "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "4. commercial information", - "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "5. quantitative composition", - "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", - "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" - }, - { - "name": "6. specification of impurity", - "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", - "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" - }, - { - "name": "7. results of production batches", - "description": "results of production batches of the active substance including impurities", - "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" - }, - { - "name": "8. composition of a plant protection product", - "description": "information on the complete composition of a plant protection product", - "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" - } - ], - "dictionaryVersion": 31, - "dossierDictionaryVersion": 1, - "rulesVersion": 1, - "legalBasisVersion": 1 -} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/Text.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/Text.json new file mode 100644 index 000000000..6b2744acc --- /dev/null +++ b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/Text.json @@ -0,0 +1,86881 @@ +{ + "numberOfPages": 4, + "sectionTexts": [ + { + "sectionNumber": 1, + "text": "", + "headline": "", + "sectionAreas": [], + "images": [], + "textBlocks": [], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 2, + "text": "Text with 0° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 12.813, + "y": 662.797 + }, + "width": 74.29068, + "height": 46.099426, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 12.813, + "maxX": 87.10368, + "minY": 662.797, + "maxY": 708.8964, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.813,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087803, + "heightDir": 6.087393, + "widthDirAdj": 6.7087803, + "dir": 0.0, + "xdirAdj": 12.813, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,19.510782,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872114, + "heightDir": 6.087393, + "widthDirAdj": 4.872114, + "dir": 0.0, + "xdirAdj": 19.510782, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,24.503874,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 24.503874, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,30.002874,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 0.0, + "xdirAdj": 30.002874, + "ydirAdj": 91.19098 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,35.886803,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 35.886803, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,43.783367,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 43.783367, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,46.873806,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 46.873806, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,49.964245,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 49.964245, + "ydirAdj": 91.19098 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,58.256737,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 58.256737, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,63.755737,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 0.0, + "xdirAdj": 63.755737, + "ydirAdj": 91.19098 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.813,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 0.0, + "xdirAdj": 12.813, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,20.115673,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872114, + "heightDir": 6.087393, + "widthDirAdj": 4.872114, + "dir": 0.0, + "xdirAdj": 20.115673, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,25.108765,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 25.108765, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,30.607765,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 30.607765, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,36.106766,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 36.106766, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,39.197205,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 0.0, + "xdirAdj": 39.197205, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,44.080315,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623344, + "heightDir": 6.087393, + "widthDirAdj": 3.6623344, + "dir": 0.0, + "xdirAdj": 44.080315, + "ydirAdj": 103.890015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,50.558136,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 0.0, + "xdirAdj": 50.558136, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.255917,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 0.0, + "xdirAdj": 57.255917, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,62.139027,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4989967, + "heightDir": 6.087393, + "widthDirAdj": 5.4989967, + "dir": 0.0, + "xdirAdj": 62.139027, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,67.726006,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 67.726006, + "ydirAdj": 103.890015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.813,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 12.813, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,20.709564,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 0.0, + "xdirAdj": 20.709564, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,23.800001,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 23.800001, + "ydirAdj": 116.50403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,32.081497,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 32.081497, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,40.066044,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 40.066044, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,45.565044,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 45.565044, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,51.064045,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 51.064045, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,56.563046,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 56.563046, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,59.653484,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 0.0, + "xdirAdj": 59.653484, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,64.646576,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 64.646576, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,67.737015,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 67.737015, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,70.82745,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 70.82745, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,76.326454,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 76.326454, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,81.825455,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278221, + "heightDir": 6.087393, + "widthDirAdj": 4.278221, + "dir": 0.0, + "xdirAdj": 81.825455, + "ydirAdj": 116.50403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.813,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872114, + "heightDir": 6.087393, + "widthDirAdj": 4.872114, + "dir": 0.0, + "xdirAdj": 12.813, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,17.696112,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 17.696112, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,23.195112,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 23.195112, + "ydirAdj": 129.203 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,31.476606,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405575, + "heightDir": 6.087393, + "widthDirAdj": 7.9405575, + "dir": 0.0, + "xdirAdj": 31.476606, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,39.461155,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 39.461155, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,42.551594,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 42.551594, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,48.050594,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 48.050594, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,53.549595,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 53.549595, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,56.640034,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 56.640034, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,59.730473,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4989967, + "heightDir": 6.087393, + "widthDirAdj": 5.4989967, + "dir": 0.0, + "xdirAdj": 59.730473, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,65.31745,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 65.31745, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,70.81645,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 70.81645, + "ydirAdj": 129.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,73.90689,662.797]", + "rotation": 0, + "y": 129.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278221, + "heightDir": 6.087393, + "widthDirAdj": 4.278221, + "dir": 0.0, + "xdirAdj": 73.90689, + "ydirAdj": 129.203 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 3, + "text": "Text with 90° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 502.498, + "y": 734.91 + }, + "width": 70.10803, + "height": 45.98645, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 502.498, + "maxX": 572.606, + "minY": 734.91, + "maxY": 780.8964, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,502.498]", + "rotation": 0, + "y": 289.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,509.301]", + "rotation": 0, + "y": 282.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 509.301, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,514.205]", + "rotation": 0, + "y": 277.79498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 514.205, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,519.704]", + "rotation": 0, + "y": 272.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 519.704, + "ydirAdj": 19.190979 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,525.6]", + "rotation": 0, + "y": 266.40002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 525.6, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,533.509]", + "rotation": 0, + "y": 258.49103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 533.509, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,536.598]", + "rotation": 0, + "y": 255.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 536.598, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,539.688]", + "rotation": 0, + "y": 252.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 539.688, + "ydirAdj": 19.190979 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,547.994]", + "rotation": 0, + "y": 244.00598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 547.994, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,553.493]", + "rotation": 0, + "y": 238.50702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 553.493, + "ydirAdj": 19.190979 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,19.191,559.106]", + "rotation": 0, + "y": 232.89398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 559.106, + "ydirAdj": 19.190979 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,502.498]", + "rotation": 0, + "y": 289.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,509.811]", + "rotation": 0, + "y": 282.189, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 509.811, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,514.8]", + "rotation": 0, + "y": 277.2, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 514.8, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,520.299]", + "rotation": 0, + "y": 271.701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 520.299, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,525.798]", + "rotation": 0, + "y": 266.20203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 525.798, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,528.888]", + "rotation": 0, + "y": 263.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 528.888, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,533.906]", + "rotation": 0, + "y": 258.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 533.906, + "ydirAdj": 31.804993 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,540.312]", + "rotation": 0, + "y": 251.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 90.0, + "xdirAdj": 540.312, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,547.087]", + "rotation": 0, + "y": 244.91302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 547.087, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,551.991]", + "rotation": 0, + "y": 240.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 551.991, + "ydirAdj": 31.804993 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,31.805,557.49]", + "rotation": 0, + "y": 234.51001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 557.49, + "ydirAdj": 31.804993 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,502.498]", + "rotation": 0, + "y": 289.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,510.406]", + "rotation": 0, + "y": 281.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 510.406, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,513.609]", + "rotation": 0, + "y": 278.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 513.609, + "ydirAdj": 44.50403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,521.887]", + "rotation": 0, + "y": 270.11298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 521.887, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,529.795]", + "rotation": 0, + "y": 262.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 529.795, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,535.294]", + "rotation": 0, + "y": 256.706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 535.294, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,540.794]", + "rotation": 0, + "y": 251.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 540.794, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,546.293]", + "rotation": 0, + "y": 245.70697, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 546.293, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,549.411]", + "rotation": 0, + "y": 242.58899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 549.411, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,554.4]", + "rotation": 0, + "y": 237.59998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 554.4, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,557.49]", + "rotation": 0, + "y": 234.51001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 557.49, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,560.608]", + "rotation": 0, + "y": 231.39203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 560.608, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,566.107]", + "rotation": 0, + "y": 225.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 566.107, + "ydirAdj": 44.50403 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,44.504,571.606]", + "rotation": 0, + "y": 220.39398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 571.606, + "ydirAdj": 44.50403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,502.498]", + "rotation": 0, + "y": 289.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,507.487]", + "rotation": 0, + "y": 284.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 507.487, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,512.986]", + "rotation": 0, + "y": 279.01398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.986, + "ydirAdj": 57.090027 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,521.291]", + "rotation": 0, + "y": 270.70898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 521.291, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,529.2]", + "rotation": 0, + "y": 262.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 529.2, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,532.29]", + "rotation": 0, + "y": 259.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 532.29, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,537.789]", + "rotation": 0, + "y": 254.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 537.789, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,543.288]", + "rotation": 0, + "y": 248.71198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 543.288, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,546.491]", + "rotation": 0, + "y": 245.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 546.491, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,549.609]", + "rotation": 0, + "y": 242.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 549.609, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,555.109]", + "rotation": 0, + "y": 236.89099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 555.109, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,560.608]", + "rotation": 0, + "y": 231.39203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 560.608, + "ydirAdj": 57.090027 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,57.09,563.698]", + "rotation": 0, + "y": 228.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 563.698, + "ydirAdj": 57.090027 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 4, + "text": "Text with 180° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 525.005, + "y": 392.91 + }, + "width": 74.29065, + "height": 45.98639, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 525.005, + "maxX": 599.29565, + "minY": 392.91, + "maxY": 438.8964, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,86.995,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 180.0, + "xdirAdj": 525.005, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,80.297226,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 531.70276, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,75.41411,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 536.5859, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,69.91511,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 542.0849, + "ydirAdj": 361.191 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,64.03117,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 180.0, + "xdirAdj": 547.9688, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,56.13461,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 555.8654, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,52.945187,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 559.0548, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,49.854748,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 562.14526, + "ydirAdj": 361.191 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,41.562256,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 570.43774, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,36.063255,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 575.93677, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,30.564255,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 581.4357, + "ydirAdj": 361.191 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,25.065254,361.191]", + "rotation": 0, + "y": 430.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3882027, + "heightDir": 6.087393, + "widthDirAdj": 4.3882027, + "dir": 180.0, + "xdirAdj": 586.93475, + "ydirAdj": 361.191 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,86.995,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 180.0, + "xdirAdj": 525.005, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,79.69233,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 532.3077, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,74.80921,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 537.1908, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,69.22223,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 542.7778, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,63.72323,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 548.2768, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,60.63279,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 551.3672, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,55.74968,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623344, + "heightDir": 6.087393, + "widthDirAdj": 3.6623344, + "dir": 180.0, + "xdirAdj": 556.2503, + "ydirAdj": 373.805 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,49.27186,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 180.0, + "xdirAdj": 562.72815, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,42.574078,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 569.4259, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,37.690968,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 574.309, + "ydirAdj": 373.805 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,32.103985,373.805]", + "rotation": 0, + "y": 418.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 180.0, + "xdirAdj": 579.896, + "ydirAdj": 373.805 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,86.995,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 525.005, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,79.098434,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 532.90155, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,76.007996,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 535.992, + "ydirAdj": 386.504 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,67.71551,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 180.0, + "xdirAdj": 544.2845, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,59.818943,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 552.181, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,54.23196,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 557.76807, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,48.73296,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 563.267, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,43.23396,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 568.76605, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,40.14352,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 571.8565, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,35.26041,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 576.73956, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,32.070988,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 180.0, + "xdirAdj": 579.929, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,28.98055,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 583.0195, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,23.48155,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 588.51843, + "ydirAdj": 386.504 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,17.98255,386.504]", + "rotation": 0, + "y": 405.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278222, + "heightDir": 6.087393, + "widthDirAdj": 4.278222, + "dir": 180.0, + "xdirAdj": 594.01746, + "ydirAdj": 386.504 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,86.995,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 525.005, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,82.111885,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 529.8881, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,76.612885,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 535.3871, + "ydirAdj": 399.09 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,68.3314,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 180.0, + "xdirAdj": 543.6686, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,60.434834,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 551.5652, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,57.24541,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 554.7546, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,51.74641,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 560.2536, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,46.24741,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 565.75256, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,43.15697,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 568.843, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,40.066532,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 571.9335, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,34.56753,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 577.4325, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,28.980547,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 180.0, + "xdirAdj": 583.0195, + "ydirAdj": 399.09 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,25.89011,399.09]", + "rotation": 0, + "y": 392.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278221, + "heightDir": 6.087393, + "widthDirAdj": 4.278221, + "dir": 180.0, + "xdirAdj": 586.10986, + "ydirAdj": 399.09 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 5, + "text": "Text with 0° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation0GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 111.005, + "y": 658.602 + }, + "width": 139.75073, + "height": 58.685425, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 111.005, + "maxX": 250.75574, + "minY": 658.602, + "maxY": 717.2874, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,111.005,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 0.0, + "xdirAdj": 111.005, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,117.702774,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 117.702774, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,122.69587,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 122.69587, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,128.19487,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 128.19487, + "ydirAdj": 82.79999 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,134.0788,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 134.0788, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,141.97536,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 141.97536, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,145.0658,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 145.0658, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,148.15623,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 148.15623, + "ydirAdj": 82.79999 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,156.44872,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 156.44872, + "ydirAdj": 82.79999 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,161.94771,709.2]", + "rotation": 0, + "y": 82.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 0.0, + "xdirAdj": 161.94771, + "ydirAdj": 82.79999 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,111.005,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 0.0, + "xdirAdj": 111.005, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,117.702774,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 117.702774, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,122.69587,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 122.69587, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,128.19487,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 128.19487, + "ydirAdj": 95.414 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,134.0788,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 134.0788, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,141.97536,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 141.97536, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,145.0658,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 145.0658, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,148.15623,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 148.15623, + "ydirAdj": 95.414 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,156.44872,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 156.44872, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,164.34528,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 164.34528, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,169.84427,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 169.84427, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,175.34326,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 175.34326, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,180.93024,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 180.93024, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,184.02068,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 184.02068, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,188.9038,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 188.9038, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,191.99423,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 191.99423, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,195.18365,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 195.18365, + "ydirAdj": 95.414 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,200.68265,696.586]", + "rotation": 0, + "y": 95.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 200.68265, + "ydirAdj": 95.414 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,111.005,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 111.005, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,118.901566,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 118.901566, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,121.992004,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 121.992004, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,126.9851,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464401, + "heightDir": 6.087393, + "widthDirAdj": 3.0464401, + "dir": 0.0, + "xdirAdj": 126.9851, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,130.07553,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 130.07553, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,133.75987,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 133.75987, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,141.65643,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 141.65643, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,147.15543,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 147.15543, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,152.7424,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 152.7424, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,158.2414,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 158.2414, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,161.33183,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 161.33183, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,166.21495,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 166.21495, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,169.40437,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 169.40437, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,172.49481,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 172.49481, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,177.9938,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 177.9938, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,183.4928,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 183.4928, + "ydirAdj": 108.112976 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,189.37672,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 189.37672, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,197.27328,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 197.27328, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,202.1564,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 202.1564, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,207.6554,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 207.6554, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,210.84482,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 210.84482, + "ydirAdj": 108.112976 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,219.03831,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 219.03831, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,227.02286,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 227.02286, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,231.31209,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 231.31209, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,236.1952,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 236.1952, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,241.6942,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 241.6942, + "ydirAdj": 108.112976 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,244.88362,683.887]", + "rotation": 0, + "y": 108.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 244.88362, + "ydirAdj": 108.112976 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,111.005,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 0.0, + "xdirAdj": 111.005, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,118.30767,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 118.30767, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,123.80667,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 123.80667, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,126.99609,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 126.99609, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,131.87921,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 131.87921, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,135.56355,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 135.56355, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,143.46011,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 143.46011, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,148.9591,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 148.9591, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,154.54608,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 154.54608, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,160.04507,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 160.04507, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,163.13551,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 163.13551, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,168.01863,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 168.01863, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,171.10907,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 171.10907, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,174.2985,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 174.2985, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,179.79749,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 179.79749, + "ydirAdj": 120.698975 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,185.29648,671.301]", + "rotation": 0, + "y": 120.698975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 185.29648, + "ydirAdj": 120.698975 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,111.005,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 0.0, + "xdirAdj": 111.005, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,118.30767,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 118.30767, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,123.80667,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 123.80667, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,126.99609,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 126.99609, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,131.87921,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 131.87921, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,139.77577,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 139.77577, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,145.27477,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 145.27477, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,150.77376,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 150.77376, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,156.36073,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 156.36073, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,159.45117,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 159.45117, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,164.33429,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 164.33429, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,167.42473,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 167.42473, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,170.51517,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 170.51517, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,176.10214,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 176.10214, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,181.60114,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 181.60114, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,187.10013,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 187.10013, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,194.99669,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 194.99669, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,198.78,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 198.78, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,203.66312,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 203.66312, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,209.16211,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 0.0, + "xdirAdj": 209.16211, + "ydirAdj": 133.39801 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,218.05948,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 218.05948, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,222.9426,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 222.9426, + "ydirAdj": 133.39801 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,228.82652,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 228.82652, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,233.70964,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 233.70964, + "ydirAdj": 133.39801 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,236.80008,658.602]", + "rotation": 0, + "y": 133.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 0.0, + "xdirAdj": 236.80008, + "ydirAdj": 133.39801 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 6, + "text": "Text with 90° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation90GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 484.809, + "y": 586.91296 + }, + "width": 135.07901, + "height": 58.6864, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 484.809, + "maxX": 619.888, + "minY": 586.91296, + "maxY": 645.59937, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,484.809]", + "rotation": 0, + "y": 307.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 484.809, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,491.613]", + "rotation": 0, + "y": 300.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 491.613, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,496.488]", + "rotation": 0, + "y": 295.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 496.488, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,501.987]", + "rotation": 0, + "y": 290.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 501.987, + "ydirAdj": 154.488 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,507.912]", + "rotation": 0, + "y": 284.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 507.912, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,515.792]", + "rotation": 0, + "y": 276.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 515.792, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,518.91]", + "rotation": 0, + "y": 273.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.91, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,522.0]", + "rotation": 0, + "y": 270.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 522.0, + "ydirAdj": 154.488 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,530.306]", + "rotation": 0, + "y": 261.69397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 530.306, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,535.805]", + "rotation": 0, + "y": 256.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 535.805, + "ydirAdj": 154.488 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,154.488,541.389]", + "rotation": 0, + "y": 250.61102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 541.389, + "ydirAdj": 154.488 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,484.809]", + "rotation": 0, + "y": 307.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 484.809, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,491.499]", + "rotation": 0, + "y": 300.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 491.499, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,496.488]", + "rotation": 0, + "y": 295.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 496.488, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,501.987]", + "rotation": 0, + "y": 290.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 501.987, + "ydirAdj": 167.10199 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,507.912]", + "rotation": 0, + "y": 284.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 507.912, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,515.792]", + "rotation": 0, + "y": 276.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 515.792, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,518.91]", + "rotation": 0, + "y": 273.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.91, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,522.0]", + "rotation": 0, + "y": 270.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 522.0, + "ydirAdj": 167.10199 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,530.306]", + "rotation": 0, + "y": 261.69397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 530.306, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,538.186]", + "rotation": 0, + "y": 253.81403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 538.186, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,543.798]", + "rotation": 0, + "y": 248.20203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 543.798, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,549.298]", + "rotation": 0, + "y": 242.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 549.298, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,554.797]", + "rotation": 0, + "y": 237.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 554.797, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,557.887]", + "rotation": 0, + "y": 234.11298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 557.887, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,562.791]", + "rotation": 0, + "y": 229.20898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 562.791, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,565.994]", + "rotation": 0, + "y": 226.00598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 565.994, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,569.112]", + "rotation": 0, + "y": 222.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 569.112, + "ydirAdj": 167.10199 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,167.102,574.611]", + "rotation": 0, + "y": 217.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 574.611, + "ydirAdj": 167.10199 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,484.809]", + "rotation": 0, + "y": 307.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 484.809, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,492.69]", + "rotation": 0, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 492.69, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,495.893]", + "rotation": 0, + "y": 296.107, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 495.893, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,500.797]", + "rotation": 0, + "y": 291.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 500.797, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,503.887]", + "rotation": 0, + "y": 288.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 503.887, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,507.6]", + "rotation": 0, + "y": 284.4, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405823, + "dir": 90.0, + "xdirAdj": 507.6, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,515.594]", + "rotation": 0, + "y": 276.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 515.594, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,521.093]", + "rotation": 0, + "y": 270.90698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 521.093, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,526.592]", + "rotation": 0, + "y": 265.40802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 526.592, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,532.091]", + "rotation": 0, + "y": 259.909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.091, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,535.209]", + "rotation": 0, + "y": 256.79102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 535.209, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,540.198]", + "rotation": 0, + "y": 251.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 540.198, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,543.288]", + "rotation": 0, + "y": 248.71198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 543.288, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,546.406]", + "rotation": 0, + "y": 245.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 546.406, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,551.906]", + "rotation": 0, + "y": 240.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 551.906, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,557.405]", + "rotation": 0, + "y": 234.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 557.405, + "ydirAdj": 179.802 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,563.301]", + "rotation": 0, + "y": 228.69897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 563.301, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,571.209]", + "rotation": 0, + "y": 220.79102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 571.209, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,576.198]", + "rotation": 0, + "y": 215.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 576.198, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,581.698]", + "rotation": 0, + "y": 210.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 581.698, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,584.787]", + "rotation": 0, + "y": 207.21301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 584.787, + "ydirAdj": 179.802 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,593.093]", + "rotation": 0, + "y": 198.90698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 593.093, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,601.002]", + "rotation": 0, + "y": 190.99799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 601.002, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,605.31]", + "rotation": 0, + "y": 186.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 605.31, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,610.186]", + "rotation": 0, + "y": 181.81403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 610.186, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,615.798]", + "rotation": 0, + "y": 176.20203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 615.798, + "ydirAdj": 179.802 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,179.802,618.888]", + "rotation": 0, + "y": 173.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 618.888, + "ydirAdj": 179.802 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,484.809]", + "rotation": 0, + "y": 307.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 484.809, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,492.208]", + "rotation": 0, + "y": 299.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 492.208, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,497.707]", + "rotation": 0, + "y": 294.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 497.707, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,500.797]", + "rotation": 0, + "y": 291.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 500.797, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,505.701]", + "rotation": 0, + "y": 286.299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 505.701, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,509.386]", + "rotation": 0, + "y": 282.614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 509.386, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,517.408]", + "rotation": 0, + "y": 274.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 517.408, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,522.907]", + "rotation": 0, + "y": 269.09302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 522.907, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,528.406]", + "rotation": 0, + "y": 263.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 528.406, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,533.906]", + "rotation": 0, + "y": 258.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 533.906, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,537.109]", + "rotation": 0, + "y": 254.89099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 537.109, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,542.013]", + "rotation": 0, + "y": 249.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 542.013, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,545.102]", + "rotation": 0, + "y": 246.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 545.102, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,548.192]", + "rotation": 0, + "y": 243.80798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 548.192, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,553.691]", + "rotation": 0, + "y": 238.30902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 553.691, + "ydirAdj": 192.387 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,192.387,559.304]", + "rotation": 0, + "y": 232.69598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 559.304, + "ydirAdj": 192.387 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,484.809]", + "rotation": 0, + "y": 307.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 484.809, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,492.208]", + "rotation": 0, + "y": 299.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 492.208, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,497.707]", + "rotation": 0, + "y": 294.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 497.707, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,500.797]", + "rotation": 0, + "y": 291.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 500.797, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,505.701]", + "rotation": 0, + "y": 286.299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 505.701, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,513.609]", + "rotation": 0, + "y": 278.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 513.609, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,519.194]", + "rotation": 0, + "y": 272.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 519.194, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,524.693]", + "rotation": 0, + "y": 267.307, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 524.693, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,530.192]", + "rotation": 0, + "y": 261.80798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 530.192, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,533.31]", + "rotation": 0, + "y": 258.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 533.31, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,538.186]", + "rotation": 0, + "y": 253.81403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 538.186, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,541.389]", + "rotation": 0, + "y": 250.61102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 541.389, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,544.507]", + "rotation": 0, + "y": 247.49298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 544.507, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,550.006]", + "rotation": 0, + "y": 241.99402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 550.006, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,555.506]", + "rotation": 0, + "y": 236.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 555.506, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,561.005]", + "rotation": 0, + "y": 230.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 561.005, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,566.589]", + "rotation": 0, + "y": 225.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 566.589, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,574.498]", + "rotation": 0, + "y": 217.50201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 574.498, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,578.211]", + "rotation": 0, + "y": 213.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 578.211, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,583.087]", + "rotation": 0, + "y": 208.91302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 583.087, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,588.586]", + "rotation": 0, + "y": 203.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 588.586, + "ydirAdj": 205.087 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,597.487]", + "rotation": 0, + "y": 194.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 597.487, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,602.504]", + "rotation": 0, + "y": 189.49597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 602.504, + "ydirAdj": 205.087 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,608.287]", + "rotation": 0, + "y": 183.71301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 608.287, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,613.304]", + "rotation": 0, + "y": 178.69598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 613.304, + "ydirAdj": 205.087 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,205.087,616.394]", + "rotation": 0, + "y": 175.60602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 616.394, + "ydirAdj": 205.087 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 7, + "text": "Text with 180° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation180GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 361.19098, + "y": 372.699 + }, + "width": 140.53156, + "height": 58.6864, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 361.19098, + "maxX": 501.72253, + "minY": 372.699, + "maxY": 431.3854, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.809,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 361.19098, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.11122,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 367.8888, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.11813,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 372.88187, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.61914,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 378.38086, + "ydirAdj": 368.702 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.73521,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 384.26477, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.83865,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 392.16135, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.74821,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 395.25177, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.65778,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 398.34222, + "ydirAdj": 368.702 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.3653,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 406.6347, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.8663,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 412.1337, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,194.36731,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 417.6327, + "ydirAdj": 368.702 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,188.78033,368.702]", + "rotation": 0, + "y": 423.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 423.21967, + "ydirAdj": 368.702 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.809,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 361.19098, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.11122,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 367.8888, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.11813,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 372.88187, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.61914,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 378.38086, + "ydirAdj": 381.288 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.73521,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 384.26477, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.83865,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 392.16135, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.74821,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 395.25177, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.65778,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 398.34222, + "ydirAdj": 381.288 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.3653,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 406.6347, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.46873,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 414.53125, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.96974,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 420.03027, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.47075,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 425.52924, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,180.88377,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 431.1162, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,177.79333,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 434.20667, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.91022,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 439.08978, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.81978,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 442.18024, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,166.63036,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 445.36963, + "ydirAdj": 381.288 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,161.13136,381.288]", + "rotation": 0, + "y": 410.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 450.86865, + "ydirAdj": 381.288 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.809,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 361.19098, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.91245,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 369.08755, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.822,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 372.17798, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.82892,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 377.17108, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,231.73848,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 380.26154, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,228.05414,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 383.94586, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,220.15758,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 391.8424, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,214.65858,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 397.34143, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,209.07161,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 402.9284, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.57262,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 408.42737, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,200.48218,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 411.51782, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,195.59906,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 416.40094, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.40964,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 419.59036, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,189.3192,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 422.6808, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,183.8202,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 428.1798, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,178.32121,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 433.67877, + "ydirAdj": 393.987 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.43729,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 439.5627, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.54073,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 447.4593, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,159.65761,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 452.3424, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,154.15862,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 457.84137, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.9692,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 461.03082, + "ydirAdj": 393.987 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,142.7757,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 469.2243, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,134.79115,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 477.20886, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,130.50192,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 481.49808, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,125.618805,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 486.3812, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,120.119804,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 491.8802, + "ydirAdj": 393.987 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,116.93038,393.987]", + "rotation": 0, + "y": 398.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 495.0696, + "ydirAdj": 393.987 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.809,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246613, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 361.19098, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.50635,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 368.49365, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.91937,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 374.08063, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.82893,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 377.17108, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,229.94582,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 382.0542, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.26147,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 385.73853, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,218.36491,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 393.63507, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,212.77794,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 399.22205, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.27895,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 404.72107, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.77995,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 410.22003, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.68951,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 413.3105, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.8064,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 418.1936, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.71596,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 421.28406, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,187.52654,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 424.47345, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.02754,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 429.97247, + "ydirAdj": 406.602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.52855,406.602]", + "rotation": 0, + "y": 385.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 435.47144, + "ydirAdj": 406.602 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.809,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246613, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 361.19098, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.50635,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 368.49365, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.91937,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 374.08063, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.82893,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 377.17108, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,229.94582,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 382.0542, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.04926,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 389.95074, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.55026,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 395.44974, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.05127,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 400.94873, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.4643,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 406.5357, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.37386,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 409.62616, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.49074,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 414.50928, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,194.4003,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 417.5997, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.21088,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 420.78912, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,185.71188,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 426.28812, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,180.21289,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 431.7871, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,174.7139,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 437.2861, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.2149,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 442.7851, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,163.62793,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 448.37207, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,155.73137,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 456.26862, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,152.04703,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 459.95297, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,147.16391,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 464.8361, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,141.66492,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 470.33508, + "ydirAdj": 419.301 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,132.76755,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 479.23245, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,127.88443,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 484.11557, + "ydirAdj": 419.301 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,122.0005,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 489.9995, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,117.117386,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 494.88263, + "ydirAdj": 419.301 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,114.02695,419.301]", + "rotation": 0, + "y": 372.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 497.97305, + "ydirAdj": 419.301 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 8, + "text": "Text with 0° Text with Highlights 1. Highlight: YellowHighlight0GradP 2. Highlight: GreenHighlight0GradP 3. Highlight: BlueHighlight0GradP 4. Highlight: RedHighlight0GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 404.504, + "y": 666.312 + }, + "width": 168.88467, + "height": 71.3844, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 404.504, + "maxX": 573.3887, + "minY": 666.312, + "maxY": 737.6964, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.504,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 404.504, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.20178,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 411.20178, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,416.19485,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 416.19485, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,421.69385,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 421.69385, + "ydirAdj": 62.39099 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,427.47882,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 427.47882, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,435.46338,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 435.46338, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,438.55383,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 438.55383, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,441.6443,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 441.6443, + "ydirAdj": 62.39099 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.9368,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 449.9368, + "ydirAdj": 62.39099 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,455.4358,729.609]", + "rotation": 0, + "y": 62.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 455.4358, + "ydirAdj": 62.39099 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.504,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 404.504, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.20178,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 411.20178, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,416.19485,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 416.19485, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,421.69385,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 421.69385, + "ydirAdj": 75.09003 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,427.47882,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 427.47882, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,435.46338,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 435.46338, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,438.55383,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 438.55383, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,441.6443,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 441.6443, + "ydirAdj": 75.09003 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.9368,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 449.9368, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,457.83334,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 457.83334, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,460.9238,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 460.9238, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,466.51077,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 466.51077, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,472.00977,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 472.00977, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,475.10022,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 475.10022, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,478.19067,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 478.19067, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,483.68967,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 483.68967, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,489.18866,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 489.18866, + "ydirAdj": 75.09003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,492.37808,716.91]", + "rotation": 0, + "y": 75.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 492.37808, + "ydirAdj": 75.09003 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.504,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 404.504, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.003,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 410.003, + "ydirAdj": 87.70398 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.49103,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 415.49103, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.4756,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 423.4756, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,426.56604,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 426.56604, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,432.06503,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 432.06503, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,437.56403,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 437.56403, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.65448,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 440.65448, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,443.8439,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 443.8439, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.3429,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 449.3429, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,454.8419,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 454.8419, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,457.93234,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 457.93234, + "ydirAdj": 87.70398 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,463.8163,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 463.8163, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,471.71286,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 471.71286, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,476.59595,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 476.59595, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,479.78537,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 479.78537, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,482.87582,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 482.87582, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,488.37482,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 488.37482, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,496.27136,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 496.27136, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,504.1679,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 504.1679, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,507.35733,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 507.35733, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,512.8563,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 512.8563, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,518.35535,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 518.35535, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,521.4458,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 521.4458, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,524.53625,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 524.53625, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,530.1233,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 530.1233, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,535.6223,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 535.6223, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,538.71277,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 538.71277, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,544.2118,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 544.2118, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,552.10834,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 0.0, + "xdirAdj": 552.10834, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,555.89166,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 555.89166, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,560.7748,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 560.7748, + "ydirAdj": 87.70398 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,566.2738,704.296]", + "rotation": 0, + "y": 87.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 0.0, + "xdirAdj": 566.2738, + "ydirAdj": 87.70398 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.504,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 404.504, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.003,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 410.003, + "ydirAdj": 100.403015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.49103,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 415.49103, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.4756,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 423.4756, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,426.56604,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 426.56604, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,432.06503,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 432.06503, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,437.56403,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 437.56403, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.65448,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 440.65448, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,443.8439,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 443.8439, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.3429,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 449.3429, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,454.8419,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 454.8419, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,457.93234,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 457.93234, + "ydirAdj": 100.403015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,463.8163,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 463.8163, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,471.71286,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 471.71286, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,475.3972,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 475.3972, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,480.39026,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 480.39026, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,485.27335,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 485.27335, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,490.77234,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 490.77234, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,498.66888,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 498.66888, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,501.75934,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 501.75934, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,507.3463,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 507.3463, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,512.84534,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 512.84534, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,515.9358,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 515.9358, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,519.02625,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 519.02625, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,524.52527,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 524.52527, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,530.1123,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 530.1123, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,533.20276,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 533.20276, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,538.7018,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 538.7018, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,546.5983,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 0.0, + "xdirAdj": 546.5983, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,550.28265,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 550.28265, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,555.27576,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 555.27576, + "ydirAdj": 100.403015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,560.7748,691.597]", + "rotation": 0, + "y": 100.403015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 0.0, + "xdirAdj": 560.7748, + "ydirAdj": 100.403015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.504,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 404.504, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.003,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 410.003, + "ydirAdj": 112.98901 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.49103,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 415.49103, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.4756,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 423.4756, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,426.56604,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 426.56604, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,432.06503,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 432.06503, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,437.56403,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 437.56403, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.65448,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 440.65448, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,443.8439,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 443.8439, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.3429,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 449.3429, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,454.8419,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 454.8419, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,457.93234,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 457.93234, + "ydirAdj": 112.98901 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,463.8163,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 463.8163, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,471.119,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 471.119, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,474.20944,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 474.20944, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,479.79642,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 479.79642, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,484.6795,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 484.6795, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,492.57605,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 492.57605, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,495.6665,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 495.6665, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,501.1655,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 501.1655, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,506.75247,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 506.75247, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,509.84293,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464172, + "heightDir": 6.087393, + "widthDirAdj": 3.0464172, + "dir": 0.0, + "xdirAdj": 509.84293, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,512.93335,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 512.93335, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,518.4324,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 518.4324, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,524.0194,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 524.0194, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,527.10986,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 527.10986, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,532.6089,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 532.6089, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,540.50543,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 0.0, + "xdirAdj": 540.50543, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,544.18976,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 544.18976, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,549.18286,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 549.18286, + "ydirAdj": 112.98901 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,554.6819,679.011]", + "rotation": 0, + "y": 112.98901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 0.0, + "xdirAdj": 554.6819, + "ydirAdj": 112.98901 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.504,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 404.504, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.003,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 410.003, + "ydirAdj": 125.68799 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.49103,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 415.49103, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.4756,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 423.4756, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,426.56604,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 426.56604, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,432.06503,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 432.06503, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,437.56403,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 437.56403, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.65448,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 440.65448, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,443.8439,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 443.8439, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.3429,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 449.3429, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,454.8419,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 454.8419, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,457.93234,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 457.93234, + "ydirAdj": 125.68799 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,463.8163,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 463.8163, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,471.119,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 471.119, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,476.00208,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 476.00208, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,481.58905,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 481.58905, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,489.4856,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 489.4856, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,492.57605,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 492.57605, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,498.07504,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 498.07504, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,503.57404,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 503.57404, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,506.76346,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 506.76346, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,509.8539,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 509.8539, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,515.3529,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 515.3529, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,520.8519,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 520.8519, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,524.0413,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 524.0413, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,529.54034,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 529.54034, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,537.4369,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 0.0, + "xdirAdj": 537.4369, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,541.1212,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 541.1212, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,546.00433,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 546.00433, + "ydirAdj": 125.68799 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,551.50336,666.312]", + "rotation": 0, + "y": 125.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 0.0, + "xdirAdj": 551.50336, + "ydirAdj": 125.68799 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 9, + "text": "Text with 90° Text with Highlights 1. Highlight: YellowHighlight90GradP 2. Highlight: GreenHighlight90GradP 3. Highlight: BlueHighlight90GradP 4. Highlight: RedHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 479.395, + "y": 209.39502 + }, + "width": 168.613, + "height": 71.300354, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 479.395, + "maxX": 648.008, + "minY": 209.39502, + "maxY": 280.69537, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,479.395]", + "rotation": 0, + "y": 312.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 479.395, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,486.198]", + "rotation": 0, + "y": 305.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 486.198, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,491.102]", + "rotation": 0, + "y": 300.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 491.102, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,496.602]", + "rotation": 0, + "y": 295.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 496.602, + "ydirAdj": 519.392 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,502.498]", + "rotation": 0, + "y": 289.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,510.406]", + "rotation": 0, + "y": 281.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 510.406, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,513.496]", + "rotation": 0, + "y": 278.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 513.496, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,516.586]", + "rotation": 0, + "y": 275.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 516.586, + "ydirAdj": 519.392 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,524.891]", + "rotation": 0, + "y": 267.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 524.891, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,530.391]", + "rotation": 0, + "y": 261.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 530.391, + "ydirAdj": 519.392 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,519.392,536.003]", + "rotation": 0, + "y": 255.99701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 536.003, + "ydirAdj": 519.392 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,479.395]", + "rotation": 0, + "y": 312.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 479.395, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,486.198]", + "rotation": 0, + "y": 305.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 486.198, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,491.102]", + "rotation": 0, + "y": 300.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 491.102, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,496.602]", + "rotation": 0, + "y": 295.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 496.602, + "ydirAdj": 532.006 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,502.498]", + "rotation": 0, + "y": 289.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,510.406]", + "rotation": 0, + "y": 281.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 510.406, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,513.496]", + "rotation": 0, + "y": 278.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 513.496, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,516.586]", + "rotation": 0, + "y": 275.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 516.586, + "ydirAdj": 532.006 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,524.891]", + "rotation": 0, + "y": 267.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 524.891, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,532.8]", + "rotation": 0, + "y": 259.2, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.8, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,536.003]", + "rotation": 0, + "y": 255.99701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 536.003, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,541.502]", + "rotation": 0, + "y": 250.49799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 541.502, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,547.002]", + "rotation": 0, + "y": 244.99799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 547.002, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,550.091]", + "rotation": 0, + "y": 241.909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 550.091, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,553.209]", + "rotation": 0, + "y": 238.79102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 553.209, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,558.709]", + "rotation": 0, + "y": 233.29102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.709, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,564.293]", + "rotation": 0, + "y": 227.70697, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 564.293, + "ydirAdj": 532.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,532.006,567.411]", + "rotation": 0, + "y": 224.58899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 567.411, + "ydirAdj": 532.006 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,479.395]", + "rotation": 0, + "y": 312.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 479.395, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,485.008]", + "rotation": 0, + "y": 306.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 485.008, + "ydirAdj": 544.706 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,490.507]", + "rotation": 0, + "y": 301.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 490.507, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,498.387]", + "rotation": 0, + "y": 293.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 498.387, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,501.506]", + "rotation": 0, + "y": 290.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 501.506, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,507.005]", + "rotation": 0, + "y": 284.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 507.005, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,512.504]", + "rotation": 0, + "y": 279.49597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 512.504, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,515.707]", + "rotation": 0, + "y": 276.29303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 515.707, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,518.797]", + "rotation": 0, + "y": 273.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 518.797, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,524.296]", + "rotation": 0, + "y": 267.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 524.296, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,529.795]", + "rotation": 0, + "y": 262.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 529.795, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,532.998]", + "rotation": 0, + "y": 259.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.998, + "ydirAdj": 544.706 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,538.809]", + "rotation": 0, + "y": 253.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 538.809, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,546.803]", + "rotation": 0, + "y": 245.19702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 546.803, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,551.707]", + "rotation": 0, + "y": 240.29303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 551.707, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,554.797]", + "rotation": 0, + "y": 237.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 554.797, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,557.887]", + "rotation": 0, + "y": 234.11298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 557.887, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,563.386]", + "rotation": 0, + "y": 228.61401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 563.386, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,571.408]", + "rotation": 0, + "y": 220.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 571.408, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,579.288]", + "rotation": 0, + "y": 212.71198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 579.288, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,582.406]", + "rotation": 0, + "y": 209.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 582.406, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,587.906]", + "rotation": 0, + "y": 204.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 587.906, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,593.405]", + "rotation": 0, + "y": 198.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 593.405, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,596.608]", + "rotation": 0, + "y": 195.39203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 596.608, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,599.698]", + "rotation": 0, + "y": 192.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 599.698, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,605.197]", + "rotation": 0, + "y": 186.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 605.197, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,610.696]", + "rotation": 0, + "y": 181.30402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 610.696, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,613.786]", + "rotation": 0, + "y": 178.21399, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 613.786, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,619.398]", + "rotation": 0, + "y": 172.60199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 619.398, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,624.898]", + "rotation": 0, + "y": 167.10199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 624.898, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,632.806]", + "rotation": 0, + "y": 159.19397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 632.806, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,636.491]", + "rotation": 0, + "y": 155.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 636.491, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,641.395]", + "rotation": 0, + "y": 150.60498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 641.395, + "ydirAdj": 544.706 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,544.706,647.008]", + "rotation": 0, + "y": 144.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 647.008, + "ydirAdj": 544.706 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,479.395]", + "rotation": 0, + "y": 312.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 479.395, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,485.008]", + "rotation": 0, + "y": 306.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 485.008, + "ydirAdj": 557.291 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,490.507]", + "rotation": 0, + "y": 301.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 490.507, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,498.387]", + "rotation": 0, + "y": 293.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 498.387, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,501.506]", + "rotation": 0, + "y": 290.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 501.506, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,507.09]", + "rotation": 0, + "y": 284.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 507.09, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,512.589]", + "rotation": 0, + "y": 279.411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 512.589, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,515.707]", + "rotation": 0, + "y": 276.29303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 515.707, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,518.797]", + "rotation": 0, + "y": 273.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 518.797, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,524.296]", + "rotation": 0, + "y": 267.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 524.296, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,529.795]", + "rotation": 0, + "y": 262.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 529.795, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,532.998]", + "rotation": 0, + "y": 259.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.998, + "ydirAdj": 557.291 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,538.894]", + "rotation": 0, + "y": 253.10602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 538.894, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,546.803]", + "rotation": 0, + "y": 245.19702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 546.803, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,550.488]", + "rotation": 0, + "y": 241.51202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 550.488, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,555.392]", + "rotation": 0, + "y": 236.60797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 555.392, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,560.296]", + "rotation": 0, + "y": 231.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 560.296, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,565.795]", + "rotation": 0, + "y": 226.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 565.795, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,573.789]", + "rotation": 0, + "y": 218.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 573.789, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,576.907]", + "rotation": 0, + "y": 215.09302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 576.907, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,582.406]", + "rotation": 0, + "y": 209.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 582.406, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,587.906]", + "rotation": 0, + "y": 204.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 587.906, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,590.995]", + "rotation": 0, + "y": 201.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 590.995, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,594.198]", + "rotation": 0, + "y": 197.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 594.198, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,599.698]", + "rotation": 0, + "y": 192.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 599.698, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,605.197]", + "rotation": 0, + "y": 186.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 605.197, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,608.287]", + "rotation": 0, + "y": 183.71301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 608.287, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,613.786]", + "rotation": 0, + "y": 178.21399, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 613.786, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,619.398]", + "rotation": 0, + "y": 172.60199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 619.398, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,627.307]", + "rotation": 0, + "y": 164.693, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 627.307, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,630.992]", + "rotation": 0, + "y": 161.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 630.992, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,635.896]", + "rotation": 0, + "y": 156.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 635.896, + "ydirAdj": 557.291 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,557.291,641.395]", + "rotation": 0, + "y": 150.60498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 641.395, + "ydirAdj": 557.291 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,479.395]", + "rotation": 0, + "y": 312.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 479.395, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,485.008]", + "rotation": 0, + "y": 306.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 485.008, + "ydirAdj": 569.991 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,490.507]", + "rotation": 0, + "y": 301.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 490.507, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,498.387]", + "rotation": 0, + "y": 293.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 498.387, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,501.506]", + "rotation": 0, + "y": 290.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 501.506, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,507.09]", + "rotation": 0, + "y": 284.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 507.09, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,512.589]", + "rotation": 0, + "y": 279.411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 512.589, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,515.707]", + "rotation": 0, + "y": 276.29303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 515.707, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,518.797]", + "rotation": 0, + "y": 273.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 518.797, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,524.296]", + "rotation": 0, + "y": 267.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 524.296, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,529.795]", + "rotation": 0, + "y": 262.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 529.795, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,532.998]", + "rotation": 0, + "y": 259.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.998, + "ydirAdj": 569.991 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,538.894]", + "rotation": 0, + "y": 253.10602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 538.894, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,546.208]", + "rotation": 0, + "y": 245.79199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 546.208, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,549.298]", + "rotation": 0, + "y": 242.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 549.298, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,554.797]", + "rotation": 0, + "y": 237.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 554.797, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,559.701]", + "rotation": 0, + "y": 232.29901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 559.701, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,567.694]", + "rotation": 0, + "y": 224.30603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 567.694, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,570.813]", + "rotation": 0, + "y": 221.18701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 570.813, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,576.312]", + "rotation": 0, + "y": 215.68799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 576.312, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,581.811]", + "rotation": 0, + "y": 210.18903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 581.811, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,584.901]", + "rotation": 0, + "y": 207.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 584.901, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,587.991]", + "rotation": 0, + "y": 204.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 587.991, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,593.603]", + "rotation": 0, + "y": 198.39697, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 593.603, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,599.102]", + "rotation": 0, + "y": 192.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 599.102, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,602.192]", + "rotation": 0, + "y": 189.80798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 602.192, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,607.691]", + "rotation": 0, + "y": 184.30902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 607.691, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,613.191]", + "rotation": 0, + "y": 178.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 613.191, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,621.213]", + "rotation": 0, + "y": 170.78699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 621.213, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,624.898]", + "rotation": 0, + "y": 167.10199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 624.898, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,629.802]", + "rotation": 0, + "y": 162.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 629.802, + "ydirAdj": 569.991 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,569.991,635.301]", + "rotation": 0, + "y": 156.69897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 635.301, + "ydirAdj": 569.991 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,479.395]", + "rotation": 0, + "y": 312.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 479.395, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,485.008]", + "rotation": 0, + "y": 306.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 485.008, + "ydirAdj": 582.605 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,490.507]", + "rotation": 0, + "y": 301.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 490.507, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,498.387]", + "rotation": 0, + "y": 293.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 498.387, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,501.506]", + "rotation": 0, + "y": 290.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 501.506, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,507.005]", + "rotation": 0, + "y": 284.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 507.005, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,512.504]", + "rotation": 0, + "y": 279.49597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 512.504, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,515.707]", + "rotation": 0, + "y": 276.29303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 515.707, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,518.797]", + "rotation": 0, + "y": 273.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 518.797, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,524.296]", + "rotation": 0, + "y": 267.70398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 524.296, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,529.795]", + "rotation": 0, + "y": 262.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 529.795, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,532.998]", + "rotation": 0, + "y": 259.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.998, + "ydirAdj": 582.605 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,538.809]", + "rotation": 0, + "y": 253.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 538.809, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,546.208]", + "rotation": 0, + "y": 245.79199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 546.208, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,551.112]", + "rotation": 0, + "y": 240.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 551.112, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,556.611]", + "rotation": 0, + "y": 235.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 556.611, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,564.491]", + "rotation": 0, + "y": 227.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 564.491, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,567.609]", + "rotation": 0, + "y": 224.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 567.609, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,573.109]", + "rotation": 0, + "y": 218.89099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 573.109, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,578.693]", + "rotation": 0, + "y": 213.307, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 578.693, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,581.811]", + "rotation": 0, + "y": 210.18903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 581.811, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,584.901]", + "rotation": 0, + "y": 207.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 584.901, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,590.4]", + "rotation": 0, + "y": 201.59998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 590.4, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,596.013]", + "rotation": 0, + "y": 195.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 596.013, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,599.102]", + "rotation": 0, + "y": 192.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 599.102, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,604.602]", + "rotation": 0, + "y": 187.39801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 604.602, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,610.101]", + "rotation": 0, + "y": 181.89899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 610.101, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,618.009]", + "rotation": 0, + "y": 173.99103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 618.009, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,621.808]", + "rotation": 0, + "y": 170.19202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 621.808, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,626.712]", + "rotation": 0, + "y": 165.28802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 626.712, + "ydirAdj": 582.605 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,582.605,632.211]", + "rotation": 0, + "y": 159.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 632.211, + "ydirAdj": 582.605 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 10, + "text": "Text with 180° Text with Highlights 1. Highlight: YellowHighlight180GradP 2. Highlight: GreenHighlight180GradP 3. Highlight: BlueHighlight180GradP 4. Highlight: RedHighlight180GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 7.9940186, + "y": 353.707 + }, + "width": 179.8826, + "height": 71.27139, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 7.9940186, + "maxX": 187.87662, + "minY": 353.707, + "maxY": 424.9784, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,604.006,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 180.0, + "xdirAdj": 7.9940186, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,597.30817,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 14.6918335, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,592.31506,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 19.684937, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,586.81604,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 25.18396, + "ydirAdj": 375.109 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,580.93207,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 31.067932, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,573.0355,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 38.964478, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,569.94507,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 42.05493, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,566.8546,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 45.145386, + "ydirAdj": 375.109 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,558.5621,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 53.437927, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,553.06305,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 58.93695, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,547.564,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 64.435974, + "ydirAdj": 375.109 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,541.977,375.109]", + "rotation": 0, + "y": 416.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 180.0, + "xdirAdj": 70.02301, + "ydirAdj": 375.109 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,604.006,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 180.0, + "xdirAdj": 7.9940186, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,597.30817,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 14.6918335, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,592.31506,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 19.684937, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,586.81604,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 25.18396, + "ydirAdj": 387.694 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,580.93207,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 31.067932, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,573.0355,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 38.964478, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,569.94507,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 42.05493, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,566.8546,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 45.145386, + "ydirAdj": 387.694 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,558.5621,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 53.437927, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,550.6655,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 61.334473, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,547.5751,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 64.42493, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,541.98804,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 70.01196, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,536.489,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 75.51099, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,533.39856,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 78.60144, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,530.3081,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 81.691895, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,524.8091,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 87.19092, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,519.31006,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 92.68994, + "ydirAdj": 387.694 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,516.12067,387.694]", + "rotation": 0, + "y": 404.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 95.87933, + "ydirAdj": 387.694 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,604.006,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 7.9940186, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,598.50696,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 13.493042, + "ydirAdj": 400.394 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,593.0189,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 18.98108, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,585.03436,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 26.965637, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,581.9439,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 30.056091, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,576.4449,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 35.555115, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,570.94586,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 41.05414, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,567.8554,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 44.144592, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,564.666,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 47.333984, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,559.167,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 52.833008, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,553.66797,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 58.33203, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,550.5775,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 61.422485, + "ydirAdj": 400.394 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,544.69354,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 67.30646, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,536.797,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 75.203, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,531.9139,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 80.08612, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,528.7245,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 83.27551, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,525.63403,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 86.36597, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,520.135,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 91.86499, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,512.23846,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 99.761536, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,504.34192,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 107.65808, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,501.1525,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 110.8475, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,495.6535,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 116.3465, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,490.1545,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 121.84549, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,487.06406,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 124.93594, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,483.87463,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 128.12537, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,478.37564,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 133.62436, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,472.87665,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 139.12335, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,469.7862,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 142.2138, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,464.2872,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 147.7128, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,458.70023,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 153.29977, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,453.20123,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 158.79877, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,445.3047,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 166.69531, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,441.62036,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 170.37964, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,436.73727,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 175.26273, + "ydirAdj": 400.394 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,431.23828,400.394]", + "rotation": 0, + "y": 391.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 180.76172, + "ydirAdj": 400.394 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,604.006,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 7.9940186, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,598.50696,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 13.493042, + "ydirAdj": 413.008 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,593.0189,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 18.98108, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,585.03436,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 26.965637, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,581.9439,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 30.056091, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,576.4449,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 35.555115, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,570.94586,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 41.05414, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,567.8554,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 44.144592, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,564.666,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 47.333984, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,559.167,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 52.833008, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,553.66797,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 58.33203, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,550.5775,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 61.422485, + "ydirAdj": 413.008 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,544.69354,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 67.30646, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,536.797,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 180.0, + "xdirAdj": 75.203, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,533.1127,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 78.88733, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,528.11957,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 83.88043, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,523.23645,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 88.76355, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,517.7374,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 94.26257, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,509.84088,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 102.15912, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,506.75043,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 105.24957, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,501.16345,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 110.83655, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,495.66446,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 116.33554, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,492.574,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 119.425995, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,489.48355,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 122.51645, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,483.89658,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 128.10342, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,478.39758,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 133.60242, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,475.30713,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 136.69287, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,469.80814,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 142.19186, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,464.30914,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 147.69086, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,458.72217,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 153.27783, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,450.82562,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 161.17438, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,447.1413,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 164.8587, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,442.2582,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 169.74179, + "ydirAdj": 413.008 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,436.75922,413.008]", + "rotation": 0, + "y": 378.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 175.24078, + "ydirAdj": 413.008 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,604.006,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 7.9940186, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,598.50696,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 13.493042, + "ydirAdj": 425.707 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,593.0189,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 18.98108, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,585.03436,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 26.965637, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,581.9439,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 30.056091, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,576.4449,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 35.555115, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,570.94586,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 41.05414, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,567.8554,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 44.144592, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,564.666,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 47.333984, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,559.167,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 52.833008, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,553.66797,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 58.33203, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,550.5775,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 61.422485, + "ydirAdj": 425.707 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,544.69354,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.324646, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 180.0, + "xdirAdj": 67.30646, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,537.39087,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 74.60913, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,534.2015,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 77.79852, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,528.70245,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 83.29755, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,523.81934,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 88.180664, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,515.9228,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 96.07721, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,512.83234,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 99.16766, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,507.33334,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 104.66666, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,501.74637,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 110.25363, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,498.6559,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 113.344086, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,495.56546,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 116.43454, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,490.06647,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 121.93353, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,484.4795,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 127.52051, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,481.38904,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 130.61096, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,475.89005,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 136.10995, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,470.39105,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 141.60895, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,464.89206,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 147.10794, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,456.9955,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 155.00449, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,453.21222,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 158.78778, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,448.32913,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 163.67087, + "ydirAdj": 425.707 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,442.83014,425.707]", + "rotation": 0, + "y": 366.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 169.16986, + "ydirAdj": 425.707 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,604.006,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 7.9940186, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,598.50696,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 13.493042, + "ydirAdj": 438.293 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,593.0189,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 18.98108, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,585.03436,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 26.965637, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,581.9439,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 30.056091, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,576.4449,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 35.555115, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,570.94586,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 41.05414, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,567.8554,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 44.144592, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,564.666,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 47.333984, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,559.167,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 52.833008, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,553.66797,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 58.33203, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,550.5775,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 61.422485, + "ydirAdj": 438.293 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,544.69354,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 180.0, + "xdirAdj": 67.30646, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,537.39087,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 74.60913, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,532.50775,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 79.49225, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,526.9207,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 85.079285, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,519.0242,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 92.97583, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,515.9337,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 96.066284, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,510.43472,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 101.56528, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,504.93573,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 107.06427, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,501.7463,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 110.25369, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,498.65585,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 113.34415, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,493.15686,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 118.84314, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,487.65787,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 124.34213, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,484.46844,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 127.531555, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,478.96945,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 133.03055, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,473.47046,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 138.52954, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,467.97147,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 144.02853, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,460.07492,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 151.92508, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,456.3906,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 155.6094, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,451.39752,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 160.60248, + "ydirAdj": 438.293 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,445.89853,438.293]", + "rotation": 0, + "y": 353.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 166.10147, + "ydirAdj": 438.293 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 11, + "text": "Text with 0° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 271.304, + "y": 675.496 + }, + "width": 103.017395, + "height": 33.40045, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 271.304, + "maxX": 374.32138, + "minY": 675.496, + "maxY": 708.8964, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,271.304,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 271.304, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,278.00177,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 278.00177, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,282.99484,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 282.99484, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,288.49384,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 288.49384, + "ydirAdj": 91.19098 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,294.2788,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 294.2788, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,302.26337,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 302.26337, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.35382,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 305.35382, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.44427,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 308.44427, + "ydirAdj": 91.19098 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,316.7368,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 316.7368, + "ydirAdj": 91.19098 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,322.23578,700.809]", + "rotation": 0, + "y": 91.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 322.23578, + "ydirAdj": 91.19098 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,271.304,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 271.304, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,277.4079,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 277.4079, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,282.99487,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 282.99487, + "ydirAdj": 103.890015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,289.37372,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 289.37372, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.46417,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.545441, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 0.0, + "xdirAdj": 292.46417, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,301.1526,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 301.1526, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,306.65158,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 306.65158, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,312.15057,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 312.15057, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,315.8349,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 315.8349, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.02432,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 319.02432, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.9074,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 323.9074, + "ydirAdj": 103.890015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,332.19992,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 332.19992, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,335.88425,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 335.88425, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,340.76733,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 340.76733, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.26633,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 346.26633, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.2594,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 351.2594, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.1425,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 356.1425, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,359.23294,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 359.23294, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,362.3234,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 362.3234, + "ydirAdj": 103.890015 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,367.8224,688.11]", + "rotation": 0, + "y": 103.890015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 367.8224, + "ydirAdj": 103.890015 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,271.304,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 271.304, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,279.20053,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 279.20053, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,284.08362,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 284.08362, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,287.8669,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 287.8669, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.75,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 292.75, + "ydirAdj": 116.50403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,298.63397,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 298.63397, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,303.51706,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 303.51706, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,309.01605,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 309.01605, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.51505,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 314.51505, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,320.01404,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 320.01404, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.20346,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 323.20346, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.08655,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 328.08655, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,331.177,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 331.177, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.26746,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 334.26746, + "ydirAdj": 116.50403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,339.76645,675.496]", + "rotation": 0, + "y": 116.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 339.76645, + "ydirAdj": 116.50403 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 12, + "text": "Text with 90° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 491.499, + "y": 445.408 + }, + "width": 97.80301, + "height": 33.372406, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 491.499, + "maxX": 589.302, + "minY": 445.408, + "maxY": 478.7804, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,491.499]", + "rotation": 0, + "y": 300.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 491.499, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,498.302]", + "rotation": 0, + "y": 293.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 498.302, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,503.206]", + "rotation": 0, + "y": 288.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 503.206, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,508.706]", + "rotation": 0, + "y": 283.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 508.706, + "ydirAdj": 321.307 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,514.602]", + "rotation": 0, + "y": 277.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 514.602, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,522.51]", + "rotation": 0, + "y": 269.49, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 522.51, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,525.6]", + "rotation": 0, + "y": 266.40002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 525.6, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,528.69]", + "rotation": 0, + "y": 263.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 528.69, + "ydirAdj": 321.307 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,536.995]", + "rotation": 0, + "y": 255.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 536.995, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,542.494]", + "rotation": 0, + "y": 249.50598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 542.494, + "ydirAdj": 321.307 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,321.307,548.107]", + "rotation": 0, + "y": 243.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 548.107, + "ydirAdj": 321.307 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,491.499]", + "rotation": 0, + "y": 300.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 90.0, + "xdirAdj": 491.499, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,497.707]", + "rotation": 0, + "y": 294.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 497.707, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,503.206]", + "rotation": 0, + "y": 288.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 503.206, + "ydirAdj": 334.006 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,509.613]", + "rotation": 0, + "y": 282.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464172, + "dir": 90.0, + "xdirAdj": 509.613, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,512.787]", + "rotation": 0, + "y": 279.213, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 8.545471, + "dir": 90.0, + "xdirAdj": 512.787, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,521.405]", + "rotation": 0, + "y": 270.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 521.405, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,526.904]", + "rotation": 0, + "y": 265.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 526.904, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,532.488]", + "rotation": 0, + "y": 259.51202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 532.488, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,536.202]", + "rotation": 0, + "y": 255.79797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 536.202, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,539.291]", + "rotation": 0, + "y": 252.70898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 539.291, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,544.195]", + "rotation": 0, + "y": 247.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 544.195, + "ydirAdj": 334.006 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,552.501]", + "rotation": 0, + "y": 239.49902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 552.501, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,556.186]", + "rotation": 0, + "y": 235.81403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 556.186, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,561.09]", + "rotation": 0, + "y": 230.90997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 561.09, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,566.702]", + "rotation": 0, + "y": 225.29797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 566.702, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,571.606]", + "rotation": 0, + "y": 220.39398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 571.606, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,576.51]", + "rotation": 0, + "y": 215.48999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 576.51, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,579.6]", + "rotation": 0, + "y": 212.40002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 579.6, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,582.69]", + "rotation": 0, + "y": 209.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 582.69, + "ydirAdj": 334.006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,334.006,588.302]", + "rotation": 0, + "y": 203.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 588.302, + "ydirAdj": 334.006 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,491.499]", + "rotation": 0, + "y": 300.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 491.499, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,499.493]", + "rotation": 0, + "y": 292.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 499.493, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,504.397]", + "rotation": 0, + "y": 287.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 504.397, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,508.11]", + "rotation": 0, + "y": 283.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 508.11, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,512.986]", + "rotation": 0, + "y": 279.01398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 512.986, + "ydirAdj": 346.592 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,518.91]", + "rotation": 0, + "y": 273.09003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 518.91, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,523.786]", + "rotation": 0, + "y": 268.214, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 523.786, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,529.398]", + "rotation": 0, + "y": 262.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 529.398, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,534.898]", + "rotation": 0, + "y": 257.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 534.898, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,540.397]", + "rotation": 0, + "y": 251.60303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 540.397, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,543.487]", + "rotation": 0, + "y": 248.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 543.487, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,548.391]", + "rotation": 0, + "y": 243.60901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 548.391, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,551.594]", + "rotation": 0, + "y": 240.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 551.594, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,554.712]", + "rotation": 0, + "y": 237.28802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 554.712, + "ydirAdj": 346.592 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,346.592,560.211]", + "rotation": 0, + "y": 231.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 560.211, + "ydirAdj": 346.592 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 13, + "text": "Text with 180° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 215.48999, + "y": 391.011 + }, + "width": 103.017395, + "height": 33.372406, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 215.48999, + "maxX": 318.5074, + "minY": 391.011, + "maxY": 424.3834, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,396.51,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 215.48999, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,389.81223,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 222.18777, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,384.81915,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 227.18085, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,379.32016,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 232.67984, + "ydirAdj": 375.704 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,373.4362,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 238.56381, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,365.53964,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 246.46036, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,362.4492,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 249.55081, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,359.35873,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 252.64127, + "ydirAdj": 375.704 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,351.06622,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 260.93378, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,345.56723,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 266.43277, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,340.06824,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 271.93176, + "ydirAdj": 375.704 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,334.48126,375.704]", + "rotation": 0, + "y": 416.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 180.0, + "xdirAdj": 277.51874, + "ydirAdj": 375.704 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,396.51,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 215.48999, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,390.4061,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 221.5939, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,384.81912,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 227.18088, + "ydirAdj": 388.403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,378.44028,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 233.55972, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,375.34982,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.545441, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 180.0, + "xdirAdj": 236.65018, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,366.6614,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 245.3386, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,361.1624,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 250.83759, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,355.66342,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 256.33658, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,351.88013,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 260.11987, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,348.78967,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 263.21033, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,343.9066,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 268.0934, + "ydirAdj": 388.403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,335.61407,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 276.38593, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,331.92975,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 280.07025, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,327.04666,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 284.95334, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,321.54767,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 290.45233, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,316.5546,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 295.4454, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,311.6715,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 300.3285, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,308.58105,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 303.41895, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,305.4906,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 306.5094, + "ydirAdj": 388.403 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.9916,388.403]", + "rotation": 0, + "y": 403.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 312.0084, + "ydirAdj": 388.403 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,396.51,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 215.48999, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,388.61346,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 223.38654, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,383.6204,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 228.37961, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,379.93607,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 232.06393, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,375.05298,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 236.94702, + "ydirAdj": 400.989 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,369.169,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 242.831, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,364.28592,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 247.71408, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,358.78693,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 253.21307, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,353.28793,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 258.71207, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,347.70096,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 264.29904, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,344.6105,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 267.3895, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,339.72742,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 272.27258, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,336.63696,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 275.36304, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,333.5465,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 278.4535, + "ydirAdj": 400.989 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,328.04752,400.989]", + "rotation": 0, + "y": 391.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 283.95248, + "ydirAdj": 400.989 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 14, + "text": "Text Text 1. 2. 3. 4. Highlight: Highlight: Highlight: Highlight: with with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 460.8, + "y": 709.002 + }, + "width": 54.103638, + "height": 71.29938, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 460.8, + "maxX": 514.9036, + "minY": 709.002, + "maxY": 780.3014, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,331.2]", + "rotation": 0, + "y": 460.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0234375, + "heightDir": 6.08743, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,325.304]", + "rotation": 0, + "y": 466.696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 466.696, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,320.4]", + "rotation": 0, + "y": 471.6, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 471.6, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,314.901]", + "rotation": 0, + "y": 477.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 477.099, + "ydirAdj": 19.78601 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,331.2]", + "rotation": 0, + "y": 460.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0234375, + "heightDir": 6.08743, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,325.389]", + "rotation": 0, + "y": 466.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 466.611, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,320.513]", + "rotation": 0, + "y": 471.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 471.487, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,314.986]", + "rotation": 0, + "y": 477.014, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 477.014, + "ydirAdj": 32.400024 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,331.2]", + "rotation": 0, + "y": 460.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,325.786]", + "rotation": 0, + "y": 466.214, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0095825195, + "heightDir": 6.08743, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 466.214, + "ydirAdj": 45.099 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,331.2]", + "rotation": 0, + "y": 460.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,325.786]", + "rotation": 0, + "y": 466.214, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0095825195, + "heightDir": 6.08743, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 466.214, + "ydirAdj": 57.713013 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,331.2]", + "rotation": 0, + "y": 460.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,325.786]", + "rotation": 0, + "y": 466.214, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0095825195, + "heightDir": 6.08743, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 466.214, + "ydirAdj": 70.413025 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,331.2]", + "rotation": 0, + "y": 460.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,325.786]", + "rotation": 0, + "y": 466.214, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0095825195, + "heightDir": 6.08743, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 466.214, + "ydirAdj": 82.997986 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,320.287]", + "rotation": 0, + "y": 471.713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 471.713, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,312.293]", + "rotation": 0, + "y": 479.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 479.707, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,309.288]", + "rotation": 0, + "y": 482.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 482.712, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,303.789]", + "rotation": 0, + "y": 488.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 488.211, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,298.29]", + "rotation": 0, + "y": 493.71, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.71, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,295.2]", + "rotation": 0, + "y": 496.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 496.8, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,292.195]", + "rotation": 0, + "y": 499.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.805, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,286.696]", + "rotation": 0, + "y": 505.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.304, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,281.197]", + "rotation": 0, + "y": 510.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 510.803, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,278.107]", + "rotation": 0, + "y": 513.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 513.893, + "ydirAdj": 45.099 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,320.287]", + "rotation": 0, + "y": 471.713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 471.713, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,312.406]", + "rotation": 0, + "y": 479.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 479.594, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,309.288]", + "rotation": 0, + "y": 482.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 482.712, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,303.789]", + "rotation": 0, + "y": 488.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 488.211, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,298.29]", + "rotation": 0, + "y": 493.71, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.71, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,295.313]", + "rotation": 0, + "y": 496.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 496.687, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,292.195]", + "rotation": 0, + "y": 499.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.805, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,286.696]", + "rotation": 0, + "y": 505.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.304, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,281.197]", + "rotation": 0, + "y": 510.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 510.803, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,278.107]", + "rotation": 0, + "y": 513.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 513.893, + "ydirAdj": 57.713013 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,320.287]", + "rotation": 0, + "y": 471.713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 471.713, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,312.293]", + "rotation": 0, + "y": 479.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 479.707, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,309.288]", + "rotation": 0, + "y": 482.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 482.712, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,303.789]", + "rotation": 0, + "y": 488.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 488.211, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,298.29]", + "rotation": 0, + "y": 493.71, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.71, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,295.2]", + "rotation": 0, + "y": 496.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 496.8, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,292.195]", + "rotation": 0, + "y": 499.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.805, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,286.696]", + "rotation": 0, + "y": 505.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.304, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,281.197]", + "rotation": 0, + "y": 510.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 510.803, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,278.107]", + "rotation": 0, + "y": 513.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 513.893, + "ydirAdj": 70.413025 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,320.287]", + "rotation": 0, + "y": 471.713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 471.713, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,312.406]", + "rotation": 0, + "y": 479.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 479.594, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,309.288]", + "rotation": 0, + "y": 482.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 482.712, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,303.789]", + "rotation": 0, + "y": 488.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 488.211, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,298.29]", + "rotation": 0, + "y": 493.71, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.71, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,295.313]", + "rotation": 0, + "y": 496.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 496.687, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,292.195]", + "rotation": 0, + "y": 499.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.805, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,286.696]", + "rotation": 0, + "y": 505.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.304, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,281.197]", + "rotation": 0, + "y": 510.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 510.803, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,278.107]", + "rotation": 0, + "y": 513.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 513.893, + "ydirAdj": 82.997986 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,309.203]", + "rotation": 0, + "y": 482.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 482.797, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,301.209]", + "rotation": 0, + "y": 490.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.791, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,298.205]", + "rotation": 0, + "y": 493.795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.795, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,295.087]", + "rotation": 0, + "y": 496.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 496.913, + "ydirAdj": 32.400024 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,309.09]", + "rotation": 0, + "y": 482.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 482.91, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,301.209]", + "rotation": 0, + "y": 490.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.791, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,298.091]", + "rotation": 0, + "y": 493.909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.909, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,295.087]", + "rotation": 0, + "y": 496.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 496.913, + "ydirAdj": 19.78601 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 15, + "text": "Text For Here:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 494.702, + "y": 514.29004 + }, + "width": 22.299591, + "height": 33.40039, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 494.702, + "maxX": 517.0016, + "minY": 514.29004, + "maxY": 547.6904, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,297.298]", + "rotation": 0, + "y": 494.702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.023406982, + "heightDir": 6.08743, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 494.702, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,291.402]", + "rotation": 0, + "y": 500.598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 500.598, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,286.498]", + "rotation": 0, + "y": 505.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.502, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,280.998]", + "rotation": 0, + "y": 511.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 511.002, + "ydirAdj": 252.397 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,297.298]", + "rotation": 0, + "y": 494.702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.021331787, + "heightDir": 6.08743, + "widthDirAdj": 6.1148987, + "dir": 270.0, + "xdirAdj": 494.702, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,291.288]", + "rotation": 0, + "y": 500.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 500.712, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,285.789]", + "rotation": 0, + "y": 506.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 506.211, + "ydirAdj": 265.011 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,297.298]", + "rotation": 0, + "y": 494.702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 494.702, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,289.389]", + "rotation": 0, + "y": 502.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 502.611, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,284.513]", + "rotation": 0, + "y": 507.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 507.487, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,280.913]", + "rotation": 0, + "y": 511.087, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 511.087, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,276.009]", + "rotation": 0, + "y": 515.99097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 515.99097, + "ydirAdj": 277.71 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 16, + "text": "Text Text Dict-Annotation: Rule-Annotation: RuleAnnotation270GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 503.291, + "y": 324.595 + }, + "width": 109.73038, + "height": 58.68643, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 503.291, + "maxX": 613.02136, + "minY": 324.595, + "maxY": 383.28143, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,288.709]", + "rotation": 0, + "y": 503.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.023406982, + "heightDir": 6.08743, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 503.291, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,282.813]", + "rotation": 0, + "y": 509.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 509.187, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,277.909]", + "rotation": 0, + "y": 514.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 514.091, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,272.409]", + "rotation": 0, + "y": 519.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 519.591, + "ydirAdj": 416.806 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,288.709]", + "rotation": 0, + "y": 503.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.023406982, + "heightDir": 6.08743, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 503.291, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,282.898]", + "rotation": 0, + "y": 509.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 509.102, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,277.994]", + "rotation": 0, + "y": 514.006, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 514.006, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,272.494]", + "rotation": 0, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 519.506, + "ydirAdj": 429.392 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,288.709]", + "rotation": 0, + "y": 503.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 503.291, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,280.8]", + "rotation": 0, + "y": 511.2, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 511.2, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,277.795]", + "rotation": 0, + "y": 514.20496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 514.20496, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,272.891]", + "rotation": 0, + "y": 519.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 519.109, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,269.802]", + "rotation": 0, + "y": 522.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 522.198, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,266.202]", + "rotation": 0, + "y": 525.798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 525.798, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,258.208]", + "rotation": 0, + "y": 533.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 533.792, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,252.709]", + "rotation": 0, + "y": 539.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 539.291, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,247.209]", + "rotation": 0, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 544.791, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,241.71]", + "rotation": 0, + "y": 550.29, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 550.29, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,238.706]", + "rotation": 0, + "y": 553.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 553.294, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.909,233.802]", + "rotation": 0, + "y": 558.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 558.198, + "ydirAdj": 442.091 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,230.712]", + "rotation": 0, + "y": 561.28796, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 561.28796, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,227.707]", + "rotation": 0, + "y": 564.29297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 564.29297, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,222.208]", + "rotation": 0, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 569.792, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,216.709]", + "rotation": 0, + "y": 575.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 575.291, + "ydirAdj": 442.00598 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,288.709]", + "rotation": 0, + "y": 503.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.025558472, + "heightDir": 6.08743, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 503.291, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,281.509]", + "rotation": 0, + "y": 510.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 510.491, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,276.009]", + "rotation": 0, + "y": 515.99097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 515.99097, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,272.891]", + "rotation": 0, + "y": 519.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 519.109, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,267.987]", + "rotation": 0, + "y": 524.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 524.013, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,264.387]", + "rotation": 0, + "y": 527.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 527.61304, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,256.394]", + "rotation": 0, + "y": 535.60596, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 535.60596, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,250.894]", + "rotation": 0, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 541.106, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,245.395]", + "rotation": 0, + "y": 546.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 546.605, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,239.896]", + "rotation": 0, + "y": 552.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 552.104, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,236.891]", + "rotation": 0, + "y": 555.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 555.109, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.294,231.987]", + "rotation": 0, + "y": 560.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 560.013, + "ydirAdj": 454.706 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.408,228.898]", + "rotation": 0, + "y": 563.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 563.102, + "ydirAdj": 454.59198 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.408,225.893]", + "rotation": 0, + "y": 566.107, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 566.107, + "ydirAdj": 454.59198 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.408,220.394]", + "rotation": 0, + "y": 571.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 571.606, + "ydirAdj": 454.59198 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,157.408,214.894]", + "rotation": 0, + "y": 577.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 577.106, + "ydirAdj": 454.59198 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,288.709]", + "rotation": 0, + "y": 503.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.025558472, + "heightDir": 6.08743, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 503.291, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,281.395]", + "rotation": 0, + "y": 510.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 510.605, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,275.896]", + "rotation": 0, + "y": 516.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 516.104, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,272.891]", + "rotation": 0, + "y": 519.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 519.109, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,267.987]", + "rotation": 0, + "y": 524.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 524.013, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,260.107]", + "rotation": 0, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 531.893, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,254.608]", + "rotation": 0, + "y": 537.39197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 537.39197, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,249.109]", + "rotation": 0, + "y": 542.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 542.891, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,243.609]", + "rotation": 0, + "y": 548.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 548.391, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,240.491]", + "rotation": 0, + "y": 551.50903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 551.50903, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,235.587]", + "rotation": 0, + "y": 556.41296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 556.41296, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.595,232.611]", + "rotation": 0, + "y": 559.38904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 559.38904, + "ydirAdj": 467.405 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,229.493]", + "rotation": 0, + "y": 562.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 562.507, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,223.994]", + "rotation": 0, + "y": 568.006, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 568.006, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,218.494]", + "rotation": 0, + "y": 573.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 573.506, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,212.995]", + "rotation": 0, + "y": 579.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 579.005, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,207.496]", + "rotation": 0, + "y": 584.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 584.504, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,201.997]", + "rotation": 0, + "y": 590.003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 590.003, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,194.088]", + "rotation": 0, + "y": 597.912, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 597.912, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,190.403]", + "rotation": 0, + "y": 601.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 601.597, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,185.499]", + "rotation": 0, + "y": 606.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 606.501, + "ydirAdj": 467.29102 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.709,180.0]", + "rotation": 0, + "y": 612.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.021347046, + "heightDir": 6.08743, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 612.0, + "ydirAdj": 467.29102 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 17, + "text": "Highlights 270°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 505.106, + "y": 759.6 + }, + "width": 43.221954, + "height": 20.701416, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 505.106, + "maxX": 548.32794, + "minY": 759.6, + "maxY": 780.3014, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,286.894]", + "rotation": 0, + "y": 505.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 505.106, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,278.901]", + "rotation": 0, + "y": 513.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 513.099, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.6,275.896]", + "rotation": 0, + "y": 516.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.104, + "ydirAdj": 32.400024 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,270.397]", + "rotation": 0, + "y": 521.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 521.603, + "ydirAdj": 32.286987 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,264.898]", + "rotation": 0, + "y": 527.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 527.102, + "ydirAdj": 32.286987 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,261.808]", + "rotation": 0, + "y": 530.192, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 530.192, + "ydirAdj": 32.286987 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,258.803]", + "rotation": 0, + "y": 533.197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 533.197, + "ydirAdj": 32.286987 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,253.304]", + "rotation": 0, + "y": 538.696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 538.696, + "ydirAdj": 32.286987 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,247.805]", + "rotation": 0, + "y": 544.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 544.195, + "ydirAdj": 32.286987 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,579.713,244.687]", + "rotation": 0, + "y": 547.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.014953613, + "heightDir": 6.08743, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 547.313, + "ydirAdj": 32.286987 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,286.809]", + "rotation": 0, + "y": 505.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.191, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,281.31]", + "rotation": 0, + "y": 510.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 510.69, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.214,275.811]", + "rotation": 0, + "y": 516.18896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.18896, + "ydirAdj": 19.78601 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,592.299,270.312]", + "rotation": 0, + "y": 521.688, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.015319824, + "heightDir": 6.08743, + "widthDirAdj": 4.388214, + "dir": 270.0, + "xdirAdj": 521.688, + "ydirAdj": 19.700989 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 18, + "text": "imported with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 512.589, + "y": 526.989 + }, + "width": 35.233154, + "height": 20.701416, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 512.589, + "maxX": 547.82214, + "minY": 526.989, + "maxY": 547.6904, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,279.411]", + "rotation": 0, + "y": 512.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 512.589, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,276.293]", + "rotation": 0, + "y": 515.70703, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.029815674, + "heightDir": 6.08743, + "widthDirAdj": 8.545441, + "dir": 270.0, + "xdirAdj": 515.70703, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,267.789]", + "rotation": 0, + "y": 524.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 524.211, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,262.29]", + "rotation": 0, + "y": 529.70996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 529.70996, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,256.791]", + "rotation": 0, + "y": 535.209, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 535.209, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,253.106]", + "rotation": 0, + "y": 538.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 538.894, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,249.987]", + "rotation": 0, + "y": 542.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 542.013, + "ydirAdj": 265.011 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,346.989,245.197]", + "rotation": 0, + "y": 546.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 546.803, + "ydirAdj": 265.011 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,275.187]", + "rotation": 0, + "y": 516.813, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 516.813, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,267.307]", + "rotation": 0, + "y": 524.693, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 524.693, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,264.189]", + "rotation": 0, + "y": 527.81104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 527.81104, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,261.213]", + "rotation": 0, + "y": 530.787, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 530.787, + "ydirAdj": 252.397 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 19, + "text": "Text Regular w/o Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 518.088, + "y": 192.18903 + }, + "width": 43.13794, + "height": 46.100433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 518.088, + "maxX": 561.22595, + "minY": 192.18903, + "maxY": 238.28946, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,273.912]", + "rotation": 0, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.023414612, + "heightDir": 6.08743, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 518.088, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,268.101]", + "rotation": 0, + "y": 523.899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017002106, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 523.899, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,263.197]", + "rotation": 0, + "y": 528.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 528.803, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,257.698]", + "rotation": 0, + "y": 534.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 534.302, + "ydirAdj": 561.798 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,273.912]", + "rotation": 0, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.025562286, + "heightDir": 6.08743, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 518.088, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,266.598]", + "rotation": 0, + "y": 525.402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017002106, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 525.402, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,261.808]", + "rotation": 0, + "y": 530.192, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 530.192, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,256.309]", + "rotation": 0, + "y": 535.69104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 535.69104, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,250.809]", + "rotation": 0, + "y": 541.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 541.191, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,247.691]", + "rotation": 0, + "y": 544.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017002106, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 544.309, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,242.787]", + "rotation": 0, + "y": 549.213, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012783051, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 549.213, + "ydirAdj": 574.498 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,273.912]", + "rotation": 0, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027711868, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 518.088, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,266.088]", + "rotation": 0, + "y": 525.912, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.912, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,262.998]", + "rotation": 0, + "y": 529.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 529.002, + "ydirAdj": 587.112 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,273.912]", + "rotation": 0, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027712822, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 518.088, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,266.003]", + "rotation": 0, + "y": 525.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010632515, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.997, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,262.998]", + "rotation": 0, + "y": 529.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 529.002, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,257.499]", + "rotation": 0, + "y": 534.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 534.501, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,252.0]", + "rotation": 0, + "y": 540.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010632515, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 540.0, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,248.91]", + "rotation": 0, + "y": 543.08997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010632515, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 543.08997, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,245.906]", + "rotation": 0, + "y": 546.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 546.094, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,240.406]", + "rotation": 0, + "y": 551.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 551.594, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,234.907]", + "rotation": 0, + "y": 557.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010632515, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 557.093, + "ydirAdj": 599.811 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,12.189,231.789]", + "rotation": 0, + "y": 560.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.014930725, + "heightDir": 6.08743, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 560.211, + "ydirAdj": 599.811 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 20, + "text": "YellowHighlight270GradP GreenHighlight270GradP BlueHighlight270GradP RedHighlight270GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 519.789, + "y": 709.002 + }, + "width": 112.93335, + "height": 45.98639, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 519.789, + "maxX": 632.72235, + "minY": 709.002, + "maxY": 754.9884, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,272.211]", + "rotation": 0, + "y": 519.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 519.789, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,265.408]", + "rotation": 0, + "y": 526.59204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 526.59204, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,260.504]", + "rotation": 0, + "y": 531.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 531.496, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,257.499]", + "rotation": 0, + "y": 534.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 534.501, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,254.409]", + "rotation": 0, + "y": 537.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 537.591, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,248.91]", + "rotation": 0, + "y": 543.08997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 543.08997, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,241.002]", + "rotation": 0, + "y": 550.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 550.998, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,233.008]", + "rotation": 0, + "y": 558.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 558.992, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,230.003]", + "rotation": 0, + "y": 561.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 561.997, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,224.504]", + "rotation": 0, + "y": 567.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 567.496, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,219.005]", + "rotation": 0, + "y": 572.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 572.995, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,566.901,215.887]", + "rotation": 0, + "y": 576.11304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 576.11304, + "ydirAdj": 45.099 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,212.91]", + "rotation": 0, + "y": 579.08997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 579.08997, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,207.411]", + "rotation": 0, + "y": 584.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 584.589, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,201.912]", + "rotation": 0, + "y": 590.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 590.088, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,198.794]", + "rotation": 0, + "y": 593.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 593.206, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,193.294]", + "rotation": 0, + "y": 598.706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 598.706, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,187.795]", + "rotation": 0, + "y": 604.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 604.205, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,182.296]", + "rotation": 0, + "y": 609.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 609.704, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,174.387]", + "rotation": 0, + "y": 617.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012756348, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 617.61304, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,170.702]", + "rotation": 0, + "y": 621.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 621.298, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,165.798]", + "rotation": 0, + "y": 626.202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 626.202, + "ydirAdj": 44.986023 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,567.014,160.299]", + "rotation": 0, + "y": 631.701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.021362305, + "heightDir": 6.08743, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 631.701, + "ydirAdj": 44.986023 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,272.211]", + "rotation": 0, + "y": 519.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 519.789, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,264.387]", + "rotation": 0, + "y": 527.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012756348, + "heightDir": 6.08743, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 527.61304, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,260.702]", + "rotation": 0, + "y": 531.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 531.298, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,255.798]", + "rotation": 0, + "y": 536.202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 536.202, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,250.894]", + "rotation": 0, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 541.106, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,245.395]", + "rotation": 0, + "y": 546.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 546.605, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,237.487]", + "rotation": 0, + "y": 554.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 554.513, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,234.397]", + "rotation": 0, + "y": 557.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 557.603, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,228.898]", + "rotation": 0, + "y": 563.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 563.102, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,223.398]", + "rotation": 0, + "y": 568.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 568.602, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,220.394]", + "rotation": 0, + "y": 571.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 571.606, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.287,217.304]", + "rotation": 0, + "y": 574.696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 574.696, + "ydirAdj": 57.713013 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,211.805]", + "rotation": 0, + "y": 580.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 580.195, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,206.306]", + "rotation": 0, + "y": 585.694, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 585.694, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,203.301]", + "rotation": 0, + "y": 588.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 588.699, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,197.802]", + "rotation": 0, + "y": 594.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.198, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,192.302]", + "rotation": 0, + "y": 599.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 599.698, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,186.803]", + "rotation": 0, + "y": 605.197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 605.197, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,178.809]", + "rotation": 0, + "y": 613.191, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012756348, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 613.191, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,175.209]", + "rotation": 0, + "y": 616.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 616.791, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,170.306]", + "rotation": 0, + "y": 621.694, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 621.694, + "ydirAdj": 57.599976 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,554.4,164.806]", + "rotation": 0, + "y": 627.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.021362305, + "heightDir": 6.08743, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 627.194, + "ydirAdj": 57.599976 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,272.211]", + "rotation": 0, + "y": 519.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.02557373, + "heightDir": 6.08743, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 519.789, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,264.898]", + "rotation": 0, + "y": 527.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 527.102, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,261.893]", + "rotation": 0, + "y": 530.107, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 530.107, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,256.394]", + "rotation": 0, + "y": 535.60596, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 535.60596, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,251.49]", + "rotation": 0, + "y": 540.51, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 540.51, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,243.609]", + "rotation": 0, + "y": 548.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 548.391, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,240.491]", + "rotation": 0, + "y": 551.50903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 551.50903, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,234.992]", + "rotation": 0, + "y": 557.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 557.008, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,229.493]", + "rotation": 0, + "y": 562.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 562.507, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,226.403]", + "rotation": 0, + "y": 565.597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 565.597, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,223.398]", + "rotation": 0, + "y": 568.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 568.602, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.587,217.899]", + "rotation": 0, + "y": 574.101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 574.101, + "ydirAdj": 70.413025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,212.4]", + "rotation": 0, + "y": 579.6, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 579.6, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,209.31]", + "rotation": 0, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 582.69, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,203.811]", + "rotation": 0, + "y": 588.18896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 588.18896, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,198.312]", + "rotation": 0, + "y": 593.688, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 593.688, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,192.813]", + "rotation": 0, + "y": 599.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 599.187, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,184.904]", + "rotation": 0, + "y": 607.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012756348, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 607.096, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,181.191]", + "rotation": 0, + "y": 610.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 610.809, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,176.287]", + "rotation": 0, + "y": 615.713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 615.713, + "ydirAdj": 70.29901 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,541.701,170.787]", + "rotation": 0, + "y": 621.213, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.021362305, + "heightDir": 6.08743, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 621.213, + "ydirAdj": 70.29901 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,272.211]", + "rotation": 0, + "y": 519.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.02557373, + "heightDir": 6.08743, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 519.789, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,265.011]", + "rotation": 0, + "y": 526.989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 526.989, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,260.107]", + "rotation": 0, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 531.893, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,254.608]", + "rotation": 0, + "y": 537.39197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 537.39197, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,246.699]", + "rotation": 0, + "y": 545.301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 545.301, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,243.609]", + "rotation": 0, + "y": 548.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 548.391, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,238.11]", + "rotation": 0, + "y": 553.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 553.89, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,232.611]", + "rotation": 0, + "y": 559.38904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 559.38904, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,229.493]", + "rotation": 0, + "y": 562.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 562.507, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,226.488]", + "rotation": 0, + "y": 565.51196, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 565.51196, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,220.989]", + "rotation": 0, + "y": 571.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 571.011, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.002,215.49]", + "rotation": 0, + "y": 576.51, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 576.51, + "ydirAdj": 82.997986 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,212.4]", + "rotation": 0, + "y": 579.6, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 579.6, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,206.901]", + "rotation": 0, + "y": 585.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 585.099, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,201.402]", + "rotation": 0, + "y": 590.598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 590.598, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,195.902]", + "rotation": 0, + "y": 596.098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 596.098, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,187.994]", + "rotation": 0, + "y": 604.006, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012756348, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 604.006, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,184.309]", + "rotation": 0, + "y": 607.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017028809, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 607.691, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,179.405]", + "rotation": 0, + "y": 612.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019165039, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 612.595, + "ydirAdj": 82.913025 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,529.087,173.906]", + "rotation": 0, + "y": 618.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.021362305, + "heightDir": 6.08743, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 618.094, + "ydirAdj": 82.913025 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 21, + "text": "annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 521.802, + "y": 514.29004 + }, + "width": 42.00818, + "height": 8.087402, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 521.802, + "maxX": 563.8102, + "minY": 514.29004, + "maxY": 522.37744, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,270.198]", + "rotation": 0, + "y": 521.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 521.802, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,265.294]", + "rotation": 0, + "y": 526.706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 526.706, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,259.795]", + "rotation": 0, + "y": 532.20496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 532.20496, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,254.296]", + "rotation": 0, + "y": 537.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 537.704, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,248.797]", + "rotation": 0, + "y": 543.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 543.203, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,245.707]", + "rotation": 0, + "y": 546.29297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 546.29297, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.29,240.888]", + "rotation": 0, + "y": 551.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 551.112, + "ydirAdj": 277.71 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.403,237.798]", + "rotation": 0, + "y": 554.202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 554.202, + "ydirAdj": 277.597 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.403,234.709]", + "rotation": 0, + "y": 557.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 557.291, + "ydirAdj": 277.597 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,334.403,229.209]", + "rotation": 0, + "y": 562.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 562.791, + "ydirAdj": 277.597 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 22, + "text": "with with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 525.28796, + "y": 362.608 + }, + "width": 15.13623, + "height": 20.673431, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 525.28796, + "maxX": 540.4242, + "minY": 362.608, + "maxY": 383.28143, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,266.712]", + "rotation": 0, + "y": 525.28796, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 525.28796, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,258.69]", + "rotation": 0, + "y": 533.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 533.31, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,255.713]", + "rotation": 0, + "y": 536.287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 536.287, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,252.595]", + "rotation": 0, + "y": 539.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 539.405, + "ydirAdj": 429.392 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,266.598]", + "rotation": 0, + "y": 525.402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 525.402, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,258.69]", + "rotation": 0, + "y": 533.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 533.31, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,255.6]", + "rotation": 0, + "y": 536.4, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 536.4, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,252.595]", + "rotation": 0, + "y": 539.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 539.405, + "ydirAdj": 416.806 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 23, + "text": "Annotations", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 536.598, + "y": 204.888 + }, + "width": 50.507935, + "height": 8.087433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 536.598, + "maxX": 587.10596, + "minY": 204.888, + "maxY": 212.97543, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,255.402]", + "rotation": 0, + "y": 536.598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.027711868, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 536.598, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,247.408]", + "rotation": 0, + "y": 544.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 544.592, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,241.909]", + "rotation": 0, + "y": 550.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 550.091, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,236.409]", + "rotation": 0, + "y": 555.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,230.91]", + "rotation": 0, + "y": 561.08997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 561.08997, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,227.906]", + "rotation": 0, + "y": 564.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017004013, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 564.094, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,223.002]", + "rotation": 0, + "y": 568.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 568.998, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,219.912]", + "rotation": 0, + "y": 572.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 572.088, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,24.888,216.907]", + "rotation": 0, + "y": 575.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 575.093, + "ydirAdj": 587.112 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,25.002,211.408]", + "rotation": 0, + "y": 580.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 580.592, + "ydirAdj": 586.998 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,25.002,205.909]", + "rotation": 0, + "y": 586.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.014930725, + "heightDir": 6.08743, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 586.091, + "ydirAdj": 586.998 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 24, + "text": "270°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 539.093, + "y": 539.603 + }, + "width": 17.513306, + "height": 8.087402, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 539.093, + "maxX": 556.6063, + "minY": 539.603, + "maxY": 547.6904, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,252.907]", + "rotation": 0, + "y": 539.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 539.093, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,247.408]", + "rotation": 0, + "y": 544.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 544.592, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.603,241.909]", + "rotation": 0, + "y": 550.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 550.091, + "ydirAdj": 252.397 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,359.688,236.409]", + "rotation": 0, + "y": 555.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.015319824, + "heightDir": 6.08743, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 252.31201 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 25, + "text": "with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 540.11304, + "y": 230.20203 + }, + "width": 15.108154, + "height": 8.087433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 540.11304, + "maxX": 555.2212, + "minY": 230.20203, + "maxY": 238.28946, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,251.887]", + "rotation": 0, + "y": 540.11304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.027713776, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 540.11304, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,243.893]", + "rotation": 0, + "y": 548.107, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 548.107, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,240.888]", + "rotation": 0, + "y": 551.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 551.112, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,237.798]", + "rotation": 0, + "y": 554.202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 554.202, + "ydirAdj": 561.798 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 26, + "text": "Annotation 270°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 547.002, + "y": 362.608 + }, + "width": 45.012146, + "height": 20.673431, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 547.002, + "maxX": 592.01416, + "minY": 362.608, + "maxY": 383.28143, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,244.998]", + "rotation": 0, + "y": 547.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 547.002, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.608,237.005]", + "rotation": 0, + "y": 554.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 554.995, + "ydirAdj": 429.392 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,231.506]", + "rotation": 0, + "y": 560.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 560.494, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,226.006]", + "rotation": 0, + "y": 565.994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 565.994, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,220.507]", + "rotation": 0, + "y": 571.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 571.493, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,217.502]", + "rotation": 0, + "y": 574.498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 574.498, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,212.598]", + "rotation": 0, + "y": 579.402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 579.402, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,209.509]", + "rotation": 0, + "y": 582.49097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 582.49097, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,206.504]", + "rotation": 0, + "y": 585.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 585.496, + "ydirAdj": 429.307 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,182.693,201.005]", + "rotation": 0, + "y": 590.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 590.995, + "ydirAdj": 429.307 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,244.29]", + "rotation": 0, + "y": 547.71, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 547.71, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,238.791]", + "rotation": 0, + "y": 553.209, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 553.209, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.194,233.291]", + "rotation": 0, + "y": 558.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 558.709, + "ydirAdj": 416.806 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,195.307,227.792]", + "rotation": 0, + "y": 564.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.015319824, + "heightDir": 6.08743, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 564.208, + "ydirAdj": 416.693 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 27, + "text": "redaction", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 555.109, + "y": 527.102 + }, + "width": 36.423218, + "height": 8.087402, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 555.109, + "maxX": 591.5322, + "minY": 527.102, + "maxY": 535.1894, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,236.891]", + "rotation": 0, + "y": 555.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.012786865, + "heightDir": 6.08743, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 555.109, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,233.206]", + "rotation": 0, + "y": 558.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 558.794, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,228.387]", + "rotation": 0, + "y": 563.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 563.61304, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,222.888]", + "rotation": 0, + "y": 569.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 569.112, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,218.013]", + "rotation": 0, + "y": 573.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 573.987, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,213.109]", + "rotation": 0, + "y": 578.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 578.891, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,209.991]", + "rotation": 0, + "y": 582.00903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010620117, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 582.00903, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,206.986]", + "rotation": 0, + "y": 585.01404, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 585.01404, + "ydirAdj": 264.898 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,347.102,201.487]", + "rotation": 0, + "y": 590.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 590.513, + "ydirAdj": 264.898 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 28, + "text": "Text 270°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 555.39197, + "y": 217.50201 + }, + "width": 24.514343, + "height": 20.787445, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 555.39197, + "maxX": 579.9063, + "minY": 217.50201, + "maxY": 238.28946, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,236.608]", + "rotation": 0, + "y": 555.39197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.023414612, + "heightDir": 6.08743, + "widthDirAdj": 6.708786, + "dir": 270.0, + "xdirAdj": 555.39197, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,230.598]", + "rotation": 0, + "y": 561.402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.017002106, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 561.402, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,225.808]", + "rotation": 0, + "y": 566.192, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 566.192, + "ydirAdj": 574.498 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,37.502,220.309]", + "rotation": 0, + "y": 571.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010631561, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 571.691, + "ydirAdj": 574.498 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,229.606]", + "rotation": 0, + "y": 562.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 562.394, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,224.107]", + "rotation": 0, + "y": 567.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 567.893, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.202,218.608]", + "rotation": 0, + "y": 573.39197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 573.39197, + "ydirAdj": 561.798 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,50.287,213.109]", + "rotation": 0, + "y": 578.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0153160095, + "heightDir": 6.08743, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 578.891, + "ydirAdj": 561.713 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 29, + "text": "David", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 581.102, + "y": 349.99402 + }, + "width": 22.421204, + "height": 8.087433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 581.102, + "maxX": 603.5232, + "minY": 349.99402, + "maxY": 358.08145, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,210.898]", + "rotation": 0, + "y": 581.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 581.102, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,202.904]", + "rotation": 0, + "y": 589.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 589.096, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,198.0]", + "rotation": 0, + "y": 594.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.0, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,192.501]", + "rotation": 0, + "y": 599.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 599.499, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,189.496]", + "rotation": 0, + "y": 602.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 602.504, + "ydirAdj": 442.00598 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 30, + "text": "and", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 593.206, + "y": 205.00201 + }, + "width": 11.309143, + "height": 8.087433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 593.206, + "maxX": 604.51514, + "minY": 205.00201, + "maxY": 213.08945, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,25.002,198.794]", + "rotation": 0, + "y": 593.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.017004013, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 593.206, + "ydirAdj": 586.998 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,25.002,194.003]", + "rotation": 0, + "y": 597.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 597.997, + "ydirAdj": 586.998 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,25.002,188.504]", + "rotation": 0, + "y": 603.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.019191742, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 603.496, + "ydirAdj": 586.998 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 31, + "text": "Ksenia", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 610.809, + "y": 349.99402 + }, + "width": 26.613953, + "height": 8.087433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 610.809, + "maxX": 637.423, + "minY": 349.99402, + "maxY": 358.08145, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,169.994,181.191]", + "rotation": 0, + "y": 610.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.027709961, + "heightDir": 6.08743, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 610.809, + "ydirAdj": 442.00598 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,170.107,173.31]", + "rotation": 0, + "y": 618.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0149383545, + "heightDir": 6.08743, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 618.69, + "ydirAdj": 441.893 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,170.107,169.002]", + "rotation": 0, + "y": 622.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 622.998, + "ydirAdj": 441.893 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,170.107,164.098]", + "rotation": 0, + "y": 627.902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.019195557, + "heightDir": 6.08743, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 627.902, + "ydirAdj": 441.893 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,170.107,158.598]", + "rotation": 0, + "y": 633.402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 633.402, + "ydirAdj": 441.893 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,170.107,155.594]", + "rotation": 0, + "y": 636.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 636.406, + "ydirAdj": 441.893 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 32, + "text": "et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 620.504, + "y": 324.794 + }, + "width": 19.604553, + "height": 8.087433, + "page": 1, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 620.504, + "maxX": 640.1086, + "minY": 324.794, + "maxY": 332.88144, + "classification": null, + "page": 1, + "orientation": "NONE", + "sequences": [ + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.794,171.496]", + "rotation": 0, + "y": 620.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 620.504, + "ydirAdj": 467.206 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.794,166.706]", + "rotation": 0, + "y": 625.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 625.294, + "ydirAdj": 467.206 + } + ] + }, + { + "page": 1, + "textPositions": [ + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.794,160.894]", + "rotation": 0, + "y": 631.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.016998291, + "heightDir": 6.08743, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 631.106, + "ydirAdj": 467.206 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.794,155.991]", + "rotation": 0, + "y": 636.00903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.010635376, + "heightDir": 6.08743, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 636.00903, + "ydirAdj": 467.206 + }, + { + "textMatrix": "[0.038383022,-10.998,10.998,0.038383022,144.794,152.901]", + "rotation": 0, + "y": 639.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.009597778, + "heightDir": 6.08743, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 639.099, + "ydirAdj": 467.206 + } + ] + } + ], + "rotation": 0, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 33, + "text": "Text with 270° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 673.6166, + "y": 328.904 + }, + "width": 46.07141, + "height": 75.088806, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 673.6166, + "maxX": 719.688, + "minY": 328.904, + "maxY": 403.9928, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.904,110.296]", + "rotation": 90, + "y": 328.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 328.904, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,335.60178,110.296]", + "rotation": 90, + "y": 335.60178, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 335.60178, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,340.59485,110.296]", + "rotation": 90, + "y": 340.59485, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 340.59485, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.09384,110.296]", + "rotation": 90, + "y": 346.09384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 346.09384, + "ydirAdj": 681.704 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.8788,110.296]", + "rotation": 90, + "y": 351.8788, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 351.8788, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,359.86337,110.296]", + "rotation": 90, + "y": 359.86337, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 359.86337, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,362.95383,110.296]", + "rotation": 90, + "y": 362.95383, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 362.95383, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.04428,110.296]", + "rotation": 90, + "y": 366.04428, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 366.04428, + "ydirAdj": 681.704 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,374.3368,110.296]", + "rotation": 90, + "y": 374.3368, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 374.3368, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,379.8358,110.296]", + "rotation": 90, + "y": 379.8358, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 379.8358, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,385.33478,110.296]", + "rotation": 90, + "y": 385.33478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 385.33478, + "ydirAdj": 681.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,390.92175,110.296]", + "rotation": 90, + "y": 390.92175, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 390.92175, + "ydirAdj": 681.704 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.904,97.597]", + "rotation": 90, + "y": 328.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 328.904, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,336.20667,97.597]", + "rotation": 90, + "y": 336.20667, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 336.20667, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.08975,97.597]", + "rotation": 90, + "y": 341.08975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 341.08975, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.67673,97.597]", + "rotation": 90, + "y": 346.67673, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 346.67673, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,352.17572,97.597]", + "rotation": 90, + "y": 352.17572, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 352.17572, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.26617,97.597]", + "rotation": 90, + "y": 355.26617, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 355.26617, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.14926,97.597]", + "rotation": 90, + "y": 360.14926, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 360.14926, + "ydirAdj": 694.403 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.6271,97.597]", + "rotation": 90, + "y": 366.6271, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 366.6271, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.3249,97.597]", + "rotation": 90, + "y": 373.3249, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 373.3249, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.20798,97.597]", + "rotation": 90, + "y": 378.20798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 378.20798, + "ydirAdj": 694.403 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,383.79495,97.597]", + "rotation": 90, + "y": 383.79495, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 383.79495, + "ydirAdj": 694.403 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.904,85.011]", + "rotation": 90, + "y": 328.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 328.904, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,336.80054,85.011]", + "rotation": 90, + "y": 336.80054, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 336.80054, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,339.891,85.011]", + "rotation": 90, + "y": 339.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 339.891, + "ydirAdj": 706.989 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,348.1725,85.011]", + "rotation": 90, + "y": 348.1725, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 348.1725, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.06903,85.011]", + "rotation": 90, + "y": 356.06903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 356.06903, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.656,85.011]", + "rotation": 90, + "y": 361.656, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 361.656, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,367.155,85.011]", + "rotation": 90, + "y": 367.155, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 367.155, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.654,85.011]", + "rotation": 90, + "y": 372.654, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 372.654, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.74445,85.011]", + "rotation": 90, + "y": 375.74445, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 375.74445, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.62753,85.011]", + "rotation": 90, + "y": 380.62753, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 380.62753, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,383.81696,85.011]", + "rotation": 90, + "y": 383.81696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 383.81696, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.9074,85.011]", + "rotation": 90, + "y": 386.9074, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 386.9074, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.4064,85.011]", + "rotation": 90, + "y": 392.4064, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 392.4064, + "ydirAdj": 706.989 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,397.9054,85.011]", + "rotation": 90, + "y": 397.9054, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 397.9054, + "ydirAdj": 706.989 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.904,72.312]", + "rotation": 90, + "y": 328.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 328.904, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.78708,72.312]", + "rotation": 90, + "y": 333.78708, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 333.78708, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,339.28607,72.312]", + "rotation": 90, + "y": 339.28607, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 339.28607, + "ydirAdj": 719.688 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,347.56757,72.312]", + "rotation": 90, + "y": 347.56757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 347.56757, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.4641,72.312]", + "rotation": 90, + "y": 355.4641, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 355.4641, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.65353,72.312]", + "rotation": 90, + "y": 358.65353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 358.65353, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,364.15253,72.312]", + "rotation": 90, + "y": 364.15253, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 364.15253, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.65152,72.312]", + "rotation": 90, + "y": 369.65152, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 369.65152, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.74197,72.312]", + "rotation": 90, + "y": 372.74197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 372.74197, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.83243,72.312]", + "rotation": 90, + "y": 375.83243, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 375.83243, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.4194,72.312]", + "rotation": 90, + "y": 381.4194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 381.4194, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.9184,72.312]", + "rotation": 90, + "y": 386.9184, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 386.9184, + "ydirAdj": 719.688 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,390.00885,72.312]", + "rotation": 90, + "y": 390.00885, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 390.00885, + "ydirAdj": 719.688 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 34, + "text": "Text with 0° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 28.224619, + "y": 58.394 + }, + "width": 45.98638, + "height": 75.19539, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 28.224619, + "maxX": 74.211, + "minY": 58.394, + "maxY": 133.58939, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,58.394]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708782, + "heightDir": 6.087393, + "widthDirAdj": 6.708782, + "dir": 90.0, + "xdirAdj": 58.394, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,65.197]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 65.197, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,70.101]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 70.101, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,75.6]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 75.6, + "ydirAdj": 36.31201 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,81.496]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 81.496, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,89.405]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 89.405, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,92.494]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 92.494, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,95.613]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 95.613, + "ydirAdj": 36.31201 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,103.89]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 103.89, + "ydirAdj": 36.31201 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,36.312,109.389]", + "rotation": 90, + "y": 36.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 90.0, + "xdirAdj": 109.389, + "ydirAdj": 36.31201 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,58.394]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324665, + "heightDir": 6.087393, + "widthDirAdj": 7.324665, + "dir": 90.0, + "xdirAdj": 58.394, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,65.707]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 65.707, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,70.696]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 70.696, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,76.195]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 76.195, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,81.694]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 81.694, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,84.813]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 84.813, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,89.688]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087393, + "widthDirAdj": 3.6623306, + "dir": 90.0, + "xdirAdj": 89.688, + "ydirAdj": 48.89801 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,96.208]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 90.0, + "xdirAdj": 96.208, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,103.011]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 103.011, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,107.887]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 107.887, + "ydirAdj": 48.89801 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,48.898,113.386]", + "rotation": 90, + "y": 48.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 113.386, + "ydirAdj": 48.89801 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,58.394]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 90.0, + "xdirAdj": 58.394, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,66.302]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 66.302, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,69.506]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 69.506, + "ydirAdj": 61.596985 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,77.811]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 77.811, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,85.691]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 85.691, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,91.191]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 91.191, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,96.69]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 96.69, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,102.189]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 102.189, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,105.307]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 105.307, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,110.296]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 110.296, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,113.386]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 113.386, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,116.504]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 116.504, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,122.003]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 122.003, + "ydirAdj": 61.596985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,61.597,127.502]", + "rotation": 90, + "y": 61.596985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 90.0, + "xdirAdj": 127.502, + "ydirAdj": 61.596985 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,58.394]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 90.0, + "xdirAdj": 58.394, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,63.411]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4989967, + "heightDir": 6.087393, + "widthDirAdj": 5.4989967, + "dir": 90.0, + "xdirAdj": 63.411, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,68.91]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 68.91, + "ydirAdj": 74.211 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,77.102]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 77.102, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,85.096]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 85.096, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,88.186]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 88.186, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,93.713]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 93.713, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,99.213]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 99.213, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,102.302]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 102.302, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,105.506]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 105.506, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,111.005]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 111.005, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,116.504]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 116.504, + "ydirAdj": 74.211 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,74.211,119.594]", + "rotation": 90, + "y": 74.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278221, + "heightDir": 6.087393, + "widthDirAdj": 4.278221, + "dir": 90.0, + "xdirAdj": 119.594, + "ydirAdj": 74.211 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 35, + "text": "Text with 90° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 71.62263, + "y": 390.387 + }, + "width": 45.98638, + "height": 75.088806, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 71.62263, + "maxX": 117.60901, + "minY": 390.387, + "maxY": 465.4758, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.613,79.71]", + "rotation": 90, + "y": 221.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 390.387, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,214.91522,79.71]", + "rotation": 90, + "y": 214.91522, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 397.08478, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.0321,79.71]", + "rotation": 90, + "y": 210.0321, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 401.9679, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.53311,79.71]", + "rotation": 90, + "y": 204.53311, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 407.4669, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.64919,79.71]", + "rotation": 90, + "y": 198.64917, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 413.35083, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.75262,79.71]", + "rotation": 90, + "y": 190.75262, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 421.24738, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,187.66219,79.71]", + "rotation": 90, + "y": 187.66217, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 424.33783, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.57175,79.71]", + "rotation": 90, + "y": 184.57175, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 427.42825, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.29027,79.71]", + "rotation": 90, + "y": 176.29028, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 435.70972, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.7033,79.71]", + "rotation": 90, + "y": 170.70331, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 441.2967, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,165.2043,79.71]", + "rotation": 90, + "y": 165.20428, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 446.79572, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.613,92.296]", + "rotation": 90, + "y": 221.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 390.387, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,214.31035,92.296]", + "rotation": 90, + "y": 214.31036, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 397.68964, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,209.42723,92.296]", + "rotation": 90, + "y": 209.42725, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 402.57275, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.92824,92.296]", + "rotation": 90, + "y": 203.92822, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.07178, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.42924,92.296]", + "rotation": 90, + "y": 198.42926, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 413.57074, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,195.3388,92.296]", + "rotation": 90, + "y": 195.3388, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 416.6612, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.34572,92.296]", + "rotation": 90, + "y": 190.3457, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 421.6543, + "ydirAdj": 92.29602 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,183.86789,92.296]", + "rotation": 90, + "y": 183.86789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 428.1321, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,177.1701,92.296]", + "rotation": 90, + "y": 177.1701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 434.8299, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.28699,92.296]", + "rotation": 90, + "y": 172.28699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 439.713, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,166.788,92.296]", + "rotation": 90, + "y": 166.788, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 445.212, + "ydirAdj": 92.29602 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.613,104.995]", + "rotation": 90, + "y": 221.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 390.387, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.71645,104.995]", + "rotation": 90, + "y": 213.71643, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 398.28357, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.626,104.995]", + "rotation": 90, + "y": 210.626, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 401.374, + "ydirAdj": 104.994995 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.33353,104.995]", + "rotation": 90, + "y": 202.33353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 409.66647, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,194.43697,104.995]", + "rotation": 90, + "y": 194.43695, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 417.56305, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,188.93797,104.995]", + "rotation": 90, + "y": 188.93799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 423.062, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,183.43898,104.995]", + "rotation": 90, + "y": 183.43896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 428.56104, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,177.852,104.995]", + "rotation": 90, + "y": 177.85199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 434.148, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,174.76157,104.995]", + "rotation": 90, + "y": 174.76157, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 437.23843, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.87845,104.995]", + "rotation": 90, + "y": 169.87845, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 442.12155, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,166.78801,104.995]", + "rotation": 90, + "y": 166.78802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 445.21198, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,163.69757,104.995]", + "rotation": 90, + "y": 163.69757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 448.30243, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.1106,104.995]", + "rotation": 90, + "y": 158.1106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 453.8894, + "ydirAdj": 104.994995 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,152.6116,104.995]", + "rotation": 90, + "y": 152.6116, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 459.3884, + "ydirAdj": 104.994995 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.613,117.609]", + "rotation": 90, + "y": 221.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 390.387, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.72989,117.609]", + "rotation": 90, + "y": 216.72989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 395.2701, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.2309,117.609]", + "rotation": 90, + "y": 211.2309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 400.7691, + "ydirAdj": 117.60901 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.93842,117.609]", + "rotation": 90, + "y": 202.93842, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 409.06158, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,195.04185,117.609]", + "rotation": 90, + "y": 195.04187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 416.95813, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.95142,117.609]", + "rotation": 90, + "y": 191.95142, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 420.04858, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.45242,117.609]", + "rotation": 90, + "y": 186.45242, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 425.54758, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,180.95343,117.609]", + "rotation": 90, + "y": 180.95343, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 431.04657, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,177.764,117.609]", + "rotation": 90, + "y": 177.764, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 434.236, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,174.67357,117.609]", + "rotation": 90, + "y": 174.67358, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 437.32642, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.17458,117.609]", + "rotation": 90, + "y": 169.17456, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 442.82544, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,163.67558,117.609]", + "rotation": 90, + "y": 163.6756, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 448.3244, + "ydirAdj": 117.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,160.48616,117.609]", + "rotation": 90, + "y": 160.48615, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 451.51385, + "ydirAdj": 117.60901 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 36, + "text": "Text with 270° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation0GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 466.6026, + "y": 292.904 + }, + "width": 58.685364, + "height": 139.96597, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 466.6026, + "maxX": 525.28796, + "minY": 292.904, + "maxY": 432.86996, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.904,317.31]", + "rotation": 90, + "y": 292.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 292.904, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,299.60178,317.31]", + "rotation": 90, + "y": 299.60178, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 299.60178, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,304.59485,317.31]", + "rotation": 90, + "y": 304.59485, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 304.59485, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,310.09384,317.31]", + "rotation": 90, + "y": 310.09384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 310.09384, + "ydirAdj": 474.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,315.8788,317.31]", + "rotation": 90, + "y": 315.8788, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 315.8788, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.86337,317.31]", + "rotation": 90, + "y": 323.86337, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 323.86337, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.95383,317.31]", + "rotation": 90, + "y": 326.95383, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 326.95383, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,330.04428,317.31]", + "rotation": 90, + "y": 330.04428, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 330.04428, + "ydirAdj": 474.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,338.3368,317.31]", + "rotation": 90, + "y": 338.3368, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 338.3368, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,343.8358,317.31]", + "rotation": 90, + "y": 343.8358, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 343.8358, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,349.33478,317.31]", + "rotation": 90, + "y": 349.33478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 349.33478, + "ydirAdj": 474.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,354.92175,317.31]", + "rotation": 90, + "y": 354.92175, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 354.92175, + "ydirAdj": 474.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.904,304.696]", + "rotation": 90, + "y": 292.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 292.904, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,299.60178,304.696]", + "rotation": 90, + "y": 299.60178, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 299.60178, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,304.59485,304.696]", + "rotation": 90, + "y": 304.59485, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 304.59485, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,310.09384,304.696]", + "rotation": 90, + "y": 310.09384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 310.09384, + "ydirAdj": 487.304 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,315.8788,304.696]", + "rotation": 90, + "y": 315.8788, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 315.8788, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.86337,304.696]", + "rotation": 90, + "y": 323.86337, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 323.86337, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.95383,304.696]", + "rotation": 90, + "y": 326.95383, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 326.95383, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,330.04428,304.696]", + "rotation": 90, + "y": 330.04428, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 330.04428, + "ydirAdj": 487.304 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,338.3368,304.696]", + "rotation": 90, + "y": 338.3368, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 338.3368, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.23334,304.696]", + "rotation": 90, + "y": 346.23334, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 346.23334, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.73233,304.696]", + "rotation": 90, + "y": 351.73233, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 351.73233, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,357.23132,304.696]", + "rotation": 90, + "y": 357.23132, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 357.23132, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,362.8183,304.696]", + "rotation": 90, + "y": 362.8183, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 362.8183, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.90875,304.696]", + "rotation": 90, + "y": 365.90875, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 365.90875, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,370.79184,304.696]", + "rotation": 90, + "y": 370.79184, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 370.79184, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.8823,304.696]", + "rotation": 90, + "y": 373.8823, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 373.8823, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,376.97275,304.696]", + "rotation": 90, + "y": 376.97275, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 376.97275, + "ydirAdj": 487.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.55972,304.696]", + "rotation": 90, + "y": 382.55972, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 382.55972, + "ydirAdj": 487.304 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.904,291.997]", + "rotation": 90, + "y": 292.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 292.904, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.80054,291.997]", + "rotation": 90, + "y": 300.80054, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.80054, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,303.891,291.997]", + "rotation": 90, + "y": 303.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 303.891, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.88406,291.997]", + "rotation": 90, + "y": 308.88406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 308.88406, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,311.97452,291.997]", + "rotation": 90, + "y": 311.97452, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 311.97452, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,315.65884,291.997]", + "rotation": 90, + "y": 315.65884, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 315.65884, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.5554,291.997]", + "rotation": 90, + "y": 323.5554, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 323.5554, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,329.05438,291.997]", + "rotation": 90, + "y": 329.05438, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 329.05438, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.64136,291.997]", + "rotation": 90, + "y": 334.64136, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 334.64136, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,340.14035,291.997]", + "rotation": 90, + "y": 340.14035, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 340.14035, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,343.2308,291.997]", + "rotation": 90, + "y": 343.2308, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 343.2308, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,348.1139,291.997]", + "rotation": 90, + "y": 348.1139, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 348.1139, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.3033,291.997]", + "rotation": 90, + "y": 351.3033, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 351.3033, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,354.39377,291.997]", + "rotation": 90, + "y": 354.39377, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 354.39377, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,359.89276,291.997]", + "rotation": 90, + "y": 359.89276, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 359.89276, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.39175,291.997]", + "rotation": 90, + "y": 365.39175, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 365.39175, + "ydirAdj": 500.003 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.27573,291.997]", + "rotation": 90, + "y": 371.27573, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 371.27573, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,379.17227,291.997]", + "rotation": 90, + "y": 379.17227, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 379.17227, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.05536,291.997]", + "rotation": 90, + "y": 384.05536, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 384.05536, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,389.55435,291.997]", + "rotation": 90, + "y": 389.55435, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 389.55435, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.74377,291.997]", + "rotation": 90, + "y": 392.74377, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 392.74377, + "ydirAdj": 500.003 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.9373,291.997]", + "rotation": 90, + "y": 400.9373, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 400.9373, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,408.92184,291.997]", + "rotation": 90, + "y": 408.92184, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 408.92184, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,413.21106,291.997]", + "rotation": 90, + "y": 413.21106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 413.21106, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,418.09415,291.997]", + "rotation": 90, + "y": 418.09415, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 418.09415, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.59314,291.997]", + "rotation": 90, + "y": 423.59314, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 423.59314, + "ydirAdj": 500.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,426.78256,291.997]", + "rotation": 90, + "y": 426.78256, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 426.78256, + "ydirAdj": 500.003 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.904,279.411]", + "rotation": 90, + "y": 292.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 292.904, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.20667,279.411]", + "rotation": 90, + "y": 300.20667, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 300.20667, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.70566,279.411]", + "rotation": 90, + "y": 305.70566, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 305.70566, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.89508,279.411]", + "rotation": 90, + "y": 308.89508, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 308.89508, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,313.77817,279.411]", + "rotation": 90, + "y": 313.77817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 313.77817, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.4625,279.411]", + "rotation": 90, + "y": 317.4625, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 317.4625, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,325.35904,279.411]", + "rotation": 90, + "y": 325.35904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 325.35904, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,330.85803,279.411]", + "rotation": 90, + "y": 330.85803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 330.85803, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,336.445,279.411]", + "rotation": 90, + "y": 336.445, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 336.445, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.944,279.411]", + "rotation": 90, + "y": 341.944, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 341.944, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,345.03445,279.411]", + "rotation": 90, + "y": 345.03445, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 345.03445, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,349.91754,279.411]", + "rotation": 90, + "y": 349.91754, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 349.91754, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,353.008,279.411]", + "rotation": 90, + "y": 353.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 353.008, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.19742,279.411]", + "rotation": 90, + "y": 356.19742, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 356.19742, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.6964,279.411]", + "rotation": 90, + "y": 361.6964, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 361.6964, + "ydirAdj": 512.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,367.1954,279.411]", + "rotation": 90, + "y": 367.1954, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 367.1954, + "ydirAdj": 512.589 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,292.904,266.712]", + "rotation": 90, + "y": 292.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 292.904, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.20667,266.712]", + "rotation": 90, + "y": 300.20667, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 300.20667, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.70566,266.712]", + "rotation": 90, + "y": 305.70566, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 305.70566, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.89508,266.712]", + "rotation": 90, + "y": 308.89508, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 308.89508, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,313.77817,266.712]", + "rotation": 90, + "y": 313.77817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 313.77817, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,321.6747,266.712]", + "rotation": 90, + "y": 321.6747, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 321.6747, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,327.1737,266.712]", + "rotation": 90, + "y": 327.1737, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 327.1737, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,332.6727,266.712]", + "rotation": 90, + "y": 332.6727, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 332.6727, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,338.25967,266.712]", + "rotation": 90, + "y": 338.25967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 338.25967, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.35013,266.712]", + "rotation": 90, + "y": 341.35013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 341.35013, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.23322,266.712]", + "rotation": 90, + "y": 346.23322, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 346.23322, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,349.32367,266.712]", + "rotation": 90, + "y": 349.32367, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 349.32367, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,352.41412,266.712]", + "rotation": 90, + "y": 352.41412, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 352.41412, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.0011,266.712]", + "rotation": 90, + "y": 358.0011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 358.0011, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.5001,266.712]", + "rotation": 90, + "y": 363.5001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 363.5001, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,368.99908,266.712]", + "rotation": 90, + "y": 368.99908, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 368.99908, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,376.89563,266.712]", + "rotation": 90, + "y": 376.89563, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 376.89563, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.57996,266.712]", + "rotation": 90, + "y": 380.57996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 380.57996, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,385.57303,266.712]", + "rotation": 90, + "y": 385.57303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 385.57303, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,391.07202,266.712]", + "rotation": 90, + "y": 391.07202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 391.07202, + "ydirAdj": 525.28796 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.96945,266.712]", + "rotation": 90, + "y": 399.96945, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 399.96945, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.85254,266.712]", + "rotation": 90, + "y": 404.85254, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 404.85254, + "ydirAdj": 525.28796 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.7365,266.712]", + "rotation": 90, + "y": 410.7365, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 410.7365, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.6196,266.712]", + "rotation": 90, + "y": 415.6196, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 415.6196, + "ydirAdj": 525.28796 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,418.71005,266.712]", + "rotation": 90, + "y": 418.71005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 418.71005, + "ydirAdj": 525.28796 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 37, + "text": "Text with 0° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation90GradP et al. Text with 90° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation180GradP et al. Text with 270° Text with Highlights 1. Highlight: YellowHighlight0GradP 2. Highlight: GreenHighlight0GradP 3. Highlight: BlueHighlight0GradP 4. Highlight: RedHighlight0GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 21.024607, + "y": 200.806 + }, + "width": 260.4844, + "height": 297.15945, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 21.024607, + "maxX": 281.509, + "minY": 200.806, + "maxY": 497.96545, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,200.806]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 90.0, + "xdirAdj": 200.806, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,207.609]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 207.609, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,212.513]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 212.513, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,218.013]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 218.013, + "ydirAdj": 29.112 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,223.909]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 223.909, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,231.789]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 231.789, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,234.907]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 234.907, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,237.997]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 237.997, + "ydirAdj": 29.112 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,246.302]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 246.302, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,251.802]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 90.0, + "xdirAdj": 251.802, + "ydirAdj": 29.112 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,200.806]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 90.0, + "xdirAdj": 200.806, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,207.496]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 207.496, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,212.513]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 212.513, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,218.013]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 218.013, + "ydirAdj": 41.697998 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,223.909]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 223.909, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,231.789]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 231.789, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,234.907]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 234.907, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,237.997]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 237.997, + "ydirAdj": 41.697998 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,246.302]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 246.302, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,254.211]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 254.211, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,259.795]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 259.795, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,265.294]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 265.294, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,270.794]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 270.794, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,273.912]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 273.912, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,278.787]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 278.787, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,281.991]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 281.991, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,285.109]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 285.109, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,290.608]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 290.608, + "ydirAdj": 41.697998 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,200.806]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 200.806, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,208.687]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 208.687, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,211.89]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 211.89, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,216.794]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 216.794, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,219.912]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 219.912, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,223.597]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 223.597, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,231.591]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 231.591, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,237.09]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 237.09, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,242.589]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 242.589, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,248.088]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 248.088, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,251.206]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 251.206, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,256.195]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 256.195, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,259.313]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 259.313, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,262.403]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 262.403, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,267.902]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 267.902, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,273.402]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 273.402, + "ydirAdj": 54.396973 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,279.298]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 279.298, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,287.206]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 287.206, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,292.195]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 292.195, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,297.694]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 297.694, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,300.813]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 300.813, + "ydirAdj": 54.396973 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,309.09]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 309.09, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,316.998]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 90.0, + "xdirAdj": 316.998, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,321.307]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 321.307, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,326.211]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 326.211, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,331.795]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 331.795, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,334.913]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 334.913, + "ydirAdj": 54.396973 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,200.806]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246613, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 90.0, + "xdirAdj": 200.806, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,208.205]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 208.205, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,213.704]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 213.704, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,216.794]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 216.794, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,221.698]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 221.698, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,225.411]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 225.411, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,233.405]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 233.405, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,238.904]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 238.904, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,244.403]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 244.403, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,249.902]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 249.902, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,253.106]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 253.106, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,258.009]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 258.009, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,261.099]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 261.099, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,264.189]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 264.189, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,269.688]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 269.688, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,275.187]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 275.187, + "ydirAdj": 67.01099 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,200.806]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246613, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 90.0, + "xdirAdj": 200.806, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,208.205]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 208.205, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,213.704]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 213.704, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,216.794]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 216.794, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,221.698]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 221.698, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,229.606]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 229.606, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,235.191]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 235.191, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,240.69]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 240.69, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,246.189]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 246.189, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,249.307]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 249.307, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,254.211]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 254.211, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,257.386]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 257.386, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,260.504]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 260.504, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,266.003]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 266.003, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,271.502]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 271.502, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,277.002]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 277.002, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,282.586]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 282.586, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,290.494]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 290.494, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,294.208]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 294.208, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,299.112]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 299.112, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,304.611]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 90.0, + "xdirAdj": 304.611, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,313.512]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 313.512, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,318.387]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 318.387, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,324.312]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 324.312, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,329.187]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 329.187, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,332.391]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 332.391, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.904,230.91]", + "rotation": 90, + "y": 256.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 355.096, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.2062,230.91]", + "rotation": 90, + "y": 250.2062, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 361.7938, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.21312,230.91]", + "rotation": 90, + "y": 245.21313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 366.78687, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.71413,230.91]", + "rotation": 90, + "y": 239.71411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 372.2859, + "ydirAdj": 230.91003 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.92918,230.91]", + "rotation": 90, + "y": 233.9292, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 378.0708, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,225.94464,230.91]", + "rotation": 90, + "y": 225.94464, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 386.05536, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.8542,230.91]", + "rotation": 90, + "y": 222.85419, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 389.1458, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.76376,230.91]", + "rotation": 90, + "y": 219.76376, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 392.23624, + "ydirAdj": 230.91003 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.47128,230.91]", + "rotation": 90, + "y": 211.47128, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 400.52872, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.97229,230.91]", + "rotation": 90, + "y": 205.97229, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 406.0277, + "ydirAdj": 230.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,200.4733,230.91]", + "rotation": 90, + "y": 200.4733, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 411.5267, + "ydirAdj": 230.91003 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.904,243.496]", + "rotation": 90, + "y": 256.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 355.096, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.2062,243.496]", + "rotation": 90, + "y": 250.2062, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 361.7938, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.21312,243.496]", + "rotation": 90, + "y": 245.21313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 366.78687, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.71413,243.496]", + "rotation": 90, + "y": 239.71411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 372.2859, + "ydirAdj": 243.49597 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.92918,243.496]", + "rotation": 90, + "y": 233.9292, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 378.0708, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,225.94464,243.496]", + "rotation": 90, + "y": 225.94464, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 386.05536, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.8542,243.496]", + "rotation": 90, + "y": 222.85419, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 389.1458, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.76376,243.496]", + "rotation": 90, + "y": 219.76376, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 392.23624, + "ydirAdj": 243.49597 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.47128,243.496]", + "rotation": 90, + "y": 211.47128, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 400.52872, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.57472,243.496]", + "rotation": 90, + "y": 203.5747, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.4253, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.07573,243.496]", + "rotation": 90, + "y": 198.07574, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 413.92426, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.57674,243.496]", + "rotation": 90, + "y": 192.57672, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 419.42328, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.98976,243.496]", + "rotation": 90, + "y": 186.98975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 425.01025, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,183.89932,243.496]", + "rotation": 90, + "y": 183.89932, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 428.10068, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.0162,243.496]", + "rotation": 90, + "y": 179.0162, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 432.9838, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,175.92577,243.496]", + "rotation": 90, + "y": 175.92578, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 436.07422, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.83533,243.496]", + "rotation": 90, + "y": 172.83533, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 439.16467, + "ydirAdj": 243.49597 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.24835,243.496]", + "rotation": 90, + "y": 167.24835, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 444.75165, + "ydirAdj": 243.49597 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.904,256.195]", + "rotation": 90, + "y": 256.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 355.096, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,249.00743,256.195]", + "rotation": 90, + "y": 249.00745, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 362.99255, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.91699,256.195]", + "rotation": 90, + "y": 245.91699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 366.083, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,240.9239,256.195]", + "rotation": 90, + "y": 240.92389, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 371.0761, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.83347,256.195]", + "rotation": 90, + "y": 237.83347, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 374.16653, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.14912,256.195]", + "rotation": 90, + "y": 234.14911, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 377.8509, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.25256,256.195]", + "rotation": 90, + "y": 226.25256, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 385.74744, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,220.75357,256.195]", + "rotation": 90, + "y": 220.75357, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 391.24643, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.1666,256.195]", + "rotation": 90, + "y": 215.1666, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 396.8334, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,209.6676,256.195]", + "rotation": 90, + "y": 209.6676, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 402.3324, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,206.57716,256.195]", + "rotation": 90, + "y": 206.57715, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 405.42285, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.69405,256.195]", + "rotation": 90, + "y": 201.69403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 410.30597, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.50462,256.195]", + "rotation": 90, + "y": 198.50464, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 413.49536, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,195.41418,256.195]", + "rotation": 90, + "y": 195.41418, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 416.58582, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,189.91519,256.195]", + "rotation": 90, + "y": 189.91519, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 422.0848, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.4162,256.195]", + "rotation": 90, + "y": 184.4162, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 427.5838, + "ydirAdj": 256.195 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,178.53227,256.195]", + "rotation": 90, + "y": 178.53229, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 433.4677, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.63571,256.195]", + "rotation": 90, + "y": 170.63571, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 441.3643, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,165.7526,256.195]", + "rotation": 90, + "y": 165.7526, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 446.2474, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,160.2536,256.195]", + "rotation": 90, + "y": 160.2536, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 451.7464, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,157.06418,256.195]", + "rotation": 90, + "y": 157.06418, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 454.93582, + "ydirAdj": 256.195 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,148.87068,256.195]", + "rotation": 90, + "y": 148.87067, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 463.12933, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,140.88614,256.195]", + "rotation": 90, + "y": 140.88614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 471.11386, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,136.59691,256.195]", + "rotation": 90, + "y": 136.59692, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 475.40308, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,131.71379,256.195]", + "rotation": 90, + "y": 131.7138, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 480.2862, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,126.21479,256.195]", + "rotation": 90, + "y": 126.21478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 485.78522, + "ydirAdj": 256.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,123.02537,256.195]", + "rotation": 90, + "y": 123.02536, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 488.97464, + "ydirAdj": 256.195 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.904,268.809]", + "rotation": 90, + "y": 256.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 355.096, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,249.60133,268.809]", + "rotation": 90, + "y": 249.60132, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 362.39868, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.10234,268.809]", + "rotation": 90, + "y": 244.10236, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 367.89764, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,240.91292,268.809]", + "rotation": 90, + "y": 240.9129, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 371.0871, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.0298,268.809]", + "rotation": 90, + "y": 236.02979, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 375.9702, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.34546,268.809]", + "rotation": 90, + "y": 232.34546, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 379.65454, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.4489,268.809]", + "rotation": 90, + "y": 224.44891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 387.5511, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,218.9499,268.809]", + "rotation": 90, + "y": 218.94989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 393.0501, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.36293,268.809]", + "rotation": 90, + "y": 213.36292, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 398.6371, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.86394,268.809]", + "rotation": 90, + "y": 207.86395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 404.13605, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.7735,268.809]", + "rotation": 90, + "y": 204.7735, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 407.2265, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.89038,268.809]", + "rotation": 90, + "y": 199.89038, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 412.10962, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,196.79994,268.809]", + "rotation": 90, + "y": 196.79993, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 415.20007, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.61052,268.809]", + "rotation": 90, + "y": 193.61053, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 418.38947, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,188.11153,268.809]", + "rotation": 90, + "y": 188.11151, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 423.8885, + "ydirAdj": 268.80896 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.61253,268.809]", + "rotation": 90, + "y": 182.61255, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 429.38745, + "ydirAdj": 268.80896 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.904,281.509]", + "rotation": 90, + "y": 256.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 355.096, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,249.60133,281.509]", + "rotation": 90, + "y": 249.60132, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 362.39868, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.10234,281.509]", + "rotation": 90, + "y": 244.10236, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 367.89764, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,240.91292,281.509]", + "rotation": 90, + "y": 240.9129, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 371.0871, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.0298,281.509]", + "rotation": 90, + "y": 236.02979, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 375.9702, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,228.13324,281.509]", + "rotation": 90, + "y": 228.13324, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 383.86676, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.63425,281.509]", + "rotation": 90, + "y": 222.63425, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 389.36575, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,217.13525,281.509]", + "rotation": 90, + "y": 217.13525, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 394.86475, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.54828,281.509]", + "rotation": 90, + "y": 211.54828, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 400.45172, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,208.45784,281.509]", + "rotation": 90, + "y": 208.45782, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 403.54218, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.57472,281.509]", + "rotation": 90, + "y": 203.5747, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 408.4253, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,200.48428,281.509]", + "rotation": 90, + "y": 200.48428, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 411.51572, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.39384,281.509]", + "rotation": 90, + "y": 197.39386, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 414.60614, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.80687,281.509]", + "rotation": 90, + "y": 191.80688, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 420.1931, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.30788,281.509]", + "rotation": 90, + "y": 186.30786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 425.69214, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,180.80888,281.509]", + "rotation": 90, + "y": 180.8089, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 431.1911, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,175.30989,281.509]", + "rotation": 90, + "y": 175.30988, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 436.69012, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.72292,281.509]", + "rotation": 90, + "y": 169.7229, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 442.2771, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,161.82635,281.509]", + "rotation": 90, + "y": 161.82635, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 450.17365, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.14201,281.509]", + "rotation": 90, + "y": 158.14203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 453.85797, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,153.2589,281.509]", + "rotation": 90, + "y": 153.25891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 458.7411, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,147.7599,281.509]", + "rotation": 90, + "y": 147.75989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 464.2401, + "ydirAdj": 281.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,138.86253,281.509]", + "rotation": 90, + "y": 138.86255, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 473.13745, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,133.97942,281.509]", + "rotation": 90, + "y": 133.97943, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 478.02057, + "ydirAdj": 281.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,128.09549,281.509]", + "rotation": 90, + "y": 128.09549, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 483.9045, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,123.21237,281.509]", + "rotation": 90, + "y": 123.21237, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 488.78763, + "ydirAdj": 281.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,120.12193,281.509]", + "rotation": 90, + "y": 120.12195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 491.87805, + "ydirAdj": 281.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.104,636.009]", + "rotation": 90, + "y": 264.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 264.104, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,270.8018,636.009]", + "rotation": 90, + "y": 270.8018, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 270.8018, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,275.79486,636.009]", + "rotation": 90, + "y": 275.79486, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 275.79486, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,281.29385,636.009]", + "rotation": 90, + "y": 281.29385, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 281.29385, + "ydirAdj": 155.99103 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,287.07883,636.009]", + "rotation": 90, + "y": 287.07883, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 287.07883, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,295.0634,636.009]", + "rotation": 90, + "y": 295.0634, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 295.0634, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,298.15384,636.009]", + "rotation": 90, + "y": 298.15384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 298.15384, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,301.2443,636.009]", + "rotation": 90, + "y": 301.2443, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 301.2443, + "ydirAdj": 155.99103 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,309.5368,636.009]", + "rotation": 90, + "y": 309.5368, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 309.5368, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,315.0358,636.009]", + "rotation": 90, + "y": 315.0358, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 315.0358, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,320.5348,636.009]", + "rotation": 90, + "y": 320.5348, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 320.5348, + "ydirAdj": 155.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.12177,636.009]", + "rotation": 90, + "y": 326.12177, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 326.12177, + "ydirAdj": 155.99103 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.104,623.31]", + "rotation": 90, + "y": 264.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 264.104, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,270.8018,623.31]", + "rotation": 90, + "y": 270.8018, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 270.8018, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,275.79486,623.31]", + "rotation": 90, + "y": 275.79486, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 275.79486, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,281.29385,623.31]", + "rotation": 90, + "y": 281.29385, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 281.29385, + "ydirAdj": 168.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,287.07883,623.31]", + "rotation": 90, + "y": 287.07883, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 287.07883, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,295.0634,623.31]", + "rotation": 90, + "y": 295.0634, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 295.0634, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,298.15384,623.31]", + "rotation": 90, + "y": 298.15384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 298.15384, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,301.2443,623.31]", + "rotation": 90, + "y": 301.2443, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 301.2443, + "ydirAdj": 168.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,309.5368,623.31]", + "rotation": 90, + "y": 309.5368, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 309.5368, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.43335,623.31]", + "rotation": 90, + "y": 317.43335, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.43335, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,320.5238,623.31]", + "rotation": 90, + "y": 320.5238, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 320.5238, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.11078,623.31]", + "rotation": 90, + "y": 326.11078, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 326.11078, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,331.60977,623.31]", + "rotation": 90, + "y": 331.60977, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 331.60977, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.70023,623.31]", + "rotation": 90, + "y": 334.70023, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 334.70023, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.79068,623.31]", + "rotation": 90, + "y": 337.79068, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 337.79068, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,343.28967,623.31]", + "rotation": 90, + "y": 343.28967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 343.28967, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,348.78867,623.31]", + "rotation": 90, + "y": 348.78867, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 348.78867, + "ydirAdj": 168.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.9781,623.31]", + "rotation": 90, + "y": 351.9781, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 351.9781, + "ydirAdj": 168.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.104,610.696]", + "rotation": 90, + "y": 264.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 264.104, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,269.603,610.696]", + "rotation": 90, + "y": 269.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 269.603, + "ydirAdj": 181.30402 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,275.09103,610.696]", + "rotation": 90, + "y": 275.09103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 275.09103, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.0756,610.696]", + "rotation": 90, + "y": 283.0756, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 283.0756, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,286.16605,610.696]", + "rotation": 90, + "y": 286.16605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 286.16605, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,291.66504,610.696]", + "rotation": 90, + "y": 291.66504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 291.66504, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,297.16403,610.696]", + "rotation": 90, + "y": 297.16403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 297.16403, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.2545,610.696]", + "rotation": 90, + "y": 300.2545, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.2545, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,303.4439,610.696]", + "rotation": 90, + "y": 303.4439, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 303.4439, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.9429,610.696]", + "rotation": 90, + "y": 308.9429, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 308.9429, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.4419,610.696]", + "rotation": 90, + "y": 314.4419, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 314.4419, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.53235,610.696]", + "rotation": 90, + "y": 317.53235, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.53235, + "ydirAdj": 181.30402 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.41632,610.696]", + "rotation": 90, + "y": 323.41632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 323.41632, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,331.31287,610.696]", + "rotation": 90, + "y": 331.31287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 331.31287, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,336.19595,610.696]", + "rotation": 90, + "y": 336.19595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 336.19595, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,339.38538,610.696]", + "rotation": 90, + "y": 339.38538, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 339.38538, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,342.47583,610.696]", + "rotation": 90, + "y": 342.47583, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 342.47583, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,347.97482,610.696]", + "rotation": 90, + "y": 347.97482, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 347.97482, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.87137,610.696]", + "rotation": 90, + "y": 355.87137, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 355.87137, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.7679,610.696]", + "rotation": 90, + "y": 363.7679, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 363.7679, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.95734,610.696]", + "rotation": 90, + "y": 366.95734, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 366.95734, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.45633,610.696]", + "rotation": 90, + "y": 372.45633, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 372.45633, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,377.95532,610.696]", + "rotation": 90, + "y": 377.95532, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 377.95532, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.04578,610.696]", + "rotation": 90, + "y": 381.04578, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 381.04578, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.13623,610.696]", + "rotation": 90, + "y": 384.13623, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 384.13623, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,389.7232,610.696]", + "rotation": 90, + "y": 389.7232, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 389.7232, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,395.2222,610.696]", + "rotation": 90, + "y": 395.2222, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 395.2222, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,398.31265,610.696]", + "rotation": 90, + "y": 398.31265, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 398.31265, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.81165,610.696]", + "rotation": 90, + "y": 403.81165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 403.81165, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.7082,610.696]", + "rotation": 90, + "y": 411.7082, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 411.7082, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.4915,610.696]", + "rotation": 90, + "y": 415.4915, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 415.4915, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,420.37457,610.696]", + "rotation": 90, + "y": 420.37457, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 420.37457, + "ydirAdj": 181.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,425.87357,610.696]", + "rotation": 90, + "y": 425.87357, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 425.87357, + "ydirAdj": 181.30402 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.104,597.997]", + "rotation": 90, + "y": 264.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 264.104, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,269.603,597.997]", + "rotation": 90, + "y": 269.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 269.603, + "ydirAdj": 194.00299 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,275.09103,597.997]", + "rotation": 90, + "y": 275.09103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 275.09103, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.0756,597.997]", + "rotation": 90, + "y": 283.0756, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 283.0756, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,286.16605,597.997]", + "rotation": 90, + "y": 286.16605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 286.16605, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,291.66504,597.997]", + "rotation": 90, + "y": 291.66504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 291.66504, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,297.16403,597.997]", + "rotation": 90, + "y": 297.16403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 297.16403, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.2545,597.997]", + "rotation": 90, + "y": 300.2545, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.2545, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,303.4439,597.997]", + "rotation": 90, + "y": 303.4439, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 303.4439, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.9429,597.997]", + "rotation": 90, + "y": 308.9429, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 308.9429, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.4419,597.997]", + "rotation": 90, + "y": 314.4419, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 314.4419, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.53235,597.997]", + "rotation": 90, + "y": 317.53235, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.53235, + "ydirAdj": 194.00299 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.41632,597.997]", + "rotation": 90, + "y": 323.41632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 323.41632, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,331.31287,597.997]", + "rotation": 90, + "y": 331.31287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 331.31287, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.9972,597.997]", + "rotation": 90, + "y": 334.9972, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 334.9972, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,339.99026,597.997]", + "rotation": 90, + "y": 339.99026, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 339.99026, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,344.87335,597.997]", + "rotation": 90, + "y": 344.87335, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 344.87335, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.37234,597.997]", + "rotation": 90, + "y": 350.37234, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 350.37234, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.2689,597.997]", + "rotation": 90, + "y": 358.2689, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 358.2689, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.35934,597.997]", + "rotation": 90, + "y": 361.35934, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 361.35934, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.94632,597.997]", + "rotation": 90, + "y": 366.94632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 366.94632, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.4453,597.997]", + "rotation": 90, + "y": 372.4453, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 372.4453, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.53577,597.997]", + "rotation": 90, + "y": 375.53577, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 375.53577, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.62622,597.997]", + "rotation": 90, + "y": 378.62622, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 378.62622, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.1252,597.997]", + "rotation": 90, + "y": 384.1252, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 384.1252, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,389.7122,597.997]", + "rotation": 90, + "y": 389.7122, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 389.7122, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.80264,597.997]", + "rotation": 90, + "y": 392.80264, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 392.80264, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,398.30164,597.997]", + "rotation": 90, + "y": 398.30164, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 398.30164, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,406.19818,597.997]", + "rotation": 90, + "y": 406.19818, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 406.19818, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,409.8825,597.997]", + "rotation": 90, + "y": 409.8825, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 409.8825, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,414.87558,597.997]", + "rotation": 90, + "y": 414.87558, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 414.87558, + "ydirAdj": 194.00299 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,420.37457,597.997]", + "rotation": 90, + "y": 420.37457, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 420.37457, + "ydirAdj": 194.00299 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.104,585.411]", + "rotation": 90, + "y": 264.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 264.104, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,269.603,585.411]", + "rotation": 90, + "y": 269.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 269.603, + "ydirAdj": 206.58899 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,275.09103,585.411]", + "rotation": 90, + "y": 275.09103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 275.09103, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.0756,585.411]", + "rotation": 90, + "y": 283.0756, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 283.0756, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,286.16605,585.411]", + "rotation": 90, + "y": 286.16605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 286.16605, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,291.66504,585.411]", + "rotation": 90, + "y": 291.66504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 291.66504, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,297.16403,585.411]", + "rotation": 90, + "y": 297.16403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 297.16403, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.2545,585.411]", + "rotation": 90, + "y": 300.2545, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.2545, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,303.4439,585.411]", + "rotation": 90, + "y": 303.4439, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 303.4439, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.9429,585.411]", + "rotation": 90, + "y": 308.9429, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 308.9429, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.4419,585.411]", + "rotation": 90, + "y": 314.4419, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 314.4419, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.53235,585.411]", + "rotation": 90, + "y": 317.53235, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.53235, + "ydirAdj": 206.58899 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.41632,585.411]", + "rotation": 90, + "y": 323.41632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 323.41632, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,330.719,585.411]", + "rotation": 90, + "y": 330.719, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 330.719, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.80945,585.411]", + "rotation": 90, + "y": 333.80945, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 333.80945, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,339.39642,585.411]", + "rotation": 90, + "y": 339.39642, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 339.39642, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,344.2795,585.411]", + "rotation": 90, + "y": 344.2795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 344.2795, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,352.17606,585.411]", + "rotation": 90, + "y": 352.17606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 352.17606, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.2665,585.411]", + "rotation": 90, + "y": 355.2665, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 355.2665, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.7655,585.411]", + "rotation": 90, + "y": 360.7655, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 360.7655, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.35248,585.411]", + "rotation": 90, + "y": 366.35248, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 366.35248, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.44293,585.411]", + "rotation": 90, + "y": 369.44293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 369.44293, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.5334,585.411]", + "rotation": 90, + "y": 372.5334, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 372.5334, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.03238,585.411]", + "rotation": 90, + "y": 378.03238, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 378.03238, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,383.61935,585.411]", + "rotation": 90, + "y": 383.61935, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 383.61935, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.7098,585.411]", + "rotation": 90, + "y": 386.7098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 386.7098, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.2088,585.411]", + "rotation": 90, + "y": 392.2088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 392.2088, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.10535,585.411]", + "rotation": 90, + "y": 400.10535, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 400.10535, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.78967,585.411]", + "rotation": 90, + "y": 403.78967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 403.78967, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,408.78275,585.411]", + "rotation": 90, + "y": 408.78275, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 408.78275, + "ydirAdj": 206.58899 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,414.28174,585.411]", + "rotation": 90, + "y": 414.28174, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 414.28174, + "ydirAdj": 206.58899 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.104,572.712]", + "rotation": 90, + "y": 264.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 264.104, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,269.603,572.712]", + "rotation": 90, + "y": 269.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 269.603, + "ydirAdj": 219.28802 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,275.09103,572.712]", + "rotation": 90, + "y": 275.09103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 275.09103, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.0756,572.712]", + "rotation": 90, + "y": 283.0756, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 283.0756, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,286.16605,572.712]", + "rotation": 90, + "y": 286.16605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 286.16605, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,291.66504,572.712]", + "rotation": 90, + "y": 291.66504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 291.66504, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,297.16403,572.712]", + "rotation": 90, + "y": 297.16403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 297.16403, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.2545,572.712]", + "rotation": 90, + "y": 300.2545, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.2545, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,303.4439,572.712]", + "rotation": 90, + "y": 303.4439, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 303.4439, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,308.9429,572.712]", + "rotation": 90, + "y": 308.9429, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 308.9429, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.4419,572.712]", + "rotation": 90, + "y": 314.4419, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 314.4419, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.53235,572.712]", + "rotation": 90, + "y": 317.53235, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.53235, + "ydirAdj": 219.28802 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,323.41632,572.712]", + "rotation": 90, + "y": 323.41632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 323.41632, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,330.719,572.712]", + "rotation": 90, + "y": 330.719, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 330.719, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,335.60208,572.712]", + "rotation": 90, + "y": 335.60208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 335.60208, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.18906,572.712]", + "rotation": 90, + "y": 341.18906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 341.18906, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,349.0856,572.712]", + "rotation": 90, + "y": 349.0856, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 349.0856, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,352.17606,572.712]", + "rotation": 90, + "y": 352.17606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 352.17606, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,357.67505,572.712]", + "rotation": 90, + "y": 357.67505, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 357.67505, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.17404,572.712]", + "rotation": 90, + "y": 363.17404, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 363.17404, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.36346,572.712]", + "rotation": 90, + "y": 366.36346, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 366.36346, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.45392,572.712]", + "rotation": 90, + "y": 369.45392, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 369.45392, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,374.9529,572.712]", + "rotation": 90, + "y": 374.9529, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 374.9529, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.4519,572.712]", + "rotation": 90, + "y": 380.4519, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 380.4519, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,383.64133,572.712]", + "rotation": 90, + "y": 383.64133, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 383.64133, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,389.14032,572.712]", + "rotation": 90, + "y": 389.14032, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 389.14032, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,397.03687,572.712]", + "rotation": 90, + "y": 397.03687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 397.03687, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.7212,572.712]", + "rotation": 90, + "y": 400.7212, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 400.7212, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,405.60428,572.712]", + "rotation": 90, + "y": 405.60428, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 405.60428, + "ydirAdj": 219.28802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.10327,572.712]", + "rotation": 90, + "y": 411.10327, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 411.10327, + "ydirAdj": 219.28802 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 38, + "text": "Text with 0° Text with Highlights 1. Highlight: YellowHighlight90GradP 2. Highlight: GreenHighlight90GradP 3. Highlight: BlueHighlight90GradP 4. Highlight: RedHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 21.024607, + "y": 558.51 + }, + "width": 71.271416, + "height": 173.67139, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 21.024607, + "maxX": 92.29602, + "minY": 558.51, + "maxY": 732.1814, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,558.51]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 90.0, + "xdirAdj": 558.51, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,565.313]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 565.313, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,570.189]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 570.189, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,575.688]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 575.688, + "ydirAdj": 29.112 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,581.613]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 581.613, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,589.493]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 589.493, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,592.611]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 592.611, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,595.701]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 595.701, + "ydirAdj": 29.112 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,604.006]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 604.006, + "ydirAdj": 29.112 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.112,609.506]", + "rotation": 90, + "y": 29.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 609.506, + "ydirAdj": 29.112 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,558.51]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 90.0, + "xdirAdj": 558.51, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,565.2]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 565.2, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,570.189]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 570.189, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,575.688]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 575.688, + "ydirAdj": 41.697998 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,581.613]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 581.613, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,589.493]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 589.493, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,592.611]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 592.611, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,595.701]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 595.701, + "ydirAdj": 41.697998 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,604.006]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 604.006, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,611.887]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 611.887, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,615.005]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 615.005, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,620.589]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 620.589, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,626.088]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 626.088, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,629.206]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 629.206, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,632.296]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 632.296, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,637.795]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 637.795, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,643.408]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 643.408, + "ydirAdj": 41.697998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.698,646.498]", + "rotation": 90, + "y": 41.697998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 646.498, + "ydirAdj": 41.697998 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,558.51]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.51, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,564.094]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 564.094, + "ydirAdj": 54.396973 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,569.594]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 569.594, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,577.502]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 577.502, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,580.592]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 580.592, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,586.091]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.091, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,591.591]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 591.591, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,594.794]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 594.794, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,597.912]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 597.912, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,603.411]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 603.411, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,608.91]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 608.91, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,612.0]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 612.0, + "ydirAdj": 54.396973 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,617.896]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 617.896, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,625.805]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 625.805, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,630.794]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 630.794, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,633.912]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 633.912, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,637.002]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 637.002, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,642.501]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 642.501, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,650.494]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 650.494, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,658.403]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 658.403, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,661.493]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 661.493, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,666.992]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 666.992, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,672.491]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 672.491, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,675.694]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 675.694, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,678.813]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 678.813, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,684.312]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 684.312, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,689.811]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 689.811, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,692.901]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 692.901, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,698.4]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 698.4, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,704.013]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 704.013, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,711.893]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 711.893, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,715.606]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 715.606, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,720.51]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 720.51, + "ydirAdj": 54.396973 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.397,726.094]", + "rotation": 90, + "y": 54.396973, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 726.094, + "ydirAdj": 54.396973 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,558.51]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.51, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,564.094]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 564.094, + "ydirAdj": 67.01099 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,569.594]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 569.594, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,577.502]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 577.502, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,580.592]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 580.592, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,586.091]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.091, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,591.591]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 591.591, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,594.794]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 594.794, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,597.912]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 597.912, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,603.411]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 603.411, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,608.91]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 608.91, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,612.113]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 612.113, + "ydirAdj": 67.01099 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,618.009]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 618.009, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,625.89]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 625.89, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,629.603]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 629.603, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,634.507]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 634.507, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,639.411]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 639.411, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,644.91]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 644.91, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,652.791]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 652.791, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,655.994]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 655.994, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,661.493]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 661.493, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,666.992]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 666.992, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,670.11]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 670.11, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,673.313]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 673.313, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,678.813]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 678.813, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,684.312]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 684.312, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,687.402]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 687.402, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,692.901]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 692.901, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,698.513]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 698.513, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,706.394]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 706.394, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,710.107]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 710.107, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,715.011]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 715.011, + "ydirAdj": 67.01099 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.011,720.51]", + "rotation": 90, + "y": 67.01099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 720.51, + "ydirAdj": 67.01099 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,558.51]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.51, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,564.094]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 564.094, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,569.594]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 569.594, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,577.502]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 577.502, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,580.592]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 580.592, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,586.091]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.091, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,591.591]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 591.591, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,594.794]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 594.794, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,597.912]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 597.912, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,603.411]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 603.411, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,608.91]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 608.91, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,612.113]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 612.113, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,618.009]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.324646, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 618.009, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,625.294]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 625.294, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,628.413]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 628.413, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,633.912]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 633.912, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,638.787]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 638.787, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,646.809]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 646.809, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,649.899]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 649.899, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,655.398]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 655.398, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,660.898]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 660.898, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,663.987]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 663.987, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,667.106]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 667.106, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,672.69]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 672.69, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,678.189]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 678.189, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,681.307]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 681.307, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,686.806]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 686.806, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,692.306]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 692.306, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,700.299]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 700.299, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,704.013]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 704.013, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,708.888]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 708.888, + "ydirAdj": 79.71002 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.71,714.387]", + "rotation": 90, + "y": 79.71002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 714.387, + "ydirAdj": 79.71002 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,558.51]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.51, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,564.094]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 564.094, + "ydirAdj": 92.29602 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,569.594]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 569.594, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,577.502]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 577.502, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,580.592]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 580.592, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,586.091]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.091, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,591.591]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 591.591, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,594.794]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 594.794, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,597.912]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 597.912, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,603.411]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 603.411, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,608.91]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 608.91, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,612.0]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 612.0, + "ydirAdj": 92.29602 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,617.896]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 617.896, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,625.294]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 625.294, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,630.198]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 630.198, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,635.698]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 635.698, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,643.606]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 643.606, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,646.696]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 646.696, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,652.195]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 652.195, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,657.808]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 657.808, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,660.898]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 660.898, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,663.987]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 663.987, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,669.487]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 669.487, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,675.099]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 675.099, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,678.189]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 678.189, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,683.688]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 683.688, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,689.187]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 689.187, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,697.096]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 697.096, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,700.894]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 700.894, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,705.798]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 705.798, + "ydirAdj": 92.29602 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.296,711.298]", + "rotation": 90, + "y": 92.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 711.298, + "ydirAdj": 92.29602 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 39, + "text": "Text with 90° Text with Highlights 1. Highlight: YellowHighlight180GradP 2. Highlight: GreenHighlight180GradP 3. Highlight: BlueHighlight180GradP 4. Highlight: RedHighlight180GradP Text with 270° For imported redaction Here: annotation Text with 0° For imported redaction Here: annotation Text with 90° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 24.624582, + "y": 312.69 + }, + "width": 708.78345, + "height": 191.18939, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 24.624582, + "maxX": 733.408, + "minY": 312.69, + "maxY": 503.8794, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.31,670.195]", + "rotation": 90, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 312.69, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,292.6122,670.195]", + "rotation": 90, + "y": 292.6122, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 319.3878, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,287.61914,670.195]", + "rotation": 90, + "y": 287.61914, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 324.38086, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.12015,670.195]", + "rotation": 90, + "y": 282.12015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.87985, + "ydirAdj": 670.195 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,276.23618,670.195]", + "rotation": 90, + "y": 276.23618, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 335.76382, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,268.33963,670.195]", + "rotation": 90, + "y": 268.33963, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 343.66037, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.24918,670.195]", + "rotation": 90, + "y": 265.24918, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.75082, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,262.15872,670.195]", + "rotation": 90, + "y": 262.15872, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 349.84128, + "ydirAdj": 670.195 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,253.86624,670.195]", + "rotation": 90, + "y": 253.86624, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 358.13376, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.36725,670.195]", + "rotation": 90, + "y": 248.36725, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 363.63275, + "ydirAdj": 670.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.86826,670.195]", + "rotation": 90, + "y": 242.86826, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 369.13174, + "ydirAdj": 670.195 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.31,682.809]", + "rotation": 90, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 312.69, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,292.6122,682.809]", + "rotation": 90, + "y": 292.6122, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 319.3878, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,287.61914,682.809]", + "rotation": 90, + "y": 287.61914, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 324.38086, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.12015,682.809]", + "rotation": 90, + "y": 282.12015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.87985, + "ydirAdj": 682.809 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,276.23618,682.809]", + "rotation": 90, + "y": 276.23618, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 335.76382, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,268.33963,682.809]", + "rotation": 90, + "y": 268.33963, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 343.66037, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.24918,682.809]", + "rotation": 90, + "y": 265.24918, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.75082, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,262.15872,682.809]", + "rotation": 90, + "y": 262.15872, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 349.84128, + "ydirAdj": 682.809 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,253.86624,682.809]", + "rotation": 90, + "y": 253.86624, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 358.13376, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.96968,682.809]", + "rotation": 90, + "y": 245.96967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 366.03033, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.87924,682.809]", + "rotation": 90, + "y": 242.87924, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 369.12076, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.29227,682.809]", + "rotation": 90, + "y": 237.29227, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 374.70773, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,231.79327,682.809]", + "rotation": 90, + "y": 231.79327, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 380.20673, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,228.70284,682.809]", + "rotation": 90, + "y": 228.70282, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 383.29718, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,225.6124,682.809]", + "rotation": 90, + "y": 225.6124, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 386.3876, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,220.1134,682.809]", + "rotation": 90, + "y": 220.1134, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 391.8866, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,214.52643,682.809]", + "rotation": 90, + "y": 214.52643, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 397.47357, + "ydirAdj": 682.809 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.43599,682.809]", + "rotation": 90, + "y": 211.43597, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 400.56403, + "ydirAdj": 682.809 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.31,695.509]", + "rotation": 90, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 312.69, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,293.811,695.509]", + "rotation": 90, + "y": 293.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 318.189, + "ydirAdj": 695.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,288.32297,695.509]", + "rotation": 90, + "y": 288.32297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 323.67703, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,280.3384,695.509]", + "rotation": 90, + "y": 280.3384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 331.6616, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,277.24796,695.509]", + "rotation": 90, + "y": 277.24796, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 334.75204, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,271.74896,695.509]", + "rotation": 90, + "y": 271.74896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 340.25104, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,266.24997,695.509]", + "rotation": 90, + "y": 266.24997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 345.75003, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.15952,695.509]", + "rotation": 90, + "y": 263.15952, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 348.84048, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.9701,695.509]", + "rotation": 90, + "y": 259.9701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 352.0299, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.4711,695.509]", + "rotation": 90, + "y": 254.4711, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 357.5289, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.9721,695.509]", + "rotation": 90, + "y": 248.9721, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 363.0279, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.88167,695.509]", + "rotation": 90, + "y": 245.88165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 366.11835, + "ydirAdj": 695.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.99774,695.509]", + "rotation": 90, + "y": 239.99774, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 372.00226, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.10118,695.509]", + "rotation": 90, + "y": 232.1012, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 379.8988, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.21806,695.509]", + "rotation": 90, + "y": 227.21808, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 384.78192, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.02864,695.509]", + "rotation": 90, + "y": 224.02863, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 387.97137, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,220.9382,695.509]", + "rotation": 90, + "y": 220.9382, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 391.0618, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.43921,695.509]", + "rotation": 90, + "y": 215.43921, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 396.5608, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.54265,695.509]", + "rotation": 90, + "y": 207.54266, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 404.45734, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.64609,695.509]", + "rotation": 90, + "y": 199.64609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 412.3539, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,196.45667,695.509]", + "rotation": 90, + "y": 196.45667, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 415.54333, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.95767,695.509]", + "rotation": 90, + "y": 190.95767, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 421.04233, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,185.45868,695.509]", + "rotation": 90, + "y": 185.45868, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 426.54132, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.36824,695.509]", + "rotation": 90, + "y": 182.36823, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 429.63177, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.17882,695.509]", + "rotation": 90, + "y": 179.17883, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 432.82117, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,173.67982,695.509]", + "rotation": 90, + "y": 173.67981, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 438.3202, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,168.18083,695.509]", + "rotation": 90, + "y": 168.18085, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 443.81915, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,165.0904,695.509]", + "rotation": 90, + "y": 165.0904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 446.9096, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,159.5914,695.509]", + "rotation": 90, + "y": 159.5914, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 452.4086, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,154.00443,695.509]", + "rotation": 90, + "y": 154.00443, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 457.99557, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,148.50543,695.509]", + "rotation": 90, + "y": 148.50543, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 463.49457, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,140.60887,695.509]", + "rotation": 90, + "y": 140.60889, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 471.3911, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,136.92453,695.509]", + "rotation": 90, + "y": 136.92453, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 475.07547, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,132.04141,695.509]", + "rotation": 90, + "y": 132.04141, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 479.9586, + "ydirAdj": 695.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,126.54241,695.509]", + "rotation": 90, + "y": 126.54242, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114891, + "dir": 180.0, + "xdirAdj": 485.45758, + "ydirAdj": 695.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.31,708.094]", + "rotation": 90, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 312.69, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,293.811,708.094]", + "rotation": 90, + "y": 293.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 318.189, + "ydirAdj": 708.094 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,288.32297,708.094]", + "rotation": 90, + "y": 288.32297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 323.67703, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,280.3384,708.094]", + "rotation": 90, + "y": 280.3384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 331.6616, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,277.24796,708.094]", + "rotation": 90, + "y": 277.24796, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 334.75204, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,271.74896,708.094]", + "rotation": 90, + "y": 271.74896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 340.25104, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,266.24997,708.094]", + "rotation": 90, + "y": 266.24997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 345.75003, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.15952,708.094]", + "rotation": 90, + "y": 263.15952, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 348.84048, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.9701,708.094]", + "rotation": 90, + "y": 259.9701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 352.0299, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.4711,708.094]", + "rotation": 90, + "y": 254.4711, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 357.5289, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.9721,708.094]", + "rotation": 90, + "y": 248.9721, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 363.0279, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.88167,708.094]", + "rotation": 90, + "y": 245.88165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 366.11835, + "ydirAdj": 708.094 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.99774,708.094]", + "rotation": 90, + "y": 239.99774, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 372.00226, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.10118,708.094]", + "rotation": 90, + "y": 232.1012, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 379.8988, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,228.41684,708.094]", + "rotation": 90, + "y": 228.41684, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 383.58316, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,223.42375,708.094]", + "rotation": 90, + "y": 223.42377, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 388.57623, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,218.54063,708.094]", + "rotation": 90, + "y": 218.54065, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 393.45935, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.04164,708.094]", + "rotation": 90, + "y": 213.04163, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 398.95837, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.14508,708.094]", + "rotation": 90, + "y": 205.14508, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 406.85492, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.05464,708.094]", + "rotation": 90, + "y": 202.05463, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 409.94537, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,196.46767,708.094]", + "rotation": 90, + "y": 196.46765, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 415.53235, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.96867,708.094]", + "rotation": 90, + "y": 190.96869, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 421.0313, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,187.87823,708.094]", + "rotation": 90, + "y": 187.87823, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 424.12177, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.7878,708.094]", + "rotation": 90, + "y": 184.78778, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 427.21222, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.20082,708.094]", + "rotation": 90, + "y": 179.2008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 432.7992, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,173.70183,708.094]", + "rotation": 90, + "y": 173.70184, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 438.29816, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.61139,708.094]", + "rotation": 90, + "y": 170.61139, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 441.3886, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,165.1124,708.094]", + "rotation": 90, + "y": 165.1124, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 446.8876, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,159.6134,708.094]", + "rotation": 90, + "y": 159.6134, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 452.3866, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,154.02643,708.094]", + "rotation": 90, + "y": 154.02643, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 457.97357, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,146.12987,708.094]", + "rotation": 90, + "y": 146.12988, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 465.87012, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,142.44553,708.094]", + "rotation": 90, + "y": 142.44553, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 469.55447, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,137.56241,708.094]", + "rotation": 90, + "y": 137.56241, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 474.4376, + "ydirAdj": 708.094 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,132.06342,708.094]", + "rotation": 90, + "y": 132.06342, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.114891, + "dir": 180.0, + "xdirAdj": 479.93658, + "ydirAdj": 708.094 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.31,720.794]", + "rotation": 90, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 312.69, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,293.811,720.794]", + "rotation": 90, + "y": 293.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 318.189, + "ydirAdj": 720.794 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,288.32297,720.794]", + "rotation": 90, + "y": 288.32297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 323.67703, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,280.3384,720.794]", + "rotation": 90, + "y": 280.3384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 331.6616, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,277.24796,720.794]", + "rotation": 90, + "y": 277.24796, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 334.75204, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,271.74896,720.794]", + "rotation": 90, + "y": 271.74896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 340.25104, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,266.24997,720.794]", + "rotation": 90, + "y": 266.24997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 345.75003, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.15952,720.794]", + "rotation": 90, + "y": 263.15952, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 348.84048, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.9701,720.794]", + "rotation": 90, + "y": 259.9701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 352.0299, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.4711,720.794]", + "rotation": 90, + "y": 254.4711, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 357.5289, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.9721,720.794]", + "rotation": 90, + "y": 248.9721, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 363.0279, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.88167,720.794]", + "rotation": 90, + "y": 245.88165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 366.11835, + "ydirAdj": 720.794 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.99774,720.794]", + "rotation": 90, + "y": 239.99774, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 372.00226, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.69508,720.794]", + "rotation": 90, + "y": 232.69507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 379.30493, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,229.50566,720.794]", + "rotation": 90, + "y": 229.50568, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 382.49432, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.00667,720.794]", + "rotation": 90, + "y": 224.00665, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 387.99335, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.12355,720.794]", + "rotation": 90, + "y": 219.12354, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 392.87646, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.22699,720.794]", + "rotation": 90, + "y": 211.22699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 400.773, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,208.13655,720.794]", + "rotation": 90, + "y": 208.13654, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 403.86346, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.63756,720.794]", + "rotation": 90, + "y": 202.63757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 409.36243, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.05058,720.794]", + "rotation": 90, + "y": 197.0506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 414.9494, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.96014,720.794]", + "rotation": 90, + "y": 193.96014, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 418.03986, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.8697,720.794]", + "rotation": 90, + "y": 190.86969, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 421.1303, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,185.37071,720.794]", + "rotation": 90, + "y": 185.37073, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 426.62927, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.78374,720.794]", + "rotation": 90, + "y": 179.78375, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 432.21625, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.6933,720.794]", + "rotation": 90, + "y": 176.6933, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 435.3067, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,171.1943,720.794]", + "rotation": 90, + "y": 171.1943, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 440.8057, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,165.69531,720.794]", + "rotation": 90, + "y": 165.69531, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 446.3047, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,160.19632,720.794]", + "rotation": 90, + "y": 160.19632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 451.80368, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,152.29976,720.794]", + "rotation": 90, + "y": 152.29974, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 459.70026, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,148.51645,720.794]", + "rotation": 90, + "y": 148.51645, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 463.48355, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,143.63333,720.794]", + "rotation": 90, + "y": 143.63333, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 468.36667, + "ydirAdj": 720.794 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,138.13434,720.794]", + "rotation": 90, + "y": 138.13434, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 473.86566, + "ydirAdj": 720.794 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.31,733.408]", + "rotation": 90, + "y": 299.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 312.69, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,293.811,733.408]", + "rotation": 90, + "y": 293.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 318.189, + "ydirAdj": 733.408 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,288.32297,733.408]", + "rotation": 90, + "y": 288.32297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 323.67703, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,280.3384,733.408]", + "rotation": 90, + "y": 280.3384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 331.6616, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,277.24796,733.408]", + "rotation": 90, + "y": 277.24796, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 334.75204, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,271.74896,733.408]", + "rotation": 90, + "y": 271.74896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 340.25104, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,266.24997,733.408]", + "rotation": 90, + "y": 266.24997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 345.75003, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.15952,733.408]", + "rotation": 90, + "y": 263.15952, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 348.84048, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.9701,733.408]", + "rotation": 90, + "y": 259.9701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 352.0299, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.4711,733.408]", + "rotation": 90, + "y": 254.4711, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 357.5289, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.9721,733.408]", + "rotation": 90, + "y": 248.9721, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 363.0279, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.88167,733.408]", + "rotation": 90, + "y": 245.88165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 366.11835, + "ydirAdj": 733.408 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.99774,733.408]", + "rotation": 90, + "y": 239.99774, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 372.00226, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.69508,733.408]", + "rotation": 90, + "y": 232.69507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 379.30493, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.81197,733.408]", + "rotation": 90, + "y": 227.81195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 384.18805, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.22499,733.408]", + "rotation": 90, + "y": 222.22498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 389.77502, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,214.32843,733.408]", + "rotation": 90, + "y": 214.32843, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 397.67157, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.23799,733.408]", + "rotation": 90, + "y": 211.23798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 400.76202, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.739,733.408]", + "rotation": 90, + "y": 205.73901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 406.261, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,200.15202,733.408]", + "rotation": 90, + "y": 200.15204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 411.84796, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.06158,733.408]", + "rotation": 90, + "y": 197.06158, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 414.93842, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.97115,733.408]", + "rotation": 90, + "y": 193.97113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 418.02887, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,188.47215,733.408]", + "rotation": 90, + "y": 188.47217, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 423.52783, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.97316,733.408]", + "rotation": 90, + "y": 182.97314, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 429.02686, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.78374,733.408]", + "rotation": 90, + "y": 179.78375, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 432.21625, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,174.28474,733.408]", + "rotation": 90, + "y": 174.28473, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 437.71527, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,168.78575,733.408]", + "rotation": 90, + "y": 168.78577, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 443.21423, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,163.28676,733.408]", + "rotation": 90, + "y": 163.28674, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 448.71326, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,155.3902,733.408]", + "rotation": 90, + "y": 155.3902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 456.6098, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,151.70586,733.408]", + "rotation": 90, + "y": 151.70587, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 460.29413, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,146.71277,733.408]", + "rotation": 90, + "y": 146.71277, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 465.28723, + "ydirAdj": 733.408 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,141.21378,733.408]", + "rotation": 90, + "y": 141.21378, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 470.78622, + "ydirAdj": 733.408 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,313.002,456.009]", + "rotation": 90, + "y": 313.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 313.002, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.6998,456.009]", + "rotation": 90, + "y": 319.6998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 319.6998, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,324.69287,456.009]", + "rotation": 90, + "y": 324.69287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 324.69287, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,330.19186,456.009]", + "rotation": 90, + "y": 330.19186, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 330.19186, + "ydirAdj": 335.991 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,335.97684,456.009]", + "rotation": 90, + "y": 335.97684, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 335.97684, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,343.9614,456.009]", + "rotation": 90, + "y": 343.9614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 343.9614, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,347.05185,456.009]", + "rotation": 90, + "y": 347.05185, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 347.05185, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.1423,456.009]", + "rotation": 90, + "y": 350.1423, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 350.1423, + "ydirAdj": 335.991 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.4348,456.009]", + "rotation": 90, + "y": 358.4348, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 358.4348, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.9338,456.009]", + "rotation": 90, + "y": 363.9338, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 363.9338, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.4328,456.009]", + "rotation": 90, + "y": 369.4328, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 369.4328, + "ydirAdj": 335.991 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.01978,456.009]", + "rotation": 90, + "y": 375.01978, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 375.01978, + "ydirAdj": 335.991 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,313.002,443.31]", + "rotation": 90, + "y": 313.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 313.002, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.10593,443.31]", + "rotation": 90, + "y": 319.10593, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 319.10593, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,324.6929,443.31]", + "rotation": 90, + "y": 324.6929, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 324.6929, + "ydirAdj": 348.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,331.07175,443.31]", + "rotation": 90, + "y": 331.07175, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 331.07175, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.1622,443.31]", + "rotation": 90, + "y": 334.1622, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 0.0, + "xdirAdj": 334.1622, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,342.85062,443.31]", + "rotation": 90, + "y": 342.85062, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 342.85062, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,348.3496,443.31]", + "rotation": 90, + "y": 348.3496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 348.3496, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,353.8486,443.31]", + "rotation": 90, + "y": 353.8486, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 353.8486, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,357.53293,443.31]", + "rotation": 90, + "y": 357.53293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 357.53293, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.72235,443.31]", + "rotation": 90, + "y": 360.72235, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 360.72235, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.60544,443.31]", + "rotation": 90, + "y": 365.60544, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 365.60544, + "ydirAdj": 348.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.89795,443.31]", + "rotation": 90, + "y": 373.89795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 373.89795, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,377.58228,443.31]", + "rotation": 90, + "y": 377.58228, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 377.58228, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.46536,443.31]", + "rotation": 90, + "y": 382.46536, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 382.46536, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,387.96436,443.31]", + "rotation": 90, + "y": 387.96436, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 387.96436, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.95743,443.31]", + "rotation": 90, + "y": 392.95743, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 392.95743, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,397.8405,443.31]", + "rotation": 90, + "y": 397.8405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 397.8405, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.93097,443.31]", + "rotation": 90, + "y": 400.93097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 400.93097, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.02142,443.31]", + "rotation": 90, + "y": 404.02142, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 404.02142, + "ydirAdj": 348.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,409.52042,443.31]", + "rotation": 90, + "y": 409.52042, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 409.52042, + "ydirAdj": 348.69 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,313.002,430.696]", + "rotation": 90, + "y": 313.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 313.002, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,320.89856,430.696]", + "rotation": 90, + "y": 320.89856, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 320.89856, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,325.78165,430.696]", + "rotation": 90, + "y": 325.78165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 325.78165, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,329.56494,430.696]", + "rotation": 90, + "y": 329.56494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 329.56494, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.44803,430.696]", + "rotation": 90, + "y": 334.44803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 334.44803, + "ydirAdj": 361.304 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,340.332,430.696]", + "rotation": 90, + "y": 340.332, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 340.332, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,345.2151,430.696]", + "rotation": 90, + "y": 345.2151, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 345.2151, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.71408,430.696]", + "rotation": 90, + "y": 350.71408, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 350.71408, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.21307,430.696]", + "rotation": 90, + "y": 356.21307, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 356.21307, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.71207,430.696]", + "rotation": 90, + "y": 361.71207, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 361.71207, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,364.9015,430.696]", + "rotation": 90, + "y": 364.9015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 364.9015, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.78458,430.696]", + "rotation": 90, + "y": 369.78458, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 369.78458, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.87503,430.696]", + "rotation": 90, + "y": 372.87503, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 372.87503, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.96548,430.696]", + "rotation": 90, + "y": 375.96548, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 375.96548, + "ydirAdj": 361.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.46448,430.696]", + "rotation": 90, + "y": 381.46448, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 381.46448, + "ydirAdj": 361.304 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,400.989]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 400.989, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,407.792]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 407.792, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,412.696]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 412.696, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,418.195]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 418.195, + "ydirAdj": 32.711975 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,424.091]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 424.091, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,432.0]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 432.0, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,435.09]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 435.09, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,438.208]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 438.208, + "ydirAdj": 32.711975 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,446.513]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 446.513, + "ydirAdj": 32.711975 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,32.712,452.013]", + "rotation": 90, + "y": 32.711975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 90.0, + "xdirAdj": 452.013, + "ydirAdj": 32.711975 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,400.989]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 90.0, + "xdirAdj": 400.989, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,407.197]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 407.197, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,412.696]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 412.696, + "ydirAdj": 45.41101 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,419.187]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 419.187, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,422.306]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.545441, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 90.0, + "xdirAdj": 422.306, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,430.894]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 430.894, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,436.394]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 436.394, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,442.006]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 442.006, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,445.691]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 445.691, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,448.809]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 448.809, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,453.713]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 453.713, + "ydirAdj": 45.41101 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,461.991]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 461.991, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,465.704]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 465.704, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,470.608]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 470.608, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,476.192]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 476.192, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,481.096]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 481.096, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,486.0]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.0, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,489.09]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 489.09, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,492.208]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 492.208, + "ydirAdj": 45.41101 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,45.411,497.792]", + "rotation": 90, + "y": 45.41101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 497.792, + "ydirAdj": 45.41101 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,400.989]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 400.989, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,408.898]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 408.898, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,413.802]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 413.802, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,417.487]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 417.487, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,422.391]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 422.391, + "ydirAdj": 58.109985 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,428.287]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 428.287, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,433.191]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 433.191, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,438.803]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 438.803, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,444.302]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 444.302, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,449.802]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 449.802, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,452.891]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 452.891, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,457.795]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 457.795, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,460.998]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 460.998, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,464.088]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 464.088, + "ydirAdj": 58.109985 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,58.11,469.587]", + "rotation": 90, + "y": 58.109985, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 469.587, + "ydirAdj": 58.109985 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,238.904,434.494]", + "rotation": 90, + "y": 238.90399, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 373.096, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.20622,434.494]", + "rotation": 90, + "y": 232.20624, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 379.79376, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.21313,434.494]", + "rotation": 90, + "y": 227.21313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 384.78687, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.71414,434.494]", + "rotation": 90, + "y": 221.71414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 390.28586, + "ydirAdj": 434.494 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.9292,434.494]", + "rotation": 90, + "y": 215.9292, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 396.0708, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.94466,434.494]", + "rotation": 90, + "y": 207.94464, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 404.05536, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.85422,434.494]", + "rotation": 90, + "y": 204.85422, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 407.14578, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.76378,434.494]", + "rotation": 90, + "y": 201.7638, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 410.2362, + "ydirAdj": 434.494 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.4713,434.494]", + "rotation": 90, + "y": 193.47131, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 418.5287, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,187.9723,434.494]", + "rotation": 90, + "y": 187.97229, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 424.0277, + "ydirAdj": 434.494 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.47331,434.494]", + "rotation": 90, + "y": 182.47333, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 429.52667, + "ydirAdj": 434.494 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,238.904,447.194]", + "rotation": 90, + "y": 238.90399, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 373.096, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.80013,447.194]", + "rotation": 90, + "y": 232.80011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 379.1999, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.21315,447.194]", + "rotation": 90, + "y": 227.21313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 384.78687, + "ydirAdj": 447.194 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,220.8343,447.194]", + "rotation": 90, + "y": 220.83429, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 391.1657, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,217.74387,447.194]", + "rotation": 90, + "y": 217.74387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 180.0, + "xdirAdj": 394.25613, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,209.05545,447.194]", + "rotation": 90, + "y": 209.05545, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 402.94455, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.55646,447.194]", + "rotation": 90, + "y": 203.55646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.44354, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.05746,447.194]", + "rotation": 90, + "y": 198.05746, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 413.94254, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,194.37312,447.194]", + "rotation": 90, + "y": 194.37311, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 417.6269, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.1837,447.194]", + "rotation": 90, + "y": 191.18372, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 420.81628, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.30058,447.194]", + "rotation": 90, + "y": 186.3006, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 425.6994, + "ydirAdj": 447.194 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,178.0081,447.194]", + "rotation": 90, + "y": 178.00812, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 433.99188, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,174.32376,447.194]", + "rotation": 90, + "y": 174.32376, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 437.67624, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.44064,447.194]", + "rotation": 90, + "y": 169.44064, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 442.55936, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,163.94165,447.194]", + "rotation": 90, + "y": 163.94165, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 448.05835, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.94856,447.194]", + "rotation": 90, + "y": 158.94855, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 453.05145, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,154.06544,447.194]", + "rotation": 90, + "y": 154.06543, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 457.93457, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.975,447.194]", + "rotation": 90, + "y": 150.975, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 461.025, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,147.88457,447.194]", + "rotation": 90, + "y": 147.88458, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 464.11542, + "ydirAdj": 447.194 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,142.38557,447.194]", + "rotation": 90, + "y": 142.38556, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 469.61444, + "ydirAdj": 447.194 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,238.904,459.808]", + "rotation": 90, + "y": 238.90399, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 373.096, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,231.00745,459.808]", + "rotation": 90, + "y": 231.00745, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 380.99255, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.12433,459.808]", + "rotation": 90, + "y": 226.12433, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 385.87567, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.34102,459.808]", + "rotation": 90, + "y": 222.341, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 389.659, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,217.4579,459.808]", + "rotation": 90, + "y": 217.45789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 394.5421, + "ydirAdj": 459.808 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.57397,459.808]", + "rotation": 90, + "y": 211.57397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 400.42603, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,206.69086,459.808]", + "rotation": 90, + "y": 206.69086, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 405.30914, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.19186,459.808]", + "rotation": 90, + "y": 201.19186, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 410.80814, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,195.69287,459.808]", + "rotation": 90, + "y": 195.69287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 416.30713, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.19388,459.808]", + "rotation": 90, + "y": 190.19388, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 421.80612, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,187.00446,459.808]", + "rotation": 90, + "y": 187.00446, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 424.99554, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.12134,459.808]", + "rotation": 90, + "y": 182.12134, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 429.87866, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.0309,459.808]", + "rotation": 90, + "y": 179.03088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 432.96912, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,175.94046,459.808]", + "rotation": 90, + "y": 175.94046, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 436.05954, + "ydirAdj": 459.808 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.44147,459.808]", + "rotation": 90, + "y": 170.44147, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 441.55853, + "ydirAdj": 459.808 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 40, + "text": "Text with 180° Text with Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 50.30658, + "y": 56.692993 + }, + "width": 20.701416, + "height": 93.98938, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 50.30658, + "maxX": 71.007996, + "minY": 56.692993, + "maxY": 150.68237, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,735.307]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 270.0, + "xdirAdj": 56.692993, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,728.589]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 63.41101, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,723.713]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 68.28699, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,718.186]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 73.814026, + "ydirAdj": 58.393982 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,712.29]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 79.71002, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,704.409]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 87.591, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,701.291]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 90.708984, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,698.202]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 93.79797, + "ydirAdj": 58.393982 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,689.896]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 102.104004, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,684.397]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 107.60303, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.606,678.813]", + "rotation": 90, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 113.18701, + "ydirAdj": 58.393982 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.691,673.313]", + "rotation": 90, + "y": 553.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 270.0, + "xdirAdj": 118.68701, + "ydirAdj": 58.30902 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,735.307]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 270.0, + "xdirAdj": 56.692993, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,728.702]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 63.297974, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,723.713]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 68.28699, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,718.186]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 73.814026, + "ydirAdj": 71.007996 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,712.29]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 79.71002, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,704.409]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 87.591, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,701.291]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 90.708984, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,698.202]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 93.79797, + "ydirAdj": 71.007996 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,689.896]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 102.104004, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,681.987]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.013, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.992,678.898]", + "rotation": 90, + "y": 540.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 113.10199, + "ydirAdj": 71.007996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,673.313]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 118.68701, + "ydirAdj": 70.89398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,667.786]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 124.21399, + "ydirAdj": 70.89398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,664.696]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 127.304016, + "ydirAdj": 70.89398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,661.606]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 130.39398, + "ydirAdj": 70.89398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,656.107]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 135.893, + "ydirAdj": 70.89398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,650.494]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 141.50598, + "ydirAdj": 70.89398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.106,647.405]", + "rotation": 90, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 270.0, + "xdirAdj": 144.59497, + "ydirAdj": 70.89398 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 41, + "text": "Text with 180°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 63.203613, + "y": 449.206 + }, + "width": 8.087402, + "height": 68.08142, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 63.203613, + "maxX": 71.291016, + "minY": 449.206, + "maxY": 517.2874, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,342.794]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 449.206, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,336.189]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 455.811, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,331.2]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,325.701]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 466.299, + "ydirAdj": 71.291016 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,319.805]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 472.195, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,311.896]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 480.104, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,308.806]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 483.194, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,305.688]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 486.312, + "ydirAdj": 71.291016 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,297.411]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 494.589, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,291.912]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 500.088, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.709,286.413]", + "rotation": 90, + "y": 540.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.587, + "ydirAdj": 71.291016 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,540.794,280.8]", + "rotation": 90, + "y": 540.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087402, + "widthDirAdj": 4.388214, + "dir": 270.0, + "xdirAdj": 511.2, + "ydirAdj": 71.20599 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 42, + "text": "180° with Text", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 69.01464, + "y": 653.61304 + }, + "width": 8.796333, + "height": 68.08032, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 69.01464, + "maxX": 77.810974, + "minY": 653.61304, + "maxY": 721.69336, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.898,93.005]", + "rotation": 90, + "y": 534.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 698.995, + "ydirAdj": 77.10199 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,535.011,87.506]", + "rotation": 90, + "y": 535.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 704.494, + "ydirAdj": 76.98901 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,535.096,81.893]", + "rotation": 90, + "y": 535.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 710.107, + "ydirAdj": 76.90399 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,535.209,76.394]", + "rotation": 90, + "y": 535.209, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.387497, + "heightDir": 6.087346, + "widthDirAdj": 4.387497, + "dir": 270.0, + "xdirAdj": 715.606, + "ydirAdj": 76.791016 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.614,115.398]", + "rotation": 90, + "y": 534.614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9392853, + "heightDir": 6.087346, + "widthDirAdj": 7.9392853, + "dir": 270.0, + "xdirAdj": 676.602, + "ydirAdj": 77.38599 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.699,107.49]", + "rotation": 90, + "y": 534.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 684.51, + "ydirAdj": 77.301025 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.699,104.4]", + "rotation": 90, + "y": 534.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 687.6, + "ydirAdj": 77.301025 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.813,101.31]", + "rotation": 90, + "y": 534.813, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 690.69, + "ydirAdj": 77.18701 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.189,138.387]", + "rotation": 90, + "y": 534.189, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7077026, + "heightDir": 6.087346, + "widthDirAdj": 6.7077026, + "dir": 270.0, + "xdirAdj": 653.61304, + "ydirAdj": 77.810974 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.302,131.698]", + "rotation": 90, + "y": 534.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 660.302, + "ydirAdj": 77.698 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.387,126.794]", + "rotation": 90, + "y": 534.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 665.206, + "ydirAdj": 77.612976 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,534.501,121.294]", + "rotation": 90, + "y": 534.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 670.706, + "ydirAdj": 77.49902 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 43, + "text": "YellowHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 75.50659, + "y": 115.99402 + }, + "width": 8.087402, + "height": 114.20038, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 75.50659, + "maxX": 83.593994, + "minY": 115.99402, + "maxY": 230.1944, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,676.006]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 115.99402, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,668.098]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 123.90198, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,663.194]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 128.80603, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,659.991]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 132.00897, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,656.901]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 135.099, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,651.402]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 140.59802, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,643.493]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 148.50702, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,635.499]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 156.50098, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,632.409]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 159.591, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,626.91]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 165.09003, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.406,621.411]", + "rotation": 90, + "y": 528.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 170.58899, + "ydirAdj": 83.593994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,618.293]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 173.70697, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,615.09]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 176.90997, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,609.591]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 182.409, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,604.091]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 187.909, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,601.002]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 190.99799, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,595.502]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 196.49799, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,589.89]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 202.10999, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,582.009]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 209.99103, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,578.296]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 213.70398, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,573.392]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 218.60797, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,567.893]", + "rotation": 90, + "y": 528.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 270.0, + "xdirAdj": 224.107, + "ydirAdj": 83.50897 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 44, + "text": "1. Highlight:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 75.61957, + "y": 56.692993 + }, + "width": 8.087402, + "height": 59.49243, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 75.61957, + "maxX": 83.70697, + "minY": 56.692993, + "maxY": 116.185425, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,735.307]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 56.692993, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,729.893]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 62.106995, + "ydirAdj": 83.70697 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,724.394]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 67.60602, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,716.4]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 75.599976, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,713.31]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 78.69, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,707.811]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 84.189026, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,702.312]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 89.68799, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,699.194]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 92.80603, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,695.991]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 96.00897, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,690.491]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 101.50897, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,684.992]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 107.007996, + "ydirAdj": 83.70697 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.293,681.902]", + "rotation": 90, + "y": 528.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.09802, + "ydirAdj": 83.70697 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 45, + "text": "Text with Annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 75.8186, + "y": 449.206 + }, + "width": 8.087402, + "height": 95.77539, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 75.8186, + "maxX": 83.906006, + "minY": 449.206, + "maxY": 544.9814, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,342.794]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 449.206, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,336.189]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 455.811, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,331.2]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 460.8, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,325.701]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 466.299, + "ydirAdj": 83.906006 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,319.805]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 472.195, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,311.896]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 480.104, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,308.806]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 483.194, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,305.688]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 486.312, + "ydirAdj": 83.906006 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,297.411]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 494.589, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.094,289.502]", + "rotation": 90, + "y": 528.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 502.498, + "ydirAdj": 83.906006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,283.89]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 508.11, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,278.391]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 513.609, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,272.891]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 519.109, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,269.802]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 522.198, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,264.898]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 527.102, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,261.694]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 530.306, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,258.605]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 533.395, + "ydirAdj": 83.79199 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.208,253.106]", + "rotation": 90, + "y": 528.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 538.894, + "ydirAdj": 83.79199 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 46, + "text": "Text Regular", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 81.60064, + "y": 653.81104 + }, + "width": 8.711372, + "height": 60.881287, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 81.60064, + "maxX": 90.31201, + "minY": 653.81104, + "maxY": 714.6923, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.312,100.488]", + "rotation": 90, + "y": 522.312, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7077103, + "heightDir": 6.087346, + "widthDirAdj": 6.7077103, + "dir": 270.0, + "xdirAdj": 691.512, + "ydirAdj": 89.68799 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.397,93.798]", + "rotation": 90, + "y": 522.397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8713303, + "heightDir": 6.087346, + "widthDirAdj": 4.8713303, + "dir": 270.0, + "xdirAdj": 698.202, + "ydirAdj": 89.60303 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.51,88.894]", + "rotation": 90, + "y": 522.51, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 703.106, + "ydirAdj": 89.48999 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.595,83.395]", + "rotation": 90, + "y": 522.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 708.605, + "ydirAdj": 89.40503 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,521.688,138.189]", + "rotation": 90, + "y": 521.688, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3235016, + "heightDir": 6.087346, + "widthDirAdj": 7.3235016, + "dir": 270.0, + "xdirAdj": 653.81104, + "ydirAdj": 90.31201 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,521.802,130.989]", + "rotation": 90, + "y": 521.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 661.011, + "ydirAdj": 90.198 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,521.887,126.113]", + "rotation": 90, + "y": 521.887, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 665.887, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.0,120.586]", + "rotation": 90, + "y": 522.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 671.414, + "ydirAdj": 90.0 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.113,115.087]", + "rotation": 90, + "y": 522.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 676.913, + "ydirAdj": 89.887024 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.113,111.912]", + "rotation": 90, + "y": 522.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 680.088, + "ydirAdj": 89.887024 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,522.198,107.008]", + "rotation": 90, + "y": 522.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617508, + "heightDir": 6.087346, + "widthDirAdj": 3.6617508, + "dir": 270.0, + "xdirAdj": 684.992, + "ydirAdj": 89.802 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 47, + "text": "180° with Text GreenHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 85.82464, + "y": 115.99402 + }, + "width": 10.383369, + "height": 237.08234, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 85.82464, + "maxX": 96.20801, + "minY": 115.99402, + "maxY": 353.07635, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,518.088,461.594]", + "rotation": 90, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 330.406, + "ydirAdj": 93.91199 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,518.202,456.094]", + "rotation": 90, + "y": 518.202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 335.906, + "ydirAdj": 93.79797 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,518.287,450.51]", + "rotation": 90, + "y": 518.287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 341.49, + "ydirAdj": 93.71301 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,518.4,445.011]", + "rotation": 90, + "y": 518.4, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.387512, + "heightDir": 6.087346, + "widthDirAdj": 4.387512, + "dir": 270.0, + "xdirAdj": 346.989, + "ydirAdj": 93.599976 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.805,483.987]", + "rotation": 90, + "y": 517.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9393005, + "heightDir": 6.087346, + "widthDirAdj": 7.9393005, + "dir": 270.0, + "xdirAdj": 308.013, + "ydirAdj": 94.19501 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.89,476.107]", + "rotation": 90, + "y": 517.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 315.893, + "ydirAdj": 94.109985 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.89,472.989]", + "rotation": 90, + "y": 517.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 319.011, + "ydirAdj": 94.109985 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,518.003,469.899]", + "rotation": 90, + "y": 518.003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 322.101, + "ydirAdj": 93.99701 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.408,507.005]", + "rotation": 90, + "y": 517.408, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7077026, + "heightDir": 6.087346, + "widthDirAdj": 6.7077026, + "dir": 270.0, + "xdirAdj": 284.995, + "ydirAdj": 94.59198 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.493,500.287]", + "rotation": 90, + "y": 517.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 291.713, + "ydirAdj": 94.50702 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.606,495.411]", + "rotation": 90, + "y": 517.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 296.589, + "ydirAdj": 94.39398 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,517.691,489.912]", + "rotation": 90, + "y": 517.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 302.088, + "ydirAdj": 94.30902 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,676.006]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 115.99402, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,668.098]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 123.90198, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,664.413]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 127.586975, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,659.395]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 132.60498, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,654.491]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 137.50897, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,648.992]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 143.008, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,641.112]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 150.888, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,637.994]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 154.00598, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,632.409]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 159.591, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,626.91]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 165.09003, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.792,623.792]", + "rotation": 90, + "y": 515.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 168.20801, + "ydirAdj": 96.20801 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,620.702]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 171.29797, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,615.09]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 176.90997, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,609.591]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 182.409, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,606.501]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 185.49902, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,601.002]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 190.99799, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,595.502]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 196.49799, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,587.594]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 204.406, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,583.795]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 208.20502, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,578.891]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 213.10901, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,573.392]", + "rotation": 90, + "y": 515.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 270.0, + "xdirAdj": 218.60797, + "ydirAdj": 96.093994 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 48, + "text": "2. Highlight:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 88.20563, + "y": 56.692993 + }, + "width": 8.087402, + "height": 59.49243, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 88.20563, + "maxX": 96.29303, + "minY": 56.692993, + "maxY": 116.185425, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,735.307]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 56.692993, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,729.893]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 62.106995, + "ydirAdj": 96.29303 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,724.394]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 67.60602, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,716.4]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 75.599976, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,713.31]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 78.69, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,707.811]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 84.189026, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,702.312]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 89.68799, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,699.194]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 92.80603, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,695.991]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 96.00897, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,690.491]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 101.50897, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,684.992]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 107.007996, + "ydirAdj": 96.29303 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.707,681.902]", + "rotation": 90, + "y": 515.707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.09802, + "ydirAdj": 96.29303 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 49, + "text": "David Ksenia Dict-Annotation:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 88.403625, + "y": 449.206 + }, + "width": 8.201355, + "height": 140.08142, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 88.403625, + "maxX": 96.60498, + "minY": 449.206, + "maxY": 589.2874, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,264.387]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 527.61304, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,256.507]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 535.49304, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,251.49]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 540.51, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,245.991]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 546.00903, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,242.901]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 549.099, + "ydirAdj": 96.49103 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,234.595]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 557.405, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.594,226.687]", + "rotation": 90, + "y": 515.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 565.313, + "ydirAdj": 96.406006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.594,222.406]", + "rotation": 90, + "y": 515.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 569.594, + "ydirAdj": 96.406006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.594,217.502]", + "rotation": 90, + "y": 515.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 574.498, + "ydirAdj": 96.406006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.594,211.89]", + "rotation": 90, + "y": 515.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 580.11, + "ydirAdj": 96.406006 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.594,208.8]", + "rotation": 90, + "y": 515.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 583.2, + "ydirAdj": 96.406006 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,342.794]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 449.206, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,334.998]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 457.002, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,331.795]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 460.205, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,326.891]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 465.109, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,323.802]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 468.198, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,320.088]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 471.912, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,312.094]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 479.906, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,306.595]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 485.405, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,301.096]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 490.904, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,295.597]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 496.403, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,292.507]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 499.493, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.395,287.49]", + "rotation": 90, + "y": 515.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 504.51, + "ydirAdj": 96.60498 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,284.4]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 507.6, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,281.31]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 510.69, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,275.811]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.18896, + "ydirAdj": 96.49103 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.509,270.312]", + "rotation": 90, + "y": 515.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 521.688, + "ydirAdj": 96.49103 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 50, + "text": "Annotations w/o", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 94.61166, + "y": 654.00903 + }, + "width": 8.39933, + "height": 75.08331, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 94.61166, + "maxX": 103.01099, + "minY": 654.00903, + "maxY": 729.09235, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.301,118.8]", + "rotation": 90, + "y": 509.301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9392853, + "heightDir": 6.087346, + "widthDirAdj": 7.9392853, + "dir": 270.0, + "xdirAdj": 673.2, + "ydirAdj": 102.699005 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.414,110.891]", + "rotation": 90, + "y": 509.414, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 681.109, + "ydirAdj": 102.586 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.499,105.307]", + "rotation": 90, + "y": 509.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 686.693, + "ydirAdj": 102.50101 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.613,99.808]", + "rotation": 90, + "y": 509.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 692.192, + "ydirAdj": 102.38699 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.698,94.309]", + "rotation": 90, + "y": 509.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 697.691, + "ydirAdj": 102.302 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.811,91.191]", + "rotation": 90, + "y": 509.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8713303, + "heightDir": 6.087346, + "widthDirAdj": 4.8713303, + "dir": 270.0, + "xdirAdj": 700.809, + "ydirAdj": 102.188995 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.896,86.287]", + "rotation": 90, + "y": 509.896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 705.713, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.896,83.112]", + "rotation": 90, + "y": 509.896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 708.888, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,510.009,79.994]", + "rotation": 90, + "y": 510.009, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 712.006, + "ydirAdj": 101.991 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,510.094,74.494]", + "rotation": 90, + "y": 510.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 717.506, + "ydirAdj": 101.906006 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,510.208,68.995]", + "rotation": 90, + "y": 510.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2775345, + "heightDir": 6.087346, + "widthDirAdj": 4.2775345, + "dir": 270.0, + "xdirAdj": 723.005, + "ydirAdj": 101.79199 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,508.989,137.991]", + "rotation": 90, + "y": 508.989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9392853, + "heightDir": 6.087346, + "widthDirAdj": 7.9392853, + "dir": 270.0, + "xdirAdj": 654.00903, + "ydirAdj": 103.01099 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.102,130.195]", + "rotation": 90, + "y": 509.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 661.805, + "ydirAdj": 102.89801 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,509.102,127.106]", + "rotation": 90, + "y": 509.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 664.894, + "ydirAdj": 102.89801 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 51, + "text": "redaction imported For BlueHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 98.098656, + "y": 115.99402 + }, + "width": 10.808357, + "height": 271.89133, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 98.098656, + "maxX": 108.90701, + "minY": 115.99402, + "maxY": 387.88535, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.814,446.003]", + "rotation": 90, + "y": 505.814, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 270.0, + "xdirAdj": 345.997, + "ydirAdj": 106.186005 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.899,442.205]", + "rotation": 90, + "y": 505.899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 349.795, + "ydirAdj": 106.10101 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.013,437.301]", + "rotation": 90, + "y": 506.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 354.699, + "ydirAdj": 105.987 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.098,431.802]", + "rotation": 90, + "y": 506.098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 360.198, + "ydirAdj": 105.90201 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.098,426.898]", + "rotation": 90, + "y": 506.098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 365.102, + "ydirAdj": 105.90201 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.211,421.994]", + "rotation": 90, + "y": 506.211, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 370.006, + "ydirAdj": 105.789 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.296,418.904]", + "rotation": 90, + "y": 506.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 373.096, + "ydirAdj": 105.70401 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.296,415.701]", + "rotation": 90, + "y": 506.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 376.299, + "ydirAdj": 105.70401 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,506.409,410.202]", + "rotation": 90, + "y": 506.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 381.798, + "ydirAdj": 105.591 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.106,488.806]", + "rotation": 90, + "y": 505.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 303.194, + "ydirAdj": 106.89401 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.106,485.688]", + "rotation": 90, + "y": 505.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.544067, + "heightDir": 6.087346, + "widthDirAdj": 8.544067, + "dir": 270.0, + "xdirAdj": 306.312, + "ydirAdj": 106.89401 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.304,477.099]", + "rotation": 90, + "y": 505.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 314.901, + "ydirAdj": 106.696014 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.389,471.487]", + "rotation": 90, + "y": 505.389, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 320.513, + "ydirAdj": 106.61099 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.502,465.987]", + "rotation": 90, + "y": 505.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 270.0, + "xdirAdj": 326.013, + "ydirAdj": 106.497986 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.502,462.302]", + "rotation": 90, + "y": 505.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 329.698, + "ydirAdj": 106.497986 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.587,459.213]", + "rotation": 90, + "y": 505.587, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 332.787, + "ydirAdj": 106.412994 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,505.701,454.309]", + "rotation": 90, + "y": 505.701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 337.691, + "ydirAdj": 106.29901 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,504.794,506.806]", + "rotation": 90, + "y": 504.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.113922, + "heightDir": 6.087346, + "widthDirAdj": 6.113922, + "dir": 270.0, + "xdirAdj": 285.194, + "ydirAdj": 107.20599 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,504.907,500.797]", + "rotation": 90, + "y": 504.907, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 291.203, + "ydirAdj": 107.09299 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,504.992,495.298]", + "rotation": 90, + "y": 504.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 270.0, + "xdirAdj": 296.702, + "ydirAdj": 107.007996 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,676.006]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.324646, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 270.0, + "xdirAdj": 115.99402, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,668.693]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 123.30701, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,665.49]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 126.51001, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,659.991]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 132.00897, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,655.087]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 136.91302, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,647.206]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 144.794, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,644.088]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 147.91199, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,638.589]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 153.41101, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,633.005]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 158.995, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,629.887]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 162.11298, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,626.797]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 165.203, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.093,621.298]", + "rotation": 90, + "y": 503.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 170.70203, + "ydirAdj": 108.90701 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,615.713]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 176.28699, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,612.595]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 179.40503, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,607.096]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 184.90399, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,601.597]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 190.40302, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,593.688]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 198.31201, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,589.89]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 202.10999, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,584.986]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 207.01398, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,579.487]", + "rotation": 90, + "y": 503.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 270.0, + "xdirAdj": 212.513, + "ydirAdj": 108.79401 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 52, + "text": "3. Highlight:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 100.9046, + "y": 56.692993 + }, + "width": 8.087402, + "height": 59.49243, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 100.9046, + "maxX": 108.992004, + "minY": 56.692993, + "maxY": 116.185425, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,735.307]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 56.692993, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,729.893]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 62.106995, + "ydirAdj": 108.992004 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,724.394]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 67.60602, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,716.4]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 75.599976, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,713.31]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 78.69, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,707.811]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 84.189026, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,702.312]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 89.68799, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,699.194]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 92.80603, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,695.991]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 96.00897, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,690.491]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 101.50897, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,684.992]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 107.007996, + "ydirAdj": 108.992004 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.008,681.902]", + "rotation": 90, + "y": 503.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.09802, + "ydirAdj": 108.992004 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 53, + "text": "Rule-Annotation:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 101.10361, + "y": 449.206 + }, + "width": 8.087402, + "height": 80.38342, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 101.10361, + "maxX": 109.19101, + "minY": 449.206, + "maxY": 529.5894, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,342.794]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 449.206, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,335.594]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 456.406, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,330.009]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 461.991, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,326.891]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 465.109, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,321.987]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 470.013, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,318.302]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 473.698, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,310.394]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 481.606, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,304.809]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 487.191, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,299.31]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 492.69, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,293.811]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 498.189, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,290.693]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 501.307, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.809,285.789]", + "rotation": 90, + "y": 502.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 506.211, + "ydirAdj": 109.19101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.894,282.699]", + "rotation": 90, + "y": 502.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 509.301, + "ydirAdj": 109.10599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.894,279.496]", + "rotation": 90, + "y": 502.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 512.504, + "ydirAdj": 109.10599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.894,273.997]", + "rotation": 90, + "y": 502.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 518.003, + "ydirAdj": 109.10599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,502.894,268.498]", + "rotation": 90, + "y": 502.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 523.502, + "ydirAdj": 109.10599 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 54, + "text": "Highlights and", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 107.22564, + "y": 654.208 + }, + "width": 8.3713455, + "height": 67.17334, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 107.22564, + "maxX": 115.596985, + "minY": 654.208, + "maxY": 721.38135, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.687,119.197]", + "rotation": 90, + "y": 496.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9392853, + "heightDir": 6.087346, + "widthDirAdj": 7.9392853, + "dir": 270.0, + "xdirAdj": 672.803, + "ydirAdj": 115.31299 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.8,111.288]", + "rotation": 90, + "y": 496.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 680.712, + "ydirAdj": 115.20001 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.913,108.198]", + "rotation": 90, + "y": 496.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 683.802, + "ydirAdj": 115.087006 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.998,102.586]", + "rotation": 90, + "y": 496.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 689.414, + "ydirAdj": 115.002014 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,497.112,97.087]", + "rotation": 90, + "y": 497.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 694.913, + "ydirAdj": 114.888 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,497.112,93.997]", + "rotation": 90, + "y": 497.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 698.003, + "ydirAdj": 114.888 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,497.197,90.907]", + "rotation": 90, + "y": 497.197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 701.093, + "ydirAdj": 114.80301 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,497.31,85.408]", + "rotation": 90, + "y": 497.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 706.592, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,497.395,79.795]", + "rotation": 90, + "y": 497.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 712.205, + "ydirAdj": 114.60501 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,497.395,76.706]", + "rotation": 90, + "y": 497.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2775345, + "heightDir": 6.087346, + "widthDirAdj": 4.2775345, + "dir": 270.0, + "xdirAdj": 715.294, + "ydirAdj": 114.60501 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.403,137.792]", + "rotation": 90, + "y": 496.403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 654.208, + "ydirAdj": 115.596985 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.403,133.002]", + "rotation": 90, + "y": 496.403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 658.998, + "ydirAdj": 115.596985 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,496.488,127.502]", + "rotation": 90, + "y": 496.488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498123, + "heightDir": 6.087346, + "widthDirAdj": 5.498123, + "dir": 270.0, + "xdirAdj": 664.498, + "ydirAdj": 115.51199 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 55, + "text": "annotation Here: RedHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 111.30764, + "y": 115.99402 + }, + "width": 10.185371, + "height": 243.99933, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 111.30764, + "maxX": 121.49301, + "minY": 115.99402, + "maxY": 359.99335, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.605,479.395]", + "rotation": 90, + "y": 492.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 312.605, + "ydirAdj": 119.39499 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.69,474.491]", + "rotation": 90, + "y": 492.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 317.509, + "ydirAdj": 119.31 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.803,468.907]", + "rotation": 90, + "y": 492.803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 323.093, + "ydirAdj": 119.19699 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.888,463.408]", + "rotation": 90, + "y": 492.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 328.592, + "ydirAdj": 119.112 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,493.002,457.909]", + "rotation": 90, + "y": 493.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 334.091, + "ydirAdj": 118.997986 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,493.087,454.791]", + "rotation": 90, + "y": 493.087, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 337.209, + "ydirAdj": 118.912994 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,493.087,449.887]", + "rotation": 90, + "y": 493.087, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 342.113, + "ydirAdj": 118.912994 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,493.2,446.712]", + "rotation": 90, + "y": 493.2, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 345.288, + "ydirAdj": 118.79999 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,493.313,443.594]", + "rotation": 90, + "y": 493.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 348.406, + "ydirAdj": 118.68701 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,493.313,438.094]", + "rotation": 90, + "y": 493.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 270.0, + "xdirAdj": 353.906, + "ydirAdj": 118.68701 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.208,506.608]", + "rotation": 90, + "y": 492.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9393005, + "heightDir": 6.087346, + "widthDirAdj": 7.9393005, + "dir": 270.0, + "xdirAdj": 285.392, + "ydirAdj": 119.79199 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.293,498.813]", + "rotation": 90, + "y": 492.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 293.187, + "ydirAdj": 119.707 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.406,493.909]", + "rotation": 90, + "y": 492.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 270.0, + "xdirAdj": 298.091, + "ydirAdj": 119.593994 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.406,490.195]", + "rotation": 90, + "y": 492.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 270.0, + "xdirAdj": 301.805, + "ydirAdj": 119.593994 + }, + { + "textMatrix": "[0.1919151,-10.996241,10.996241,0.1919151,492.491,485.291]", + "rotation": 90, + "y": 492.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 270.0, + "xdirAdj": 306.709, + "ydirAdj": 119.509 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,676.006]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 270.0, + "xdirAdj": 115.99402, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,668.693]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 123.30701, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,663.704]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 128.29602, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,658.205]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 133.79498, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,650.296]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 141.70398, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,647.206]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 144.794, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,641.707]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 150.29303, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,636.094]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 155.906, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,633.005]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 158.995, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,629.887]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 162.11298, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.507,624.387]", + "rotation": 90, + "y": 490.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 167.61298, + "ydirAdj": 121.49301 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,618.803]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 173.19702, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,615.713]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 176.28699, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,610.186]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 181.81403, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,604.687]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 187.31299, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,596.806]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 195.19397, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,593.093]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 198.90698, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,588.104]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 203.896, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,582.605]", + "rotation": 90, + "y": 490.592, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 270.0, + "xdirAdj": 209.39502, + "ydirAdj": 121.40799 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 56, + "text": "4. Highlight:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 113.518585, + "y": 56.692993 + }, + "width": 8.087402, + "height": 59.49243, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 113.518585, + "maxX": 121.60599, + "minY": 56.692993, + "maxY": 116.185425, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,735.307]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 56.692993, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,729.893]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 62.106995, + "ydirAdj": 121.60599 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,724.394]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 67.60602, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,716.4]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 75.599976, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,713.31]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 78.69, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,707.811]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 84.189026, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,702.312]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 89.68799, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,699.194]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 92.80603, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,695.991]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 96.00897, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,690.491]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 101.50897, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,684.992]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 107.007996, + "ydirAdj": 121.60599 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.394,681.902]", + "rotation": 90, + "y": 490.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.09802, + "ydirAdj": 121.60599 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 57, + "text": "al. et RuleAnnotation90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 113.60361, + "y": 449.206 + }, + "width": 8.286407, + "height": 137.47339, + "page": 2, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 113.60361, + "maxX": 121.890015, + "minY": 449.206, + "maxY": 586.6794, + "classification": null, + "page": 2, + "orientation": "NONE", + "sequences": [ + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.309,219.402]", + "rotation": 90, + "y": 490.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 572.598, + "ydirAdj": 121.69101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.309,214.498]", + "rotation": 90, + "y": 490.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 577.502, + "ydirAdj": 121.69101 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.309,211.408]", + "rotation": 90, + "y": 490.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087402, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 580.592, + "ydirAdj": 121.69101 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,230.202]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 561.798, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.309,225.298]", + "rotation": 90, + "y": 490.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 566.702, + "ydirAdj": 121.69101 + } + ] + }, + { + "page": 2, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,342.794]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 449.206, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,335.594]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 456.406, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,330.009]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 461.991, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,326.891]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 465.109, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,321.987]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 470.013, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,314.107]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 477.893, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,308.608]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 483.392, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,303.109]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 488.891, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,297.496]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 494.504, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,294.406]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 497.594, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,289.502]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 502.498, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.11,286.413]", + "rotation": 90, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 505.587, + "ydirAdj": 121.890015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,283.209]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 508.791, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,277.71]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 514.29004, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,272.211]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 519.789, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,266.712]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 525.28796, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,261.213]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 530.787, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,253.304]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 538.696, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,249.506]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 542.494, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,244.602]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 547.398, + "ydirAdj": 121.80499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.195,239.102]", + "rotation": 90, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087402, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 552.898, + "ydirAdj": 121.80499 + } + ] + } + ], + "rotation": 90, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 58, + "text": "Text with 0° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 19.586975, + "y": 654.094 + }, + "width": 74.29089, + "height": 46.100403, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 19.586975, + "maxX": 93.87787, + "minY": 654.094, + "maxY": 700.1944, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,592.413,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 180.0, + "xdirAdj": 19.586975, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,585.7152,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 26.28479, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,580.7221,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 31.277893, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,575.2231,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 36.776917, + "ydirAdj": 99.893005 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,569.3391,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 42.66089, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,561.44257,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 50.557434, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,558.3521,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 53.64789, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,555.26166,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 56.738342, + "ydirAdj": 99.893005 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,546.9691,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 65.03088, + "ydirAdj": 99.893005 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,541.4701,99.893]", + "rotation": 180, + "y": 99.893005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 180.0, + "xdirAdj": 70.52991, + "ydirAdj": 99.893005 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,592.413,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 180.0, + "xdirAdj": 19.586975, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,585.11035,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 26.889648, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,580.11725,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 31.882751, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,574.6182,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 37.381775, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,569.1192,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 42.8808, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,566.02875,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 45.971252, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,561.1456,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 180.0, + "xdirAdj": 50.85437, + "ydirAdj": 112.59198 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,554.6678,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 180.0, + "xdirAdj": 57.332214, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,547.97,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 64.03003, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,543.08685,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 68.91315, + "ydirAdj": 112.59198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,537.4998,112.592]", + "rotation": 180, + "y": 112.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 74.50018, + "ydirAdj": 112.59198 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,592.413,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 19.586975, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,584.5165,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 27.48352, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,581.426,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 30.573975, + "ydirAdj": 125.20599 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,573.1445,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 38.85553, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,565.1599,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 46.840088, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,559.6609,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 52.33911, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,554.16187,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 57.838135, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,548.66284,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 63.33716, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,545.5724,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 66.42761, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,540.5793,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 71.420715, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,537.48883,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 74.51117, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,534.3984,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 77.60162, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,528.89935,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 83.10065, + "ydirAdj": 125.20599 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,523.4003,125.206]", + "rotation": 180, + "y": 125.20599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 180.0, + "xdirAdj": 88.59967, + "ydirAdj": 125.20599 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,592.413,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 180.0, + "xdirAdj": 19.586975, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,587.5299,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 24.470093, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,582.0309,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 29.969116, + "ydirAdj": 137.906 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,573.7493,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 38.25067, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,565.7648,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 46.23523, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,562.6743,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 49.325684, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,557.1753,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 54.824707, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,551.6763,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 60.32373, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,548.5858,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 63.414185, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,545.49536,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 66.50464, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,539.9083,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 180.0, + "xdirAdj": 72.091675, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,534.4093,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 77.5907, + "ydirAdj": 137.906 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,531.31885,137.906]", + "rotation": 180, + "y": 137.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 180.0, + "xdirAdj": 80.68115, + "ydirAdj": 137.906 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 59, + "text": "Text with 180° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 518.202, + "y": 401.613 + }, + "width": 74.312805, + "height": 45.98639, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 518.202, + "maxX": 592.51483, + "minY": 401.613, + "maxY": 447.5994, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,518.202,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 0.0, + "xdirAdj": 518.202, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,524.89984,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 524.89984, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,529.89294,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 529.89294, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,535.39197,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 535.39197, + "ydirAdj": 352.488 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,541.27594,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 541.27594, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,549.1725,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 549.1725, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,552.26294,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 552.26294, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,555.3534,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 555.3534, + "ydirAdj": 352.488 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,563.64594,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 563.64594, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,569.14496,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 569.14496, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,574.732,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 574.732, + "ydirAdj": 352.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,580.231,439.512]", + "rotation": 180, + "y": 439.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 0.0, + "xdirAdj": 580.231, + "ydirAdj": 352.488 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,518.202,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087393, + "widthDirAdj": 7.324646, + "dir": 0.0, + "xdirAdj": 518.202, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,525.5047,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 525.5047, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,530.4978,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 530.4978, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,535.9968,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 535.9968, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,541.49585,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 541.49585, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,544.5863,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 544.5863, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,549.5794,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 0.0, + "xdirAdj": 549.5794, + "ydirAdj": 365.102 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,555.95825,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087393, + "widthDirAdj": 6.7088013, + "dir": 0.0, + "xdirAdj": 555.95825, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,562.744,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 562.744, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,567.62714,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 567.62714, + "ydirAdj": 365.102 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,573.12616,426.898]", + "rotation": 180, + "y": 426.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 573.12616, + "ydirAdj": 365.102 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,518.202,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 518.202, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,526.0986,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 526.0986, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,529.28796,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 529.28796, + "ydirAdj": 377.802 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,537.5805,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 537.5805, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,545.47705,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 545.47705, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,550.9761,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 550.9761, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,556.4751,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 556.4751, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,561.9741,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 561.9741, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,565.0646,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 565.0646, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,570.0577,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 570.0577, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,573.14813,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 573.14813, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,576.2386,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 576.2386, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,581.7376,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 581.7376, + "ydirAdj": 377.802 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,587.23663,414.198]", + "rotation": 180, + "y": 414.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 0.0, + "xdirAdj": 587.23663, + "ydirAdj": 377.802 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,518.202,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 0.0, + "xdirAdj": 518.202, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,523.1951,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 523.1951, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,528.69415,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 528.69415, + "ydirAdj": 390.387 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,536.8877,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 536.8877, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,544.87225,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 544.87225, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,547.9627,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 547.9627, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,553.46173,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 553.46173, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,558.96075,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 558.96075, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,562.0512,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 562.0512, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,565.2406,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 565.2406, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,570.7396,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 0.0, + "xdirAdj": 570.7396, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,576.23865,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 576.23865, + "ydirAdj": 390.387 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,579.3291,401.613]", + "rotation": 180, + "y": 401.613, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 0.0, + "xdirAdj": 579.3291, + "ydirAdj": 390.387 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 60, + "text": "Text with 270° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 526.791, + "y": 198.90698 + }, + "width": 86.416565, + "height": 46.07141, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 526.791, + "maxX": 613.2076, + "minY": 198.90698, + "maxY": 244.9784, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,526.791]", + "rotation": 180, + "y": 526.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011657715, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 90.0, + "xdirAdj": 526.791, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,532.602]", + "rotation": 180, + "y": 532.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 532.602, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,537.506]", + "rotation": 180, + "y": 537.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 537.506, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,543.005]", + "rotation": 180, + "y": 543.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 543.005, + "ydirAdj": 555.109 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,548.787]", + "rotation": 180, + "y": 548.787, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 548.787, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,556.809]", + "rotation": 180, + "y": 556.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 556.809, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,559.786]", + "rotation": 180, + "y": 559.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 559.786, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,562.904]", + "rotation": 180, + "y": 562.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 562.904, + "ydirAdj": 555.109 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,571.096]", + "rotation": 180, + "y": 571.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 571.096, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,576.595]", + "rotation": 180, + "y": 576.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 576.595, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,555.109,582.094]", + "rotation": 180, + "y": 582.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 582.094, + "ydirAdj": 555.109 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,554.995,587.594]", + "rotation": 180, + "y": 587.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076293945, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 587.594, + "ydirAdj": 554.995 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,526.791]", + "rotation": 180, + "y": 526.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012756348, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 526.791, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,534.104]", + "rotation": 180, + "y": 534.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 534.104, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,538.894]", + "rotation": 180, + "y": 538.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 538.894, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,544.394]", + "rotation": 180, + "y": 544.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 544.394, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,549.893]", + "rotation": 180, + "y": 549.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 549.893, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,553.011]", + "rotation": 180, + "y": 553.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 553.011, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,557.887]", + "rotation": 180, + "y": 557.887, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0063476562, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 557.887, + "ydirAdj": 567.808 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,564.094]", + "rotation": 180, + "y": 564.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011657715, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 90.0, + "xdirAdj": 564.094, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,570.104]", + "rotation": 180, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 570.104, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,574.894]", + "rotation": 180, + "y": 574.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 574.894, + "ydirAdj": 567.808 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,567.808,580.394]", + "rotation": 180, + "y": 580.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 580.394, + "ydirAdj": 567.808 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,526.791]", + "rotation": 180, + "y": 526.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 526.791, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,534.586]", + "rotation": 180, + "y": 534.586, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 534.586, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,537.704]", + "rotation": 180, + "y": 537.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 537.704, + "ydirAdj": 580.394 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,545.301]", + "rotation": 180, + "y": 545.301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 545.301, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,553.294]", + "rotation": 180, + "y": 553.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 553.294, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,558.794]", + "rotation": 180, + "y": 558.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.794, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,564.293]", + "rotation": 180, + "y": 564.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 564.293, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,569.792]", + "rotation": 180, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 569.792, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,572.797]", + "rotation": 180, + "y": 572.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 572.797, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,577.701]", + "rotation": 180, + "y": 577.701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 577.701, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,580.791]", + "rotation": 180, + "y": 580.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 580.791, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.394,583.795]", + "rotation": 180, + "y": 583.795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 583.795, + "ydirAdj": 580.394 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.309,589.294]", + "rotation": 180, + "y": 589.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 589.294, + "ydirAdj": 580.309 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.309,594.794]", + "rotation": 180, + "y": 594.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 594.794, + "ydirAdj": 580.309 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.309,601.909]", + "rotation": 180, + "y": 601.909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 601.909, + "ydirAdj": 580.309 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.309,606.699]", + "rotation": 180, + "y": 606.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 606.699, + "ydirAdj": 580.309 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,580.309,612.198]", + "rotation": 180, + "y": 612.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 612.198, + "ydirAdj": 580.309 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,526.791]", + "rotation": 180, + "y": 526.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 526.791, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,534.699]", + "rotation": 180, + "y": 534.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 534.699, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,537.704]", + "rotation": 180, + "y": 537.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 537.704, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,543.203]", + "rotation": 180, + "y": 543.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 543.203, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,548.702]", + "rotation": 180, + "y": 548.702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 548.702, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,551.792]", + "rotation": 180, + "y": 551.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 551.792, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,554.797]", + "rotation": 180, + "y": 554.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 554.797, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,560.296]", + "rotation": 180, + "y": 560.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 560.296, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,565.795]", + "rotation": 180, + "y": 565.795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 565.795, + "ydirAdj": 593.093 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,593.093,568.913]", + "rotation": 180, + "y": 568.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 568.913, + "ydirAdj": 593.093 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 61, + "text": "Text with 0° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation0GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 106.412994, + "y": 651.28796 + }, + "width": 139.65173, + "height": 58.686462, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 106.412994, + "maxX": 246.06473, + "minY": 651.28796, + "maxY": 709.9744, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,505.587,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 106.412994, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,498.88922,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 113.11078, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,494.00613,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 117.993866, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,488.50714,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 123.49286, + "ydirAdj": 90.112976 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,482.62317,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 129.37683, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,474.72662,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 137.27338, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,471.63617,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 140.36383, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,468.54572,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 143.45428, + "ydirAdj": 90.112976 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,460.26422,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 151.73578, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,454.67725,90.113]", + "rotation": 180, + "y": 90.112976, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 180.0, + "xdirAdj": 157.32275, + "ydirAdj": 90.112976 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,505.587,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 106.412994, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,498.88922,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 113.11078, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,494.00613,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 117.993866, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,488.50714,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 123.49286, + "ydirAdj": 102.81299 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,482.62317,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 129.37683, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,474.72662,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 137.27338, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,471.63617,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 140.36383, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,468.54572,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 143.45428, + "ydirAdj": 102.81299 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,460.26422,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 151.73578, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,452.27966,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 159.72034, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,446.78067,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 165.21933, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,441.28168,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 170.71832, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,435.78268,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 176.21732, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,432.69223,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 179.30777, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,427.69916,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 184.30084, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,424.6087,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 187.3913, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,421.51825,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 190.48175, + "ydirAdj": 102.81299 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,416.01926,102.813]", + "rotation": 180, + "y": 102.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 195.98074, + "ydirAdj": 102.81299 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,505.587,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 106.412994, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,497.69046,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 114.30954, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,494.6,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 117.399994, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,489.71692,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 122.28308, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,486.62646,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 125.373535, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,482.94214,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 129.05786, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,474.95758,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 137.04242, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,469.4586,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 142.54141, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,463.9596,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 148.0404, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,458.4606,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 153.5394, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,455.27118,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 156.72882, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,450.3881,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 161.61191, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,447.29764,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 164.70236, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,444.20718,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 167.79282, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,438.7082,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 173.29181, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,433.12122,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 178.87878, + "ydirAdj": 115.512024 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,427.23724,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 184.76276, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,419.3407,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 192.6593, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,414.4576,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 197.54239, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,408.95862,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 203.04138, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,405.86816,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 206.13184, + "ydirAdj": 115.512024 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,397.57565,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 214.42435, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,389.6791,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 222.32089, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,385.3899,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 226.6101, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,380.39682,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 231.60318, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,374.89783,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 237.10217, + "ydirAdj": 115.512024 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,371.80737,115.512]", + "rotation": 180, + "y": 115.512024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 240.19263, + "ydirAdj": 115.512024 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,505.587,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 180.0, + "xdirAdj": 106.412994, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,498.28433,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 113.71567, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,492.78534,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 119.21466, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,489.6949,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 122.305115, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,484.7018,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 127.29819, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,481.0175,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 130.98251, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,473.12094,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 138.87906, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,467.62195,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 144.37805, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,462.12296,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 149.87704, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,456.62396,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 155.37604, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,453.43454,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 158.56546, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,448.55145,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 163.44855, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,445.461,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 166.539, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,442.37054,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 169.62946, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,436.87155,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 175.12845, + "ydirAdj": 128.013 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,431.28458,128.013]", + "rotation": 180, + "y": 128.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 180.71542, + "ydirAdj": 128.013 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,505.587,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 180.0, + "xdirAdj": 106.412994, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,498.28433,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 113.71567, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,492.78534,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 119.21466, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,489.6949,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 122.305115, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,484.7018,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 127.29819, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,476.80527,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 135.19473, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,471.30627,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 140.69373, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,465.80728,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 146.19272, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,460.3083,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 151.69171, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,457.21783,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 154.78217, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,452.22476,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 159.77524, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,449.1343,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 162.86569, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,446.04385,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 165.95615, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,440.54486,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 171.45514, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,435.04587,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 176.95413, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,429.4589,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 182.5411, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,421.56235,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 190.43765, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,417.87802,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 194.12198, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,412.99493,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 199.00507, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,407.49594,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 204.50406, + "ydirAdj": 140.71204 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,398.60953,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 213.39047, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,393.72644,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 218.27356, + "ydirAdj": 140.71204 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,387.8425,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 224.1575, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,382.9594,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 229.04059, + "ydirAdj": 140.71204 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,379.77,140.712]", + "rotation": 180, + "y": 140.71204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 232.23001, + "ydirAdj": 140.71204 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 62, + "text": "Text with 180° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation180GradP et al. Text with 270° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation270GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 365.811, + "y": 320.003 + }, + "width": 281.60684, + "height": 118.695404, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 365.811, + "maxX": 647.41785, + "minY": 320.003, + "maxY": 438.6984, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.811,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 365.811, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.5088,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 372.5088, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,377.39188,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 377.39188, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.89087,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 382.89087, + "ydirAdj": 361.389 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.77484,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 388.77484, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,396.6714,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 396.6714, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.76184,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 399.76184, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,402.8523,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 402.8523, + "ydirAdj": 361.389 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.1338,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 411.1338, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,416.63278,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 416.63278, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,422.21976,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 422.21976, + "ydirAdj": 361.389 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,427.71875,430.611]", + "rotation": 180, + "y": 430.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 427.71875, + "ydirAdj": 361.389 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.811,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 365.811, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.5088,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 372.5088, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,377.39188,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 377.39188, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.89087,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 382.89087, + "ydirAdj": 374.003 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.77484,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 388.77484, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,396.6714,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 396.6714, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.76184,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 399.76184, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,402.8523,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 402.8523, + "ydirAdj": 374.003 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.1338,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 411.1338, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,419.11835,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 419.11835, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,424.61734,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 424.61734, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,430.11633,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 430.11633, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,435.61533,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 435.61533, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,438.70578,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 438.70578, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,443.69885,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 443.69885, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,446.7893,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 446.7893, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,449.87976,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 449.87976, + "ydirAdj": 374.003 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,455.37875,417.997]", + "rotation": 180, + "y": 417.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 455.37875, + "ydirAdj": 374.003 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.811,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 365.811, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.70755,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 373.70755, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,376.798,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 376.798, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.6811,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 381.6811, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.77155,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 384.77155, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.45587,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 388.45587, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,396.44043,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 396.44043, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,401.93942,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 401.93942, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,407.43842,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 407.43842, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,412.9374,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 412.9374, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,416.12683,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 416.12683, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,421.00992,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 421.00992, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,424.10037,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 424.10037, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,427.19083,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 427.19083, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,432.68982,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 432.68982, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,438.1888,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 438.1888, + "ydirAdj": 386.702 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,444.07275,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 444.07275, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,452.0573,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 452.0573, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,456.9404,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 456.9404, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,462.4394,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 462.4394, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,465.52985,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 465.52985, + "ydirAdj": 386.702 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,473.82236,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 473.82236, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,481.7189,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 481.7189, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,486.00812,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 486.00812, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,491.0012,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 491.0012, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,496.50018,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 496.50018, + "ydirAdj": 386.702 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,499.59064,405.298]", + "rotation": 180, + "y": 405.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 499.59064, + "ydirAdj": 386.702 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.811,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 365.811, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.11368,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 373.11368, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.61267,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 378.61267, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.70312,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 381.70312, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.5862,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 386.5862, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,390.3695,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 390.3695, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,398.26605,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 398.26605, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.76505,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 403.76505, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,409.26404,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 409.26404, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,414.76303,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 414.76303, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,417.95245,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 417.95245, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,422.83554,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 422.83554, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,425.926,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 425.926, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,429.01645,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 429.01645, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,434.51544,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 434.51544, + "ydirAdj": 399.288 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.10242,392.712]", + "rotation": 180, + "y": 392.712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 440.10242, + "ydirAdj": 399.288 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.811,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 365.811, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.11368,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 373.11368, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.61267,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 378.61267, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.70312,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 381.70312, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.5862,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 386.5862, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,394.57077,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 394.57077, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.06976,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 400.06976, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,405.56876,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 405.56876, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.06775,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 411.06775, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,414.1582,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 414.1582, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,419.15128,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 419.15128, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,422.24173,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 422.24173, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,425.33218,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 425.33218, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,430.83118,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 430.83118, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,436.33017,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 436.33017, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,441.82916,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 441.82916, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,447.41614,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 447.41614, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,452.91513,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 452.91513, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,460.81168,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 460.81168, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,464.496,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 464.496, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,469.48907,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 469.48907, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,474.98807,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 474.98807, + "ydirAdj": 411.987 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,483.8855,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 483.8855, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,488.7686,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 488.7686, + "ydirAdj": 411.987 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,494.65256,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 494.65256, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,499.53564,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 499.53564, + "ydirAdj": 411.987 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,502.6261,380.013]", + "rotation": 180, + "y": 380.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 502.6261, + "ydirAdj": 411.987 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,510.605]", + "rotation": 180, + "y": 510.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011688232, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 510.605, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,516.501]", + "rotation": 180, + "y": 516.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 516.501, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,521.405]", + "rotation": 180, + "y": 521.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 521.405, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,526.904]", + "rotation": 180, + "y": 526.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 526.904, + "ydirAdj": 421.398 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,532.687]", + "rotation": 180, + "y": 532.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 532.687, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,540.595]", + "rotation": 180, + "y": 540.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 540.595, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,543.713]", + "rotation": 180, + "y": 543.713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 543.713, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,546.69]", + "rotation": 180, + "y": 546.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 546.69, + "ydirAdj": 421.398 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,554.995]", + "rotation": 180, + "y": 554.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 554.995, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,560.494]", + "rotation": 180, + "y": 560.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 560.494, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.398,565.994]", + "rotation": 180, + "y": 565.994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 565.994, + "ydirAdj": 421.398 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,421.313,571.493]", + "rotation": 180, + "y": 571.493, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076293945, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 571.493, + "ydirAdj": 421.313 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,510.605]", + "rotation": 180, + "y": 510.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011688232, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 510.605, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,516.387]", + "rotation": 180, + "y": 516.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 516.387, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,521.291]", + "rotation": 180, + "y": 521.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 521.291, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,526.791]", + "rotation": 180, + "y": 526.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 526.791, + "ydirAdj": 434.013 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,532.602]", + "rotation": 180, + "y": 532.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 532.602, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,540.595]", + "rotation": 180, + "y": 540.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 540.595, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,543.6]", + "rotation": 180, + "y": 543.6, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 543.6, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,546.69]", + "rotation": 180, + "y": 546.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 546.69, + "ydirAdj": 434.013 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,554.287]", + "rotation": 180, + "y": 554.287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 554.287, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,434.013,562.309]", + "rotation": 180, + "y": 562.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 562.309, + "ydirAdj": 434.013 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,567.808]", + "rotation": 180, + "y": 567.808, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 567.808, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,573.307]", + "rotation": 180, + "y": 573.307, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 573.307, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,578.806]", + "rotation": 180, + "y": 578.806, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 578.806, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,581.811]", + "rotation": 180, + "y": 581.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 581.811, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,586.687]", + "rotation": 180, + "y": 586.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 586.687, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,589.805]", + "rotation": 180, + "y": 589.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 589.805, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,592.809]", + "rotation": 180, + "y": 592.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 592.809, + "ydirAdj": 433.899 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,433.899,598.309]", + "rotation": 180, + "y": 598.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 598.309, + "ydirAdj": 433.899 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,510.605]", + "rotation": 180, + "y": 510.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405823, + "dir": 90.0, + "xdirAdj": 510.605, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,518.513]", + "rotation": 180, + "y": 518.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.513, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,521.49]", + "rotation": 180, + "y": 521.49, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 521.49, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,526.394]", + "rotation": 180, + "y": 526.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 526.394, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,529.512]", + "rotation": 180, + "y": 529.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 529.512, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,533.112]", + "rotation": 180, + "y": 533.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 533.112, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,541.106]", + "rotation": 180, + "y": 541.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 541.106, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,546.605]", + "rotation": 180, + "y": 546.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 546.605, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,552.104]", + "rotation": 180, + "y": 552.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 552.104, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,557.603]", + "rotation": 180, + "y": 557.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 557.603, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,560.608]", + "rotation": 180, + "y": 560.608, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 560.608, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.712,565.512]", + "rotation": 180, + "y": 565.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 565.512, + "ydirAdj": 446.712 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,568.602]", + "rotation": 180, + "y": 568.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 568.602, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,571.606]", + "rotation": 180, + "y": 571.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 571.606, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,577.106]", + "rotation": 180, + "y": 577.106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 577.106, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,582.605]", + "rotation": 180, + "y": 582.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 582.605, + "ydirAdj": 446.598 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,588.387]", + "rotation": 180, + "y": 588.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 588.387, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,596.409]", + "rotation": 180, + "y": 596.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 596.409, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,601.313]", + "rotation": 180, + "y": 601.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 601.313, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,606.813]", + "rotation": 180, + "y": 606.813, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 606.813, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,609.789]", + "rotation": 180, + "y": 609.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 609.789, + "ydirAdj": 446.598 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.598,618.094]", + "rotation": 180, + "y": 618.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 618.094, + "ydirAdj": 446.598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.513,626.003]", + "rotation": 180, + "y": 626.003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 626.003, + "ydirAdj": 446.513 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.513,630.312]", + "rotation": 180, + "y": 630.312, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 630.312, + "ydirAdj": 446.513 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.513,635.187]", + "rotation": 180, + "y": 635.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 635.187, + "ydirAdj": 446.513 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.513,640.687]", + "rotation": 180, + "y": 640.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 640.687, + "ydirAdj": 446.513 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,446.513,643.691]", + "rotation": 180, + "y": 643.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 643.691, + "ydirAdj": 446.513 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,510.605]", + "rotation": 180, + "y": 510.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012756348, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 510.605, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,517.805]", + "rotation": 180, + "y": 517.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 517.805, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,523.304]", + "rotation": 180, + "y": 523.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 523.304, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,526.394]", + "rotation": 180, + "y": 526.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 526.394, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,531.298]", + "rotation": 180, + "y": 531.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 531.298, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,534.898]", + "rotation": 180, + "y": 534.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 534.898, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,542.891]", + "rotation": 180, + "y": 542.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 542.891, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,548.391]", + "rotation": 180, + "y": 548.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 548.391, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,553.89]", + "rotation": 180, + "y": 553.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 553.89, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,559.389]", + "rotation": 180, + "y": 559.389, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 559.389, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,562.394]", + "rotation": 180, + "y": 562.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 562.394, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.298,567.298]", + "rotation": 180, + "y": 567.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 567.298, + "ydirAdj": 459.298 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.213,570.387]", + "rotation": 180, + "y": 570.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 570.387, + "ydirAdj": 459.213 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.213,573.392]", + "rotation": 180, + "y": 573.392, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 573.392, + "ydirAdj": 459.213 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.213,578.891]", + "rotation": 180, + "y": 578.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 578.891, + "ydirAdj": 459.213 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,459.213,584.391]", + "rotation": 180, + "y": 584.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 584.391, + "ydirAdj": 459.213 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,510.605]", + "rotation": 180, + "y": 510.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012756348, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 510.605, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,517.89]", + "rotation": 180, + "y": 517.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 517.89, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,523.389]", + "rotation": 180, + "y": 523.389, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 523.389, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,526.394]", + "rotation": 180, + "y": 526.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 526.394, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,531.298]", + "rotation": 180, + "y": 531.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 531.298, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,539.206]", + "rotation": 180, + "y": 539.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 539.206, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,544.706]", + "rotation": 180, + "y": 544.706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 544.706, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,550.205]", + "rotation": 180, + "y": 550.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 550.205, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,555.704]", + "rotation": 180, + "y": 555.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 555.704, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,558.794]", + "rotation": 180, + "y": 558.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 558.794, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,563.698]", + "rotation": 180, + "y": 563.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 563.698, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.997,566.702]", + "rotation": 180, + "y": 566.702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 566.702, + "ydirAdj": 471.997 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,569.792]", + "rotation": 180, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 569.792, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,575.291]", + "rotation": 180, + "y": 575.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 575.291, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,580.791]", + "rotation": 180, + "y": 580.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 580.791, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,586.29]", + "rotation": 180, + "y": 586.29, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.29, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,591.789]", + "rotation": 180, + "y": 591.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 591.789, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,597.288]", + "rotation": 180, + "y": 597.288, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 597.288, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,605.197]", + "rotation": 180, + "y": 605.197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 605.197, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,608.91]", + "rotation": 180, + "y": 608.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 608.91, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,613.786]", + "rotation": 180, + "y": 613.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 613.786, + "ydirAdj": 471.912 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.912,619.313]", + "rotation": 180, + "y": 619.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010650635, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 619.313, + "ydirAdj": 471.912 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.798,627.789]", + "rotation": 180, + "y": 627.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 627.789, + "ydirAdj": 471.798 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.798,632.608]", + "rotation": 180, + "y": 632.608, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 632.608, + "ydirAdj": 471.798 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.798,638.391]", + "rotation": 180, + "y": 638.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 638.391, + "ydirAdj": 471.798 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.798,643.294]", + "rotation": 180, + "y": 643.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 643.294, + "ydirAdj": 471.798 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,471.798,646.413]", + "rotation": 180, + "y": 646.413, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047912598, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 646.413, + "ydirAdj": 471.798 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 63, + "text": "Text with 0° Text with Highlights 1. Highlight: YellowHighlight0GradP 2. Highlight: GreenHighlight0GradP 3. Highlight: BlueHighlight0GradP 4. Highlight: RedHighlight0GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 408.189, + "y": 662.598 + }, + "width": 168.87344, + "height": 71.385376, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 408.189, + "maxX": 577.06244, + "minY": 662.598, + "maxY": 733.9834, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.811,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 408.189, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.02524,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 414.97476, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.14212,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 419.85788, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.64313,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 425.35687, + "ydirAdj": 66.104004 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,180.7592,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 431.24078, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.86264,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 439.13736, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.7722,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 442.22778, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,166.68176,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 445.31824, + "ydirAdj": 66.104004 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.40028,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 453.59973, + "ydirAdj": 66.104004 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,152.90129,66.104]", + "rotation": 180, + "y": 66.104004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 459.0987, + "ydirAdj": 66.104004 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.811,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 408.189, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.02524,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 414.97476, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.14212,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 419.85788, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,186.64313,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 425.35687, + "ydirAdj": 78.80298 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,180.7592,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 431.24078, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.86264,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 439.13736, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.7722,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 442.22778, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,166.68176,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 445.31824, + "ydirAdj": 78.80298 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.40028,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 453.59973, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.50372,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 461.49628, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,147.3143,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 464.6857, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,141.8153,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 470.1847, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,136.31631,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 475.6837, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,133.22588,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 478.7741, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,130.03645,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 481.96356, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,124.53745,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 487.46255, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,119.03845,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 492.96155, + "ydirAdj": 78.80298 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,115.94801,78.803]", + "rotation": 180, + "y": 78.80298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278221, + "heightDir": 6.087393, + "widthDirAdj": 4.278221, + "dir": 180.0, + "xdirAdj": 496.052, + "ydirAdj": 78.80298 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.811,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.189, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.22403,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 413.77597, + "ydirAdj": 91.38898 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.73604,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 419.26398, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.83948,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 427.16052, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,181.74904,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 430.25098, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.25005,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 435.74994, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.75105,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 441.24896, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.56163,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 444.43835, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.47119,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 447.5288, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.9722,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 453.0278, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,153.4732,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 458.5268, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.28378,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 461.71622, + "ydirAdj": 91.38898 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,144.39986,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 467.60016, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,136.5033,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 475.4967, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,131.62018,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 480.37982, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,128.52974,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 483.47028, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,125.4393,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 486.5607, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,119.9403,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 492.0597, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,111.95575,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 500.04425, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,104.05918,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 507.94083, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,100.96874,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 511.03125, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,95.46974,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 516.5303, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,89.97074,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 522.02924, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,86.78132,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 525.2187, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,83.69088,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 528.30914, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,78.19188,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 533.8081, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,72.69288,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 539.3071, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,69.60244,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 542.3976, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,64.01546,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 180.0, + "xdirAdj": 547.98456, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,56.118893,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623344, + "heightDir": 6.087393, + "widthDirAdj": 3.6623344, + "dir": 180.0, + "xdirAdj": 555.8811, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,52.434563,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 559.5654, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,47.551453,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 564.44855, + "ydirAdj": 91.38898 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,42.052452,91.389]", + "rotation": 180, + "y": 91.38898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114887, + "heightDir": 6.087393, + "widthDirAdj": 6.114887, + "dir": 180.0, + "xdirAdj": 569.9476, + "ydirAdj": 91.38898 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.811,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.189, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.22403,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 413.77597, + "ydirAdj": 104.08801 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.73604,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 419.26398, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.83948,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 427.16052, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,181.74904,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 430.25098, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.25005,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 435.74994, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.75105,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 441.24896, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.56163,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 444.43835, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.47119,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 447.5288, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.9722,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 453.0278, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,153.4732,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 458.5268, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.28378,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 461.71622, + "ydirAdj": 104.08801 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,144.39986,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 467.60016, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,136.5033,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 475.4967, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,132.81895,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 479.18103, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,127.93584,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 484.06415, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,123.05272,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 488.94727, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,117.55372,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 494.4463, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,109.65715,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 502.34283, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,106.46773,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 505.5323, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,100.96873,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 511.03128, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,95.46973,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 516.5303, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,92.37929,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 519.6207, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,89.189865,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 522.8101, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,83.690865,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 528.30914, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,78.191864,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 533.8081, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,75.101425,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 536.89856, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,69.602425,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 180.0, + "xdirAdj": 542.3976, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,61.617878,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623344, + "heightDir": 6.087393, + "widthDirAdj": 3.6623344, + "dir": 180.0, + "xdirAdj": 550.38214, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,57.933548,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 554.06647, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,53.050438,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 558.9496, + "ydirAdj": 104.08801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,47.551437,104.088]", + "rotation": 180, + "y": 104.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114887, + "heightDir": 6.087393, + "widthDirAdj": 6.114887, + "dir": 180.0, + "xdirAdj": 564.44855, + "ydirAdj": 104.08801 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.811,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.189, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.22403,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 413.77597, + "ydirAdj": 116.70203 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.73604,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 419.26398, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.83948,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 427.16052, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,181.74904,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 430.25098, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.25005,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 435.74994, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.75105,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 441.24896, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.56163,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 444.43835, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.47119,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 447.5288, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.9722,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 453.0278, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,153.4732,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 458.5268, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.28378,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 461.71622, + "ydirAdj": 116.70203 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,144.39986,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.3246613, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 467.60016, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,137.0972,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 474.9028, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,134.00676,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 477.99323, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,128.50777,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 483.49225, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,123.62465,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 488.37537, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,115.6401,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 496.3599, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,112.54966,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 499.45035, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,107.05066,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 504.94934, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,101.55166,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 510.44833, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,98.46122,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 513.53876, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,95.37078,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 516.6292, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,89.7838,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 522.2162, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,84.2848,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 527.7152, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,81.19436,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 530.80566, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,75.69536,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 536.3046, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,67.79879,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087393, + "widthDirAdj": 3.6623306, + "dir": 180.0, + "xdirAdj": 544.20123, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,64.01548,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 547.9845, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,59.13237,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 552.8676, + "ydirAdj": 116.70203 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,53.63337,116.702]", + "rotation": 180, + "y": 116.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114887, + "heightDir": 6.087393, + "widthDirAdj": 6.114887, + "dir": 180.0, + "xdirAdj": 558.36664, + "ydirAdj": 116.70203 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.811,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.189, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.22403,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 413.77597, + "ydirAdj": 129.40198 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.73604,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 419.26398, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.83948,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 427.16052, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,181.74904,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 430.25098, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.25005,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 435.74994, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,170.75105,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 441.24896, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.56163,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 444.43835, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.47119,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 447.5288, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,158.9722,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 453.0278, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,153.4732,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 458.5268, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,150.28378,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 461.71622, + "ydirAdj": 129.40198 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,144.39986,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246613, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 467.60016, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,137.0972,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 474.9028, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,132.21408,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 479.78592, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,126.71508,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 485.2849, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,118.81851,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 493.1815, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,115.62909,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 496.3709, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,110.13009,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 501.8699, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,104.63109,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 507.3689, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,101.54065,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 510.45935, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,98.45021,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 513.5498, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,92.95121,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 519.04877, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,87.36423,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 524.63574, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,84.27379,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 527.7262, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,78.77479,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 180.0, + "xdirAdj": 533.2252, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,70.87822,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087393, + "widthDirAdj": 3.6623306, + "dir": 180.0, + "xdirAdj": 541.12177, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,67.19389,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721123, + "heightDir": 6.087393, + "widthDirAdj": 4.8721123, + "dir": 180.0, + "xdirAdj": 544.8061, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,62.2008,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 180.0, + "xdirAdj": 549.7992, + "ydirAdj": 129.40198 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,56.7018,129.402]", + "rotation": 180, + "y": 129.40198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114887, + "heightDir": 6.087393, + "widthDirAdj": 6.114887, + "dir": 180.0, + "xdirAdj": 555.2982, + "ydirAdj": 129.40198 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 64, + "text": "Text with 180° Text with Highlights 1. Highlight: YellowHighlight180GradP 2. Highlight: GreenHighlight180GradP 3. Highlight: BlueHighlight180GradP 4. Highlight: RedHighlight180GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 12.614, + "y": 360.992 + }, + "width": 179.84944, + "height": 71.300385, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 12.614, + "maxX": 192.46344, + "minY": 360.992, + "maxY": 432.2924, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.614,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087803, + "heightDir": 6.087393, + "widthDirAdj": 6.7087803, + "dir": 0.0, + "xdirAdj": 12.614, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,19.311783,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872114, + "heightDir": 6.087393, + "widthDirAdj": 4.872114, + "dir": 0.0, + "xdirAdj": 19.311783, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,24.194895,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 24.194895, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,29.693895,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 0.0, + "xdirAdj": 29.693895, + "ydirAdj": 367.795 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,35.577824,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 35.577824, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,43.47439,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 43.47439, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,46.564827,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 46.564827, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,49.655266,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 49.655266, + "ydirAdj": 367.795 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.93676,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 57.93676, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,63.523743,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 63.523743, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,69.02274,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 69.02274, + "ydirAdj": 367.795 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,74.52174,424.205]", + "rotation": 180, + "y": 424.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 0.0, + "xdirAdj": 74.52174, + "ydirAdj": 367.795 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.614,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087803, + "heightDir": 6.087393, + "widthDirAdj": 6.7087803, + "dir": 0.0, + "xdirAdj": 12.614, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,19.311783,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872114, + "heightDir": 6.087393, + "widthDirAdj": 4.872114, + "dir": 0.0, + "xdirAdj": 19.311783, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,24.194895,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 24.194895, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,29.693895,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464458, + "heightDir": 6.087393, + "widthDirAdj": 3.0464458, + "dir": 0.0, + "xdirAdj": 29.693895, + "ydirAdj": 380.409 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,35.577824,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 35.577824, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,43.47439,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 43.47439, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,46.564827,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 46.564827, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,49.655266,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 49.655266, + "ydirAdj": 380.409 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.93676,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 57.93676, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,65.92131,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 65.92131, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,69.01175,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 69.01175, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,74.51075,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 74.51075, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,80.00975,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 80.00975, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,83.10019,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 83.10019, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,86.28961,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 86.28961, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,91.78861,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 91.78861, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,97.28761,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 97.28761, + "ydirAdj": 380.409 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,100.37805,411.591]", + "rotation": 180, + "y": 411.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.278221, + "heightDir": 6.087393, + "widthDirAdj": 4.278221, + "dir": 0.0, + "xdirAdj": 100.37805, + "ydirAdj": 380.409 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.614,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 12.614, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,18.113,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495003, + "heightDir": 6.087393, + "widthDirAdj": 2.7495003, + "dir": 0.0, + "xdirAdj": 18.113, + "ydirAdj": 393.109 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,23.601002,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 23.601002, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,31.497566,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 31.497566, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,34.588005,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 34.588005, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,40.174988,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 40.174988, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,45.67399,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 45.67399, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,48.764427,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 48.764427, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,51.854866,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 51.854866, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.353867,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 57.353867, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,62.94085,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 62.94085, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,66.03129,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 66.03129, + "ydirAdj": 393.109 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,71.915215,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 71.915215, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,79.81178,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 79.81178, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,84.6949,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 84.6949, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,87.78534,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 87.78534, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,90.87578,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 90.87578, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,96.37478,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 96.37478, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,104.35933,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 104.35933, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,112.2559,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 112.2559, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,115.34634,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 115.34634, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,120.84534,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 120.84534, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,126.43232,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464401, + "heightDir": 6.087393, + "widthDirAdj": 3.0464401, + "dir": 0.0, + "xdirAdj": 126.43232, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,129.52275,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 129.52275, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,132.61319,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 132.61319, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,138.11218,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 138.11218, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,143.61118,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 143.61118, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,146.70161,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 146.70161, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,152.28859,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 152.28859, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,157.78758,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 157.78758, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,163.28658,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 163.28658, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,171.18314,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 171.18314, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,174.96645,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 174.96645, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,179.84956,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 179.84956, + "ydirAdj": 393.109 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,185.34856,398.891]", + "rotation": 180, + "y": 398.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 0.0, + "xdirAdj": 185.34856, + "ydirAdj": 393.109 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.614,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 12.614, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,18.113,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495003, + "heightDir": 6.087393, + "widthDirAdj": 2.7495003, + "dir": 0.0, + "xdirAdj": 18.113, + "ydirAdj": 405.694 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,23.601002,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 23.601002, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,31.497566,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 31.497566, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,34.588005,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 34.588005, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,40.174988,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 40.174988, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,45.67399,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 45.67399, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,48.764427,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 48.764427, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,51.854866,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 51.854866, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.353867,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 57.353867, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,62.94085,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 62.94085, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,66.03129,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 66.03129, + "ydirAdj": 405.694 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,71.915215,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 71.915215, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,79.81178,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087393, + "widthDirAdj": 3.6623306, + "dir": 0.0, + "xdirAdj": 79.81178, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,83.49611,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 83.49611, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,88.37923,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 88.37923, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,93.262344,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 93.262344, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,98.84933,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 98.84933, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,106.745895,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 106.745895, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,109.836334,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 109.836334, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,115.335335,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 115.335335, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,120.834335,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 120.834335, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,124.02376,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 124.02376, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,127.1142,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 127.1142, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,132.61319,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 132.61319, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,138.11218,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 138.11218, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,141.20262,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 141.20262, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,146.70161,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 146.70161, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,152.28859,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 152.28859, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,157.78758,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 157.78758, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,165.68414,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 165.68414, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,169.36848,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 169.36848, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,174.36157,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 174.36157, + "ydirAdj": 405.694 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,179.86057,386.306]", + "rotation": 180, + "y": 386.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 0.0, + "xdirAdj": 179.86057, + "ydirAdj": 405.694 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.614,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 12.614, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,18.113,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495003, + "heightDir": 6.087393, + "widthDirAdj": 2.7495003, + "dir": 0.0, + "xdirAdj": 18.113, + "ydirAdj": 418.394 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,23.601002,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 23.601002, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,31.497566,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 31.497566, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,34.588005,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 34.588005, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,40.174988,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 40.174988, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,45.67399,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 45.67399, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,48.764427,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 48.764427, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,51.854866,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 51.854866, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.353867,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 57.353867, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,62.94085,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 62.94085, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,66.03129,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 66.03129, + "ydirAdj": 418.394 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,71.915215,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 0.0, + "xdirAdj": 71.915215, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,79.21789,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 79.21789, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,82.30833,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 82.30833, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,87.80733,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 87.80733, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,92.690445,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 92.690445, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,100.674995,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 100.674995, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,103.765434,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 103.765434, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,109.264435,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 109.264435, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,114.763435,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 114.763435, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,117.853874,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 117.853874, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,121.0433,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 121.0433, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,126.5423,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 126.5423, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,132.04129,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 132.04129, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,135.13173,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 135.13173, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,140.63072,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 140.63072, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,146.2177,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 146.2177, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,151.71669,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 151.71669, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,159.61325,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 159.61325, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,163.29759,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 163.29759, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,168.18071,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 168.18071, + "ydirAdj": 418.394 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,173.76768,373.606]", + "rotation": 180, + "y": 373.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 0.0, + "xdirAdj": 173.76768, + "ydirAdj": 418.394 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,12.614,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 12.614, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,18.113,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495003, + "heightDir": 6.087393, + "widthDirAdj": 2.7495003, + "dir": 0.0, + "xdirAdj": 18.113, + "ydirAdj": 431.008 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,23.601002,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405556, + "heightDir": 6.087393, + "widthDirAdj": 7.9405556, + "dir": 0.0, + "xdirAdj": 23.601002, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,31.497566,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 31.497566, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,34.588005,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 34.588005, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,40.174988,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 40.174988, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,45.67399,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 45.67399, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,48.764427,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 48.764427, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,51.854866,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 51.854866, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,57.353867,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 57.353867, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,62.94085,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 62.94085, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,66.03129,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 66.03129, + "ydirAdj": 431.008 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,71.915215,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 0.0, + "xdirAdj": 71.915215, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,79.21789,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 79.21789, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,84.101006,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 84.101006, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,89.600006,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 0.0, + "xdirAdj": 89.600006, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,97.496574,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 97.496574, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,100.686,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 100.686, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,106.185,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 106.185, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,111.684,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 111.684, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,114.77444,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 114.77444, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,117.864876,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 0.0, + "xdirAdj": 117.864876, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,123.45186,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 123.45186, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,128.95085,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 128.95085, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,132.04129,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 132.04129, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,137.54028,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 137.54028, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,143.03928,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 143.03928, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,148.62625,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 148.62625, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,156.52281,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 156.52281, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,160.20715,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 160.20715, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,165.09027,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 165.09027, + "ydirAdj": 431.008 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,170.58926,360.992]", + "rotation": 180, + "y": 360.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 0.0, + "xdirAdj": 170.58926, + "ydirAdj": 431.008 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 65, + "text": "Text with 270° Text with Highlights 1. Highlight: YellowHighlight270GradP 2. Highlight: GreenHighlight270GradP 3. Highlight: BlueHighlight270GradP 4. Highlight: RedHighlight270GradP Text with 0° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 284.202, + "y": 673.909 + }, + "width": 355.79465, + "height": 101.7724, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 284.202, + "maxX": 639.99664, + "minY": 673.909, + "maxY": 775.6814, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,468.113]", + "rotation": 180, + "y": 468.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011672974, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,474.009]", + "rotation": 180, + "y": 474.009, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008478165, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 474.009, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,478.913]", + "rotation": 180, + "y": 478.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.009569168, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 478.913, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,484.413]", + "rotation": 180, + "y": 484.413, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005300522, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 484.413, + "ydirAdj": 24.406006 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,490.195]", + "rotation": 180, + "y": 490.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 490.195, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,498.104]", + "rotation": 180, + "y": 498.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005300522, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 498.104, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,501.194]", + "rotation": 180, + "y": 501.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005300522, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 501.194, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,504.198]", + "rotation": 180, + "y": 504.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009569168, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 504.198, + "ydirAdj": 24.406006 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,512.504]", + "rotation": 180, + "y": 512.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009569168, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.504, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,518.003]", + "rotation": 180, + "y": 518.003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.009569168, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 518.003, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.406,523.502]", + "rotation": 180, + "y": 523.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009569168, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 523.502, + "ydirAdj": 24.406006 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,24.293,529.002]", + "rotation": 180, + "y": 529.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076351166, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 529.002, + "ydirAdj": 24.292969 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,468.113]", + "rotation": 180, + "y": 468.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011672974, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,473.896]", + "rotation": 180, + "y": 473.896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 473.896, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,478.8]", + "rotation": 180, + "y": 478.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 478.8, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,484.299]", + "rotation": 180, + "y": 484.299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 484.299, + "ydirAdj": 36.992004 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,490.11]", + "rotation": 180, + "y": 490.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 490.11, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,498.104]", + "rotation": 180, + "y": 498.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 498.104, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,501.109]", + "rotation": 180, + "y": 501.109, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 501.109, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,504.198]", + "rotation": 180, + "y": 504.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 504.198, + "ydirAdj": 36.992004 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,512.391]", + "rotation": 180, + "y": 512.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 512.391, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,520.413]", + "rotation": 180, + "y": 520.413, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 520.413, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.992,523.389]", + "rotation": 180, + "y": 523.389, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 523.389, + "ydirAdj": 36.992004 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,528.888]", + "rotation": 180, + "y": 528.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 528.888, + "ydirAdj": 36.906982 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,534.387]", + "rotation": 180, + "y": 534.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 534.387, + "ydirAdj": 36.906982 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,537.506]", + "rotation": 180, + "y": 537.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 537.506, + "ydirAdj": 36.906982 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,540.51]", + "rotation": 180, + "y": 540.51, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 540.51, + "ydirAdj": 36.906982 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,546.009]", + "rotation": 180, + "y": 546.009, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 546.009, + "ydirAdj": 36.906982 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,551.509]", + "rotation": 180, + "y": 551.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 551.509, + "ydirAdj": 36.906982 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,36.907,554.598]", + "rotation": 180, + "y": 554.598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0074424744, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 554.598, + "ydirAdj": 36.906982 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,468.113]", + "rotation": 180, + "y": 468.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,473.499]", + "rotation": 180, + "y": 473.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 473.499, + "ydirAdj": 49.69098 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,478.998]", + "rotation": 180, + "y": 478.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 478.998, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,486.992]", + "rotation": 180, + "y": 486.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.992, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,489.997]", + "rotation": 180, + "y": 489.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 489.997, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,495.496]", + "rotation": 180, + "y": 495.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 495.496, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,500.995]", + "rotation": 180, + "y": 500.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 500.995, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,504.113]", + "rotation": 180, + "y": 504.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 504.113, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,507.09]", + "rotation": 180, + "y": 507.09, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 507.09, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,512.589]", + "rotation": 180, + "y": 512.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.589, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,518.088]", + "rotation": 180, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.088, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,521.206]", + "rotation": 180, + "y": 521.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 521.206, + "ydirAdj": 49.69098 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,527.102]", + "rotation": 180, + "y": 527.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 527.102, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,533.906]", + "rotation": 180, + "y": 533.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 533.906, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,538.809]", + "rotation": 180, + "y": 538.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 538.809, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,541.786]", + "rotation": 180, + "y": 541.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 541.786, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,544.904]", + "rotation": 180, + "y": 544.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 544.904, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,550.403]", + "rotation": 180, + "y": 550.403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 550.403, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,558.312]", + "rotation": 180, + "y": 558.312, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 558.312, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,566.306]", + "rotation": 180, + "y": 566.306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 566.306, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,569.31]", + "rotation": 180, + "y": 569.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 569.31, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,574.809]", + "rotation": 180, + "y": 574.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 574.809, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,580.309]", + "rotation": 180, + "y": 580.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 580.309, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.691,583.398]", + "rotation": 180, + "y": 583.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 583.398, + "ydirAdj": 49.69098 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,586.403]", + "rotation": 180, + "y": 586.403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.403, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,591.902]", + "rotation": 180, + "y": 591.902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 591.902, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,597.402]", + "rotation": 180, + "y": 597.402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 597.402, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,600.491]", + "rotation": 180, + "y": 600.491, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 600.491, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,605.991]", + "rotation": 180, + "y": 605.991, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 605.991, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,611.49]", + "rotation": 180, + "y": 611.49, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 611.49, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,616.989]", + "rotation": 180, + "y": 616.989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 616.989, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,624.898]", + "rotation": 180, + "y": 624.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 624.898, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,628.611]", + "rotation": 180, + "y": 628.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 628.611, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,633.487]", + "rotation": 180, + "y": 633.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 633.487, + "ydirAdj": 49.606018 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,49.606,638.986]", + "rotation": 180, + "y": 638.986, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010639191, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 638.986, + "ydirAdj": 49.606018 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,468.113]", + "rotation": 180, + "y": 468.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,473.499]", + "rotation": 180, + "y": 473.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 473.499, + "ydirAdj": 62.30603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,478.998]", + "rotation": 180, + "y": 478.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 478.998, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,486.907]", + "rotation": 180, + "y": 486.907, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.907, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,489.997]", + "rotation": 180, + "y": 489.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 489.997, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,495.496]", + "rotation": 180, + "y": 495.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 495.496, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,500.995]", + "rotation": 180, + "y": 500.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 500.995, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,504.0]", + "rotation": 180, + "y": 504.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 504.0, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,507.09]", + "rotation": 180, + "y": 507.09, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 507.09, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,512.589]", + "rotation": 180, + "y": 512.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.589, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,518.088]", + "rotation": 180, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.088, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,521.206]", + "rotation": 180, + "y": 521.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 521.206, + "ydirAdj": 62.30603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,527.102]", + "rotation": 180, + "y": 527.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 527.102, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,534.898]", + "rotation": 180, + "y": 534.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 534.898, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,538.611]", + "rotation": 180, + "y": 538.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 538.611, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,543.487]", + "rotation": 180, + "y": 543.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 543.487, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,548.391]", + "rotation": 180, + "y": 548.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 548.391, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,553.89]", + "rotation": 180, + "y": 553.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 553.89, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,561.798]", + "rotation": 180, + "y": 561.798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 561.798, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,564.888]", + "rotation": 180, + "y": 564.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 564.888, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,570.387]", + "rotation": 180, + "y": 570.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 570.387, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,575.887]", + "rotation": 180, + "y": 575.887, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 575.887, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,578.891]", + "rotation": 180, + "y": 578.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 578.891, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.306,582.009]", + "rotation": 180, + "y": 582.009, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 582.009, + "ydirAdj": 62.30603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,587.509]", + "rotation": 180, + "y": 587.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 587.509, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,593.008]", + "rotation": 180, + "y": 593.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 593.008, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,596.013]", + "rotation": 180, + "y": 596.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 596.013, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,601.512]", + "rotation": 180, + "y": 601.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 601.512, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,607.011]", + "rotation": 180, + "y": 607.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 607.011, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,612.51]", + "rotation": 180, + "y": 612.51, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 612.51, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,620.504]", + "rotation": 180, + "y": 620.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 620.504, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,624.104]", + "rotation": 180, + "y": 624.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 624.104, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,629.008]", + "rotation": 180, + "y": 629.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 629.008, + "ydirAdj": 62.192017 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,62.192,634.507]", + "rotation": 180, + "y": 634.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010639191, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 634.507, + "ydirAdj": 62.192017 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,468.113]", + "rotation": 180, + "y": 468.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,473.499]", + "rotation": 180, + "y": 473.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 473.499, + "ydirAdj": 75.005005 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,478.998]", + "rotation": 180, + "y": 478.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 478.998, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,486.992]", + "rotation": 180, + "y": 486.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.992, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,489.997]", + "rotation": 180, + "y": 489.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 489.997, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,495.496]", + "rotation": 180, + "y": 495.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 495.496, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,500.995]", + "rotation": 180, + "y": 500.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 500.995, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,504.113]", + "rotation": 180, + "y": 504.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 504.113, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,507.09]", + "rotation": 180, + "y": 507.09, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 507.09, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,512.589]", + "rotation": 180, + "y": 512.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.589, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,518.088]", + "rotation": 180, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.088, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,521.206]", + "rotation": 180, + "y": 521.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 521.206, + "ydirAdj": 75.005005 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,527.102]", + "rotation": 180, + "y": 527.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.012748718, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 527.102, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,534.387]", + "rotation": 180, + "y": 534.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 534.387, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,537.392]", + "rotation": 180, + "y": 537.392, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 537.392, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,542.891]", + "rotation": 180, + "y": 542.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 542.891, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,547.795]", + "rotation": 180, + "y": 547.795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 547.795, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,555.704]", + "rotation": 180, + "y": 555.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 555.704, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,558.794]", + "rotation": 180, + "y": 558.794, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 558.794, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,564.293]", + "rotation": 180, + "y": 564.293, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 564.293, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,569.792]", + "rotation": 180, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 569.792, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,572.91]", + "rotation": 180, + "y": 572.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 572.91, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,575.887]", + "rotation": 180, + "y": 575.887, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 575.887, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,75.005,581.386]", + "rotation": 180, + "y": 581.386, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 581.386, + "ydirAdj": 75.005005 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,586.913]", + "rotation": 180, + "y": 586.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 586.913, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,590.003]", + "rotation": 180, + "y": 590.003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 590.003, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,595.502]", + "rotation": 180, + "y": 595.502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 595.502, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,601.002]", + "rotation": 180, + "y": 601.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 601.002, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,606.501]", + "rotation": 180, + "y": 606.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 606.501, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,614.409]", + "rotation": 180, + "y": 614.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0063705444, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 614.409, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,618.094]", + "rotation": 180, + "y": 618.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 618.094, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,622.998]", + "rotation": 180, + "y": 622.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 622.998, + "ydirAdj": 74.89099 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,74.891,628.498]", + "rotation": 180, + "y": 628.498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010643005, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 628.498, + "ydirAdj": 74.89099 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,468.113]", + "rotation": 180, + "y": 468.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,473.499]", + "rotation": 180, + "y": 473.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 473.499, + "ydirAdj": 87.591 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,478.998]", + "rotation": 180, + "y": 478.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 478.998, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,486.907]", + "rotation": 180, + "y": 486.907, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.907, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,489.997]", + "rotation": 180, + "y": 489.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 489.997, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,495.496]", + "rotation": 180, + "y": 495.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 495.496, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,500.995]", + "rotation": 180, + "y": 500.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 500.995, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,504.0]", + "rotation": 180, + "y": 504.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 504.0, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,507.09]", + "rotation": 180, + "y": 507.09, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 507.09, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,512.589]", + "rotation": 180, + "y": 512.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.589, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,518.088]", + "rotation": 180, + "y": 518.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.088, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,521.206]", + "rotation": 180, + "y": 521.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 521.206, + "ydirAdj": 87.591 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,527.102]", + "rotation": 180, + "y": 527.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012748718, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 90.0, + "xdirAdj": 527.102, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,534.302]", + "rotation": 180, + "y": 534.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 534.302, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,539.206]", + "rotation": 180, + "y": 539.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 539.206, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,544.706]", + "rotation": 180, + "y": 544.706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 544.706, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,552.586]", + "rotation": 180, + "y": 552.586, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 552.586, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,555.704]", + "rotation": 180, + "y": 555.704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 555.704, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,561.203]", + "rotation": 180, + "y": 561.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 561.203, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,566.702]", + "rotation": 180, + "y": 566.702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 566.702, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,569.792]", + "rotation": 180, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 569.792, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,572.797]", + "rotation": 180, + "y": 572.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 572.797, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,578.296]", + "rotation": 180, + "y": 578.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 578.296, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.591,583.795]", + "rotation": 180, + "y": 583.795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 583.795, + "ydirAdj": 87.591 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,586.913]", + "rotation": 180, + "y": 586.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 586.913, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,592.413]", + "rotation": 180, + "y": 592.413, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 592.413, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,597.912]", + "rotation": 180, + "y": 597.912, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 597.912, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,603.411]", + "rotation": 180, + "y": 603.411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 603.411, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,611.291]", + "rotation": 180, + "y": 611.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0063705444, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 611.291, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,615.005]", + "rotation": 180, + "y": 615.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 615.005, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,619.909]", + "rotation": 180, + "y": 619.909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 619.909, + "ydirAdj": 87.50598 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,87.506,625.408]", + "rotation": 180, + "y": 625.408, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010643005, + "heightDir": 6.087402, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 625.408, + "ydirAdj": 87.50598 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,327.798,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 284.202, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,321.10022,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 290.89978, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,316.21713,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 295.78287, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,310.71814,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 301.28186, + "ydirAdj": 92.80603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,304.83417,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 307.16583, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,296.93762,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 315.06238, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,293.84717,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 318.15283, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.65775,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 321.34225, + "ydirAdj": 92.80603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.46423,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 329.53577, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,276.87726,92.806]", + "rotation": 180, + "y": 92.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 180.0, + "xdirAdj": 335.12274, + "ydirAdj": 92.80603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,327.798,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.1148987, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 284.202, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,321.6941,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 290.3059, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,316.1951,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 295.8049, + "ydirAdj": 105.591 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,309.71725,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 302.28275, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,306.6268,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.545441, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 180.0, + "xdirAdj": 305.3732, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,298.03735,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 313.96265, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,292.45038,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 319.54962, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,286.9514,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 325.0486, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,283.26706,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 328.73294, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,280.1766,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 331.8234, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,275.29352,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 336.70648, + "ydirAdj": 105.591 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,267.01202,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 344.98798, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.22873,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 348.77127, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,258.34564,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 353.65436, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,252.84665,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 359.15335, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,247.96353,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 364.03647, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.08041,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 368.9196, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.98997,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 372.01, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.80055,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 375.19946, + "ydirAdj": 105.591 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,231.30156,105.591]", + "rotation": 180, + "y": 105.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 380.69843, + "ydirAdj": 105.591 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,327.798,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 284.202, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,319.90146,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 292.09854, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,315.01837,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 296.98163, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,311.33405,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 300.66595, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,306.34097,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 305.65903, + "ydirAdj": 118.091 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,300.556,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 311.444, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,295.56293,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 316.43707, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.06393,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 321.93607, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,284.56494,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 327.43506, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,279.06595,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 332.93405, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,275.9755,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 336.0245, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,270.98242,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 341.01758, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,267.89197,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 344.10803, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,264.8015,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 347.1985, + "ydirAdj": 118.091 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.30252,118.091]", + "rotation": 180, + "y": 118.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 352.69748, + "ydirAdj": 118.091 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 66, + "text": "Text with 180° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 220.11, + "y": 398.296 + }, + "width": 102.98436, + "height": 33.40042, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 220.11, + "maxX": 323.09436, + "minY": 398.296, + "maxY": 431.6964, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,220.11,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 0.0, + "xdirAdj": 220.11, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,226.80779,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 226.80779, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,231.6909,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 231.6909, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,237.1899,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 237.1899, + "ydirAdj": 368.391 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,243.07382,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 243.07382, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,250.97038,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 250.97038, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,254.06082,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 254.06082, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,257.15128,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 257.15128, + "ydirAdj": 368.391 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,265.43277,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 265.43277, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,270.93176,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 270.93176, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,276.51874,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 276.51874, + "ydirAdj": 368.391 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,282.01773,423.609]", + "rotation": 180, + "y": 423.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 282.01773, + "ydirAdj": 368.391 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,220.11,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 0.0, + "xdirAdj": 220.11, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,226.21388,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 226.21388, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,231.71288,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 231.71288, + "ydirAdj": 381.09 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,238.1907,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 238.1907, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,241.28114,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.545441, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 0.0, + "xdirAdj": 241.28114, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,249.87057,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 249.87057, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,255.45755,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 255.45755, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,260.95654,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 260.95654, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,264.64087,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 264.64087, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,267.73132,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 267.73132, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,272.6144,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 272.6144, + "ydirAdj": 381.09 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,280.90692,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 280.90692, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,284.59125,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 284.59125, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,289.47433,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 289.47433, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,295.0613,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 295.0613, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,299.9444,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 299.9444, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,304.82748,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 304.82748, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,307.91794,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 307.91794, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,311.0084,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 311.0084, + "ydirAdj": 381.09 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,316.59537,410.91]", + "rotation": 180, + "y": 410.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 316.59537, + "ydirAdj": 381.09 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,220.11,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 220.11, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,228.00656,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 228.00656, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,232.88968,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 0.0, + "xdirAdj": 232.88968, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,236.57402,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 236.57402, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,241.45714,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 241.45714, + "ydirAdj": 393.704 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,247.34106,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 0.0, + "xdirAdj": 247.34106, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,252.22418,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 252.22418, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,257.81116,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 257.81116, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,263.31015,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 263.31015, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,268.80914,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 268.80914, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,271.8996,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 271.8996, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,276.78268,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 276.78268, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,279.9721,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 279.9721, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.06256,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 283.06256, + "ydirAdj": 393.704 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,288.56155,398.296]", + "rotation": 180, + "y": 398.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 288.56155, + "ydirAdj": 393.704 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 67, + "text": "Text with 270° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 501.987, + "y": 509.698 + }, + "width": 96.82056, + "height": 33.40039, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 501.987, + "maxX": 598.80756, + "minY": 509.698, + "maxY": 543.0984, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,501.987]", + "rotation": 180, + "y": 501.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011688232, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 501.987, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,507.912]", + "rotation": 180, + "y": 507.912, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 507.912, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,512.787]", + "rotation": 180, + "y": 512.787, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 512.787, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,518.287]", + "rotation": 180, + "y": 518.287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 518.287, + "ydirAdj": 256.989 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,524.098]", + "rotation": 180, + "y": 524.098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 524.098, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,532.006]", + "rotation": 180, + "y": 532.006, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 532.006, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,535.096]", + "rotation": 180, + "y": 535.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 535.096, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,538.101]", + "rotation": 180, + "y": 538.101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 538.101, + "ydirAdj": 256.989 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,546.406]", + "rotation": 180, + "y": 546.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 546.406, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,551.906]", + "rotation": 180, + "y": 551.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 551.906, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.989,557.405]", + "rotation": 180, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 557.405, + "ydirAdj": 256.989 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,256.904,562.904]", + "rotation": 180, + "y": 562.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076293945, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 562.904, + "ydirAdj": 256.904 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,501.987]", + "rotation": 180, + "y": 501.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.010650635, + "heightDir": 6.087402, + "widthDirAdj": 6.1148987, + "dir": 90.0, + "xdirAdj": 501.987, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,507.997]", + "rotation": 180, + "y": 507.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 507.997, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,513.496]", + "rotation": 180, + "y": 513.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 513.496, + "ydirAdj": 269.603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,519.902]", + "rotation": 180, + "y": 519.902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 519.902, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,522.992]", + "rotation": 180, + "y": 522.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.014862061, + "heightDir": 6.087402, + "widthDirAdj": 8.545471, + "dir": 90.0, + "xdirAdj": 522.992, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,531.496]", + "rotation": 180, + "y": 531.496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 531.496, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,536.995]", + "rotation": 180, + "y": 536.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 536.995, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,542.494]", + "rotation": 180, + "y": 542.494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 542.494, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,546.208]", + "rotation": 180, + "y": 546.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 546.208, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,549.298]", + "rotation": 180, + "y": 549.298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 549.298, + "ydirAdj": 269.603 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.603,554.088]", + "rotation": 180, + "y": 554.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 554.088, + "ydirAdj": 269.603 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,562.394]", + "rotation": 180, + "y": 562.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 562.394, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,566.107]", + "rotation": 180, + "y": 566.107, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 566.107, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,570.898]", + "rotation": 180, + "y": 570.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 570.898, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,576.397]", + "rotation": 180, + "y": 576.397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 576.397, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,581.301]", + "rotation": 180, + "y": 581.301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 581.301, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,586.205]", + "rotation": 180, + "y": 586.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 586.205, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,589.294]", + "rotation": 180, + "y": 589.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 589.294, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,592.299]", + "rotation": 180, + "y": 592.299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 592.299, + "ydirAdj": 269.49 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,269.49,597.798]", + "rotation": 180, + "y": 597.798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 597.798, + "ydirAdj": 269.49 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,501.987]", + "rotation": 180, + "y": 501.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 501.987, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,509.896]", + "rotation": 180, + "y": 509.896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 509.896, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,514.8]", + "rotation": 180, + "y": 514.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 514.8, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,518.4]", + "rotation": 180, + "y": 518.4, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 518.4, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,523.304]", + "rotation": 180, + "y": 523.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 523.304, + "ydirAdj": 282.302 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,529.087]", + "rotation": 180, + "y": 529.087, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 529.087, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,533.991]", + "rotation": 180, + "y": 533.991, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 533.991, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,539.49]", + "rotation": 180, + "y": 539.49, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 539.49, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,544.989]", + "rotation": 180, + "y": 544.989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 544.989, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,550.488]", + "rotation": 180, + "y": 550.488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 550.488, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,553.606]", + "rotation": 180, + "y": 553.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 553.606, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.302,558.397]", + "rotation": 180, + "y": 558.397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 558.397, + "ydirAdj": 282.302 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.189,561.487]", + "rotation": 180, + "y": 561.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 561.487, + "ydirAdj": 282.189 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.189,564.605]", + "rotation": 180, + "y": 564.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 564.605, + "ydirAdj": 282.189 + }, + { + "textMatrix": "[-0.01913652,10.998,-10.998,-0.01913652,282.189,570.104]", + "rotation": 180, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 570.104, + "ydirAdj": 282.189 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 68, + "text": "Text Text 1. 2. 3. 4.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 472.11, + "y": 213.90198 + }, + "width": 18.098328, + "height": 71.2724, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 472.11, + "maxX": 490.2083, + "minY": 213.90198, + "maxY": 285.17438, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,319.89]", + "rotation": 180, + "y": 319.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011672974, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 472.11, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,313.313]", + "rotation": 180, + "y": 313.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 478.687, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,308.296]", + "rotation": 180, + "y": 308.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 483.704, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,302.797]", + "rotation": 180, + "y": 302.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 489.203, + "ydirAdj": 514.913 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,319.89]", + "rotation": 180, + "y": 319.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011672974, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 472.11, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,313.313]", + "rotation": 180, + "y": 313.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 478.687, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,308.296]", + "rotation": 180, + "y": 308.296, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 483.704, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,302.797]", + "rotation": 180, + "y": 302.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 489.203, + "ydirAdj": 527.499 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,319.89]", + "rotation": 180, + "y": 319.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 472.11, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,314.391]", + "rotation": 180, + "y": 314.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 477.609, + "ydirAdj": 540.198 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,319.89]", + "rotation": 180, + "y": 319.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 472.11, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 552.813 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,319.89]", + "rotation": 180, + "y": 319.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 472.11, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 565.512 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,319.89]", + "rotation": 180, + "y": 319.89, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 472.11, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,314.391]", + "rotation": 180, + "y": 314.391, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047836304, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 477.609, + "ydirAdj": 578.098 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 69, + "text": "Text Text Dict-Annotation: Rule-Annotation: RuleAnnotation90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 477.496, + "y": 591.39197 + }, + "width": 104.70163, + "height": 58.6864, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 477.496, + "maxX": 582.19763, + "minY": 591.39197, + "maxY": 650.07837, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011688232, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,307.899]", + "rotation": 180, + "y": 307.899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 484.101, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,302.91]", + "rotation": 180, + "y": 302.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 489.09, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,297.411]", + "rotation": 180, + "y": 297.411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 494.589, + "ydirAdj": 150.009 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011688232, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,307.786]", + "rotation": 180, + "y": 307.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 484.214, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,302.91]", + "rotation": 180, + "y": 302.91, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 489.09, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,297.411]", + "rotation": 180, + "y": 297.411, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 494.589, + "ydirAdj": 162.595 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,306.709]", + "rotation": 180, + "y": 306.709, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 485.291, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,303.506]", + "rotation": 180, + "y": 303.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 488.494, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,298.602]", + "rotation": 180, + "y": 298.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 493.398, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,295.512]", + "rotation": 180, + "y": 295.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 496.488, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,291.798]", + "rotation": 180, + "y": 291.798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 500.202, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,283.805]", + "rotation": 180, + "y": 283.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 508.195, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,278.306]", + "rotation": 180, + "y": 278.30603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 513.694, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,272.806]", + "rotation": 180, + "y": 272.80603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 519.194, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,267.307]", + "rotation": 180, + "y": 267.307, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 524.693, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,264.189]", + "rotation": 180, + "y": 264.18896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 527.81104, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.706,259.2]", + "rotation": 180, + "y": 259.2, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 532.8, + "ydirAdj": 175.294 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,256.11]", + "rotation": 180, + "y": 256.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 535.89, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,252.992]", + "rotation": 180, + "y": 252.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 539.008, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,247.493]", + "rotation": 180, + "y": 247.49298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 544.507, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,241.994]", + "rotation": 180, + "y": 241.99402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 550.006, + "ydirAdj": 175.20901 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012756348, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,307.304]", + "rotation": 180, + "y": 307.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 484.696, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,301.691]", + "rotation": 180, + "y": 301.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.309, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,298.602]", + "rotation": 180, + "y": 298.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 493.398, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,293.698]", + "rotation": 180, + "y": 293.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 498.302, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,290.013]", + "rotation": 180, + "y": 290.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 501.987, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,282.104]", + "rotation": 180, + "y": 282.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 509.896, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,276.491]", + "rotation": 180, + "y": 276.49097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 515.50903, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,270.992]", + "rotation": 180, + "y": 270.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 521.008, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,265.493]", + "rotation": 180, + "y": 265.49304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 526.50696, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,262.403]", + "rotation": 180, + "y": 262.403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 529.597, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.091,257.499]", + "rotation": 180, + "y": 257.49902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 534.501, + "ydirAdj": 187.909 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.205,254.296]", + "rotation": 180, + "y": 254.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 537.704, + "ydirAdj": 187.79501 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.205,251.206]", + "rotation": 180, + "y": 251.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 540.794, + "ydirAdj": 187.79501 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.205,245.707]", + "rotation": 180, + "y": 245.70703, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 546.29297, + "ydirAdj": 187.79501 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,424.205,240.208]", + "rotation": 180, + "y": 240.20801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 551.792, + "ydirAdj": 187.79501 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,314.504]", + "rotation": 180, + "y": 314.504, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012756348, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 477.496, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,307.304]", + "rotation": 180, + "y": 307.304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 484.696, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,301.691]", + "rotation": 180, + "y": 301.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.309, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,298.602]", + "rotation": 180, + "y": 298.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 493.398, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,293.698]", + "rotation": 180, + "y": 293.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 498.302, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,285.789]", + "rotation": 180, + "y": 285.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 506.211, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,280.29]", + "rotation": 180, + "y": 280.29, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 511.71, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,274.791]", + "rotation": 180, + "y": 274.79102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 517.209, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,269.206]", + "rotation": 180, + "y": 269.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 522.794, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,266.088]", + "rotation": 180, + "y": 266.088, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 525.912, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,261.213]", + "rotation": 180, + "y": 261.213, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 530.787, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.392,258.094]", + "rotation": 180, + "y": 258.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 533.906, + "ydirAdj": 200.608 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,254.891]", + "rotation": 180, + "y": 254.89099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 537.109, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,249.392]", + "rotation": 180, + "y": 249.39197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 542.60803, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,243.893]", + "rotation": 180, + "y": 243.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 548.107, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,238.394]", + "rotation": 180, + "y": 238.39398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 553.606, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,232.894]", + "rotation": 180, + "y": 232.89398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 559.106, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,224.901]", + "rotation": 180, + "y": 224.901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 567.099, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,221.187]", + "rotation": 180, + "y": 221.18701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 570.813, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,216.312]", + "rotation": 180, + "y": 216.31201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 575.688, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,210.813]", + "rotation": 180, + "y": 210.81299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010650635, + "heightDir": 6.087402, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 581.187, + "ydirAdj": 200.49399 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 70, + "text": "Highlight: Highlight: Highlight: Highlight:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 482.995, + "y": 213.90198 + }, + "width": 43.497314, + "height": 45.987427, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 482.995, + "maxX": 526.4923, + "minY": 213.90198, + "maxY": 259.8894, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,309.005]", + "rotation": 180, + "y": 309.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 482.995, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,301.011]", + "rotation": 180, + "y": 301.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.989, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,297.893]", + "rotation": 180, + "y": 297.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 494.107, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,292.394]", + "rotation": 180, + "y": 292.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.606, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,286.894]", + "rotation": 180, + "y": 286.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 505.106, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,283.805]", + "rotation": 180, + "y": 283.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 508.195, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,280.602]", + "rotation": 180, + "y": 280.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 511.398, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,275.102]", + "rotation": 180, + "y": 275.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.898, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,269.603]", + "rotation": 180, + "y": 269.60303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 522.397, + "ydirAdj": 552.813 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.187,266.513]", + "rotation": 180, + "y": 266.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.487, + "ydirAdj": 552.813 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,309.005]", + "rotation": 180, + "y": 309.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 482.995, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,301.011]", + "rotation": 180, + "y": 301.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.989, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,297.893]", + "rotation": 180, + "y": 297.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 494.107, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,292.394]", + "rotation": 180, + "y": 292.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.606, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,286.894]", + "rotation": 180, + "y": 286.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 505.106, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,283.805]", + "rotation": 180, + "y": 283.805, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 508.195, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,280.602]", + "rotation": 180, + "y": 280.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 511.398, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,275.102]", + "rotation": 180, + "y": 275.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.898, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,269.603]", + "rotation": 180, + "y": 269.60303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 522.397, + "ydirAdj": 565.512 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.488,266.513]", + "rotation": 180, + "y": 266.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.487, + "ydirAdj": 565.512 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,308.891]", + "rotation": 180, + "y": 308.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 483.109, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,301.011]", + "rotation": 180, + "y": 301.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.989, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,297.893]", + "rotation": 180, + "y": 297.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 494.107, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,292.394]", + "rotation": 180, + "y": 292.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.606, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,286.894]", + "rotation": 180, + "y": 286.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 505.106, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,283.691]", + "rotation": 180, + "y": 283.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 508.309, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,280.602]", + "rotation": 180, + "y": 280.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 511.398, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,275.102]", + "rotation": 180, + "y": 275.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.898, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,269.603]", + "rotation": 180, + "y": 269.60303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 522.397, + "ydirAdj": 540.198 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.802,266.513]", + "rotation": 180, + "y": 266.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.487, + "ydirAdj": 540.198 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,308.891]", + "rotation": 180, + "y": 308.891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 483.109, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,301.011]", + "rotation": 180, + "y": 301.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 490.989, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,297.893]", + "rotation": 180, + "y": 297.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 494.107, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,292.394]", + "rotation": 180, + "y": 292.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 499.606, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,286.894]", + "rotation": 180, + "y": 286.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 505.106, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,283.691]", + "rotation": 180, + "y": 283.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 508.309, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,280.602]", + "rotation": 180, + "y": 280.602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 511.398, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,275.102]", + "rotation": 180, + "y": 275.102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.898, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,269.603]", + "rotation": 180, + "y": 269.60303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 522.397, + "ydirAdj": 578.098 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.902,266.513]", + "rotation": 180, + "y": 266.513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.487, + "ydirAdj": 578.098 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 71, + "text": "Text For Here:", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 484.214, + "y": 449.887 + }, + "width": 22.378326, + "height": 33.40042, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 484.214, + "maxX": 506.59232, + "minY": 449.887, + "maxY": 483.2874, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,307.786]", + "rotation": 180, + "y": 307.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011688232, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 484.214, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,301.209]", + "rotation": 180, + "y": 301.209, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 490.791, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,296.192]", + "rotation": 180, + "y": 296.192, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 495.808, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,290.693]", + "rotation": 180, + "y": 290.693, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 501.307, + "ydirAdj": 316.8 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,307.786]", + "rotation": 180, + "y": 307.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.010650635, + "heightDir": 6.087402, + "widthDirAdj": 6.1148987, + "dir": 270.0, + "xdirAdj": 484.214, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,301.691]", + "rotation": 180, + "y": 301.691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 490.309, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,296.192]", + "rotation": 180, + "y": 296.192, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 495.808, + "ydirAdj": 329.499 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,307.786]", + "rotation": 180, + "y": 307.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 484.214, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,299.991]", + "rotation": 180, + "y": 299.991, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 492.009, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,295.002]", + "rotation": 180, + "y": 295.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 496.998, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,291.288]", + "rotation": 180, + "y": 291.288, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 500.712, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,286.413]", + "rotation": 180, + "y": 286.413, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 505.587, + "ydirAdj": 342.113 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 72, + "text": "Text Regular w/o and", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 493.795, + "y": 728.107 + }, + "width": 32.21634, + "height": 45.98639, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 493.795, + "maxX": 526.01135, + "minY": 728.107, + "maxY": 774.0934, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,298.205]", + "rotation": 180, + "y": 298.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011657715, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 493.795, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,291.6]", + "rotation": 180, + "y": 291.6, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 500.4, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,286.696]", + "rotation": 180, + "y": 286.696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.304, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,281.197]", + "rotation": 180, + "y": 281.197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 510.803, + "ydirAdj": 25.994019 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,298.205]", + "rotation": 180, + "y": 298.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012756348, + "heightDir": 6.087402, + "widthDirAdj": 7.3246765, + "dir": 270.0, + "xdirAdj": 493.795, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,291.005]", + "rotation": 180, + "y": 291.005, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 500.995, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,286.101]", + "rotation": 180, + "y": 286.101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 505.899, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,280.488]", + "rotation": 180, + "y": 280.488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 511.512, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,274.989]", + "rotation": 180, + "y": 274.989, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 517.011, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,271.899]", + "rotation": 180, + "y": 271.899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 520.101, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,266.995]", + "rotation": 180, + "y": 266.995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0063476562, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 525.005, + "ydirAdj": 38.60797 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,298.205]", + "rotation": 180, + "y": 298.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 493.795, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,290.409]", + "rotation": 180, + "y": 290.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 501.591, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,287.291]", + "rotation": 180, + "y": 287.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 504.709, + "ydirAdj": 51.307007 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,298.205]", + "rotation": 180, + "y": 298.205, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 493.795, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,293.386]", + "rotation": 180, + "y": 293.386, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 498.614, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,287.887]", + "rotation": 180, + "y": 287.887, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 504.113, + "ydirAdj": 63.893005 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 73, + "text": "with with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 495.099, + "y": 264.50098 + }, + "width": 15.097595, + "height": 20.6734, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 495.099, + "maxX": 510.1966, + "minY": 264.50098, + "maxY": 285.17438, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,296.901]", + "rotation": 180, + "y": 296.901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 495.099, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,288.992]", + "rotation": 180, + "y": 288.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 503.008, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,285.902]", + "rotation": 180, + "y": 285.902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 506.098, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,282.813]", + "rotation": 180, + "y": 282.813, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 509.187, + "ydirAdj": 514.913 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,296.901]", + "rotation": 180, + "y": 296.901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 495.099, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,288.992]", + "rotation": 180, + "y": 288.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 503.008, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,285.902]", + "rotation": 180, + "y": 285.902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 506.098, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,282.813]", + "rotation": 180, + "y": 282.813, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 509.187, + "ydirAdj": 527.499 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 74, + "text": "with with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 500.513, + "y": 629.405 + }, + "width": 15.098572, + "height": 20.67334, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 500.513, + "maxX": 515.6116, + "minY": 629.405, + "maxY": 650.07837, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,291.487]", + "rotation": 180, + "y": 291.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 500.513, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,283.606]", + "rotation": 180, + "y": 283.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 508.394, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,280.488]", + "rotation": 180, + "y": 280.488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 511.512, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,277.398]", + "rotation": 180, + "y": 277.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 514.602, + "ydirAdj": 150.009 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,291.487]", + "rotation": 180, + "y": 291.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 500.513, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,283.606]", + "rotation": 180, + "y": 283.606, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 508.394, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,280.488]", + "rotation": 180, + "y": 280.488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 511.512, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,277.398]", + "rotation": 180, + "y": 277.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 514.602, + "ydirAdj": 162.595 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 75, + "text": "imported with annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 502.214, + "y": 449.887 + }, + "width": 51.494568, + "height": 33.40042, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 502.214, + "maxX": 553.70856, + "minY": 449.887, + "maxY": 483.2874, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,289.786]", + "rotation": 180, + "y": 289.786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 502.214, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,286.611]", + "rotation": 180, + "y": 286.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.014862061, + "heightDir": 6.087402, + "widthDirAdj": 8.545441, + "dir": 270.0, + "xdirAdj": 505.389, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,277.994]", + "rotation": 180, + "y": 277.99402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 514.006, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,272.494]", + "rotation": 180, + "y": 272.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 519.506, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,266.91]", + "rotation": 180, + "y": 266.91003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 525.08997, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,263.197]", + "rotation": 180, + "y": 263.19702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 528.803, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,260.107]", + "rotation": 180, + "y": 260.107, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 531.893, + "ydirAdj": 329.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.501,255.203]", + "rotation": 180, + "y": 255.203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 536.797, + "ydirAdj": 329.499 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,284.797]", + "rotation": 180, + "y": 284.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 507.203, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,276.888]", + "rotation": 180, + "y": 276.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 515.112, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,273.798]", + "rotation": 180, + "y": 273.79797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 518.202, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,270.709]", + "rotation": 180, + "y": 270.70898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 521.291, + "ydirAdj": 316.8 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,280.488]", + "rotation": 180, + "y": 280.488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 511.512, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,275.613]", + "rotation": 180, + "y": 275.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 516.38696, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,270.113]", + "rotation": 180, + "y": 270.11304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 521.88696, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,264.586]", + "rotation": 180, + "y": 264.586, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 527.414, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,259.002]", + "rotation": 180, + "y": 259.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 532.998, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,255.912]", + "rotation": 180, + "y": 255.91199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 536.088, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,269.887,251.008]", + "rotation": 180, + "y": 251.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 540.992, + "ydirAdj": 342.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,270.0,247.89]", + "rotation": 180, + "y": 247.89001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 544.11, + "ydirAdj": 342.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,270.0,244.8]", + "rotation": 180, + "y": 244.79999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 547.2, + "ydirAdj": 342.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,270.0,239.301]", + "rotation": 180, + "y": 239.30103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 552.699, + "ydirAdj": 342.0 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 76, + "text": "Highlights Annotations", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 512.391, + "y": 728.107 + }, + "width": 51.40747, + "height": 20.6734, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 512.391, + "maxX": 563.79846, + "minY": 728.107, + "maxY": 748.7804, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,279.609]", + "rotation": 180, + "y": 279.609, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 512.391, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,271.701]", + "rotation": 180, + "y": 271.701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 520.299, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,268.611]", + "rotation": 180, + "y": 268.61096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 523.38904, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,262.998]", + "rotation": 180, + "y": 262.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 529.002, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,257.499]", + "rotation": 180, + "y": 257.49902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 534.501, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,254.409]", + "rotation": 180, + "y": 254.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 537.591, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,251.291]", + "rotation": 180, + "y": 251.29102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 540.709, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.107,245.792]", + "rotation": 180, + "y": 245.79199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 546.208, + "ydirAdj": 63.893005 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.192,240.208]", + "rotation": 180, + "y": 240.20801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 551.792, + "ydirAdj": 63.807983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,548.192,237.09]", + "rotation": 180, + "y": 237.08997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 554.91003, + "ydirAdj": 63.807983 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,278.986]", + "rotation": 180, + "y": 278.98596, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 513.01404, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,271.106]", + "rotation": 180, + "y": 271.10596, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 520.89404, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,265.493]", + "rotation": 180, + "y": 265.49304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 526.50696, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,259.994]", + "rotation": 180, + "y": 259.99402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 532.006, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,254.494]", + "rotation": 180, + "y": 254.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 537.506, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,251.405]", + "rotation": 180, + "y": 251.40503, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 540.595, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,246.501]", + "rotation": 180, + "y": 246.50098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 545.499, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.693,243.298]", + "rotation": 180, + "y": 243.29797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 548.702, + "ydirAdj": 51.307007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.806,240.208]", + "rotation": 180, + "y": 240.20801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 551.792, + "ydirAdj": 51.19397 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.806,234.709]", + "rotation": 180, + "y": 234.70898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 557.291, + "ydirAdj": 51.19397 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,560.806,229.209]", + "rotation": 180, + "y": 229.20898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 562.791, + "ydirAdj": 51.19397 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 77, + "text": "with", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 516.699, + "y": 766.006 + }, + "width": 15.211609, + "height": 8.087402, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 516.699, + "maxX": 531.9106, + "minY": 766.006, + "maxY": 774.0934, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,275.301]", + "rotation": 180, + "y": 275.30103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.013793945, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 516.699, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,267.392]", + "rotation": 180, + "y": 267.39197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 524.60803, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,264.189]", + "rotation": 180, + "y": 264.18896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 527.81104, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,261.099]", + "rotation": 180, + "y": 261.099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 530.901, + "ydirAdj": 25.994019 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 78, + "text": "90° Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 517.49304, + "y": 264.50098 + }, + "width": 43.527405, + "height": 20.6734, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 517.49304, + "maxX": 561.02045, + "minY": 264.50098, + "maxY": 285.17438, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,274.507]", + "rotation": 180, + "y": 274.50696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 517.49304, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,269.008]", + "rotation": 180, + "y": 269.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 522.992, + "ydirAdj": 514.913 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,97.087,263.509]", + "rotation": 180, + "y": 263.50903, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.007637024, + "heightDir": 6.087402, + "widthDirAdj": 4.388214, + "dir": 270.0, + "xdirAdj": 528.49097, + "ydirAdj": 514.913 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,274.507]", + "rotation": 180, + "y": 274.50696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 517.49304, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,266.598]", + "rotation": 180, + "y": 266.59802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 525.402, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.501,263.395]", + "rotation": 180, + "y": 263.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 528.605, + "ydirAdj": 527.499 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,257.896]", + "rotation": 180, + "y": 257.896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 534.104, + "ydirAdj": 527.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,252.397]", + "rotation": 180, + "y": 252.39697, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 539.603, + "ydirAdj": 527.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,249.307]", + "rotation": 180, + "y": 249.307, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 542.693, + "ydirAdj": 527.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,246.189]", + "rotation": 180, + "y": 246.18896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 545.81104, + "ydirAdj": 527.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,240.69]", + "rotation": 180, + "y": 240.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 551.31, + "ydirAdj": 527.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,235.106]", + "rotation": 180, + "y": 235.10602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 556.894, + "ydirAdj": 527.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,84.614,231.987]", + "rotation": 180, + "y": 231.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 560.013, + "ydirAdj": 527.386 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 79, + "text": "90° Annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 522.907, + "y": 629.405 + }, + "width": 45.315613, + "height": 20.67334, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 522.907, + "maxX": 568.2226, + "minY": 629.405, + "maxY": 650.07837, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,269.093]", + "rotation": 180, + "y": 269.09302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 522.907, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,263.594]", + "rotation": 180, + "y": 263.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 528.406, + "ydirAdj": 150.009 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,461.991,258.094]", + "rotation": 180, + "y": 258.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076293945, + "heightDir": 6.087402, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 533.906, + "ydirAdj": 150.009 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,269.093]", + "rotation": 180, + "y": 269.09302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 522.907, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.405,261.213]", + "rotation": 180, + "y": 261.213, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 530.787, + "ydirAdj": 162.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,255.6]", + "rotation": 180, + "y": 255.59998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 536.4, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,250.101]", + "rotation": 180, + "y": 250.10101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 541.899, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,244.602]", + "rotation": 180, + "y": 244.60199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 547.398, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,241.512]", + "rotation": 180, + "y": 241.51196, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 550.48804, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,236.608]", + "rotation": 180, + "y": 236.60803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 555.39197, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,233.405]", + "rotation": 180, + "y": 233.40503, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 558.595, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,230.287]", + "rotation": 180, + "y": 230.28699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 561.713, + "ydirAdj": 162.51001 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,449.49,224.787]", + "rotation": 180, + "y": 224.78699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 567.213, + "ydirAdj": 162.51001 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 80, + "text": "90°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 529.597, + "y": 475.2 + }, + "width": 12.119629, + "height": 8.087402, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 529.597, + "maxX": 541.7166, + "minY": 475.2, + "maxY": 483.2874, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,262.403]", + "rotation": 180, + "y": 262.403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 529.597, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,256.904]", + "rotation": 180, + "y": 256.904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 535.096, + "ydirAdj": 316.8 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,295.2,251.291]", + "rotation": 180, + "y": 251.29102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076293945, + "heightDir": 6.087402, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 540.709, + "ydirAdj": 316.8 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 81, + "text": "YellowHighlight90GradP GreenHighlight90GradP BlueHighlight90GradP RedHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 531.411, + "y": 213.987 + }, + "width": 109.20862, + "height": 45.987427, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 531.411, + "maxX": 640.6196, + "minY": 213.987, + "maxY": 259.97443, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,260.589]", + "rotation": 180, + "y": 260.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 531.411, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,252.595]", + "rotation": 180, + "y": 252.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 539.405, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,247.691]", + "rotation": 180, + "y": 247.69098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 544.309, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,244.602]", + "rotation": 180, + "y": 244.60199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 547.398, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,241.512]", + "rotation": 180, + "y": 241.51196, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 550.48804, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,236.013]", + "rotation": 180, + "y": 236.013, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 555.987, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,227.991]", + "rotation": 180, + "y": 227.99097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 564.00903, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,220.11]", + "rotation": 180, + "y": 220.10999, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 571.89, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,216.992]", + "rotation": 180, + "y": 216.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 575.008, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,211.493]", + "rotation": 180, + "y": 211.49298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 580.507, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,71.887,205.994]", + "rotation": 180, + "y": 205.99402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 586.006, + "ydirAdj": 540.113 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,202.791]", + "rotation": 180, + "y": 202.79102, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 589.209, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,199.701]", + "rotation": 180, + "y": 199.70099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 592.299, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,194.202]", + "rotation": 180, + "y": 194.20203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 597.798, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,188.702]", + "rotation": 180, + "y": 188.70203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 603.298, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,185.613]", + "rotation": 180, + "y": 185.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 606.38696, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,180.113]", + "rotation": 180, + "y": 180.11304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 611.88696, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,174.501]", + "rotation": 180, + "y": 174.50098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 617.499, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,166.592]", + "rotation": 180, + "y": 166.59198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0063705444, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 625.408, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,162.907]", + "rotation": 180, + "y": 162.90698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 629.093, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,158.003]", + "rotation": 180, + "y": 158.00299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 633.997, + "ydirAdj": 540.0 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,72.0,152.391]", + "rotation": 180, + "y": 152.39099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010643005, + "heightDir": 6.087402, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 639.609, + "ydirAdj": 540.0 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,260.589]", + "rotation": 180, + "y": 260.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 531.411, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,252.709]", + "rotation": 180, + "y": 252.70898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 539.291, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,248.91]", + "rotation": 180, + "y": 248.91003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 543.08997, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,244.006]", + "rotation": 180, + "y": 244.00598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 547.994, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,239.102]", + "rotation": 180, + "y": 239.10199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 552.898, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,233.603]", + "rotation": 180, + "y": 233.60303, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 558.397, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,225.694]", + "rotation": 180, + "y": 225.69397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 566.306, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,222.605]", + "rotation": 180, + "y": 222.60498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 569.395, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,216.992]", + "rotation": 180, + "y": 216.992, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 575.008, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,211.493]", + "rotation": 180, + "y": 211.49298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 580.507, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.301,208.403]", + "rotation": 180, + "y": 208.40302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 583.597, + "ydirAdj": 552.699 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,205.313]", + "rotation": 180, + "y": 205.31299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 586.687, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,199.701]", + "rotation": 180, + "y": 199.70099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 592.299, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,194.202]", + "rotation": 180, + "y": 194.20203, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 597.798, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,191.112]", + "rotation": 180, + "y": 191.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.888, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,185.613]", + "rotation": 180, + "y": 185.61304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 606.38696, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,180.113]", + "rotation": 180, + "y": 180.11304, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 611.88696, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,172.205]", + "rotation": 180, + "y": 172.20502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 619.795, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,168.406]", + "rotation": 180, + "y": 168.406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 623.594, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,163.502]", + "rotation": 180, + "y": 163.50201, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 628.498, + "ydirAdj": 552.586 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,59.414,158.003]", + "rotation": 180, + "y": 158.00299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010639191, + "heightDir": 6.087402, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 633.997, + "ydirAdj": 552.586 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,260.589]", + "rotation": 180, + "y": 260.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.012744904, + "heightDir": 6.087402, + "widthDirAdj": 7.3246613, + "dir": 270.0, + "xdirAdj": 531.411, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,253.304]", + "rotation": 180, + "y": 253.30402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 538.696, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,250.101]", + "rotation": 180, + "y": 250.10101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 541.899, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,244.602]", + "rotation": 180, + "y": 244.60199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 547.398, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,239.698]", + "rotation": 180, + "y": 239.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 552.302, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,231.789]", + "rotation": 180, + "y": 231.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 560.211, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,228.699]", + "rotation": 180, + "y": 228.69897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 563.301, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,223.2]", + "rotation": 180, + "y": 223.20001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 568.8, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,217.587]", + "rotation": 180, + "y": 217.58704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.41296, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,214.498]", + "rotation": 180, + "y": 214.49799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 577.502, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,211.408]", + "rotation": 180, + "y": 211.40802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 580.592, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.602,205.909]", + "rotation": 180, + "y": 205.909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 586.091, + "ydirAdj": 565.398 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,200.296]", + "rotation": 180, + "y": 200.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 591.704, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,197.206]", + "rotation": 180, + "y": 197.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.794, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,191.707]", + "rotation": 180, + "y": 191.70703, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.29297, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,186.208]", + "rotation": 180, + "y": 186.20801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 605.792, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,178.299]", + "rotation": 180, + "y": 178.29901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 613.701, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,174.501]", + "rotation": 180, + "y": 174.50098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 617.499, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,169.597]", + "rotation": 180, + "y": 169.59698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 622.403, + "ydirAdj": 565.313 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,46.687,164.098]", + "rotation": 180, + "y": 164.09802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010639191, + "heightDir": 6.087402, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 627.902, + "ydirAdj": 565.313 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,260.589]", + "rotation": 180, + "y": 260.589, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.012744904, + "heightDir": 6.087402, + "widthDirAdj": 7.3246613, + "dir": 270.0, + "xdirAdj": 531.411, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,253.191]", + "rotation": 180, + "y": 253.19098, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 538.809, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,248.287]", + "rotation": 180, + "y": 248.28699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 543.713, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,242.787]", + "rotation": 180, + "y": 242.78699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 549.213, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,234.907]", + "rotation": 180, + "y": 234.90698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 557.093, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,231.789]", + "rotation": 180, + "y": 231.789, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 560.211, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,226.29]", + "rotation": 180, + "y": 226.28998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 565.71, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,220.706]", + "rotation": 180, + "y": 220.706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 571.294, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,217.587]", + "rotation": 180, + "y": 217.58704, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.41296, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,214.498]", + "rotation": 180, + "y": 214.49799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 577.502, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,33.987,208.998]", + "rotation": 180, + "y": 208.99799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 583.002, + "ydirAdj": 578.013 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,203.386]", + "rotation": 180, + "y": 203.38599, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.005302429, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 588.614, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,200.296]", + "rotation": 180, + "y": 200.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 591.704, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,194.797]", + "rotation": 180, + "y": 194.797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 597.203, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,189.298]", + "rotation": 180, + "y": 189.29797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0138168335, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 602.702, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,181.389]", + "rotation": 180, + "y": 181.38904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006374359, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 610.61096, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,177.591]", + "rotation": 180, + "y": 177.591, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008476257, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 614.409, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,172.687]", + "rotation": 180, + "y": 172.68701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.009567261, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 619.313, + "ydirAdj": 577.899 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,34.101,167.187]", + "rotation": 180, + "y": 167.18701, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.010639191, + "heightDir": 6.087402, + "widthDirAdj": 6.1148834, + "dir": 270.0, + "xdirAdj": 624.813, + "ydirAdj": 577.899 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 82, + "text": "Text 90°", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 531.496, + "y": 753.392 + }, + "width": 19.716675, + "height": 20.701355, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 531.496, + "maxX": 551.21265, + "minY": 753.392, + "maxY": 774.0934, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,260.504]", + "rotation": 180, + "y": 260.50403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.011657715, + "heightDir": 6.087402, + "widthDirAdj": 6.708786, + "dir": 270.0, + "xdirAdj": 531.496, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,253.786]", + "rotation": 180, + "y": 253.78601, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 538.214, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,248.91]", + "rotation": 180, + "y": 248.91003, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 543.08997, + "ydirAdj": 38.60797 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,573.392,243.298]", + "rotation": 180, + "y": 243.29797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 548.702, + "ydirAdj": 38.60797 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,252.907]", + "rotation": 180, + "y": 252.90698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 539.093, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,247.294]", + "rotation": 180, + "y": 247.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 544.706, + "ydirAdj": 25.994019 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,586.006,241.795]", + "rotation": 180, + "y": 241.79498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0076293945, + "heightDir": 6.087402, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 550.205, + "ydirAdj": 25.994019 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 83, + "text": "redaction", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 545.102, + "y": 462.614 + }, + "width": 36.69861, + "height": 8.087402, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 545.102, + "maxX": 581.8006, + "minY": 462.614, + "maxY": 470.70142, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,246.898]", + "rotation": 180, + "y": 246.89801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.006378174, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 545.102, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,243.213]", + "rotation": 180, + "y": 243.21301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 548.787, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,238.309]", + "rotation": 180, + "y": 238.30902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 553.691, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,232.809]", + "rotation": 180, + "y": 232.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 559.191, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,227.792]", + "rotation": 180, + "y": 227.79199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 564.208, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,222.888]", + "rotation": 180, + "y": 222.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 569.112, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,219.798]", + "rotation": 180, + "y": 219.79797, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 572.202, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,216.709]", + "rotation": 180, + "y": 216.70898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 575.291, + "ydirAdj": 329.386 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,282.614,211.209]", + "rotation": 180, + "y": 211.20898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 580.791, + "ydirAdj": 329.386 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 84, + "text": "David Ksenia", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 555.902, + "y": 616.791 + }, + "width": 56.596497, + "height": 8.087402, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 555.902, + "maxX": 612.4985, + "minY": 616.791, + "maxY": 624.8784, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,236.098]", + "rotation": 180, + "y": 236.09802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 555.902, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,228.189]", + "rotation": 180, + "y": 228.18896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 563.81104, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,223.2]", + "rotation": 180, + "y": 223.20001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 568.8, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,217.701]", + "rotation": 180, + "y": 217.70099, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.299, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,214.611]", + "rotation": 180, + "y": 214.61096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 577.38904, + "ydirAdj": 175.20901 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.791,206.306]", + "rotation": 180, + "y": 206.30603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.013824463, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 585.694, + "ydirAdj": 175.20901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.904,198.397]", + "rotation": 180, + "y": 198.39697, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.007446289, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 593.603, + "ydirAdj": 175.09601 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.904,194.088]", + "rotation": 180, + "y": 194.08801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 597.912, + "ydirAdj": 175.09601 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.904,189.213]", + "rotation": 180, + "y": 189.21301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0095825195, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 602.787, + "ydirAdj": 175.09601 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.904,183.6]", + "rotation": 180, + "y": 183.59998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 608.4, + "ydirAdj": 175.09601 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,436.904,180.51]", + "rotation": 180, + "y": 180.51001, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 611.49, + "ydirAdj": 175.09601 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 85, + "text": "et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 590.088, + "y": 591.506 + }, + "width": 19.826782, + "height": 8.172424, + "page": 3, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 590.088, + "maxX": 609.9148, + "minY": 591.506, + "maxY": 599.6784, + "classification": null, + "page": 3, + "orientation": "NONE", + "sequences": [ + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.506,201.912]", + "rotation": 180, + "y": 201.91199, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 590.088, + "ydirAdj": 200.49399 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.591,197.008]", + "rotation": 180, + "y": 197.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 594.992, + "ydirAdj": 200.409 + } + ] + }, + { + "page": 3, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.591,191.112]", + "rotation": 180, + "y": 191.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.008483887, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 600.888, + "ydirAdj": 200.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.591,186.208]", + "rotation": 180, + "y": 186.20801, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0053100586, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 605.792, + "ydirAdj": 200.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,411.591,183.09]", + "rotation": 180, + "y": 183.08997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0047912598, + "heightDir": 6.087402, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 608.91003, + "ydirAdj": 200.409 + } + ] + } + ], + "rotation": 180, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 86, + "text": "Text with 270° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 357.987, + "y": 69.39203 + }, + "width": 70.01239, + "height": 46.100395, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 357.987, + "maxX": 427.9994, + "minY": 69.39203, + "maxY": 115.492424, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.013,684.595]", + "rotation": 270, + "y": 357.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 357.987, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,247.31522,684.595]", + "rotation": 270, + "y": 364.68478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 364.68478, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.32213,684.595]", + "rotation": 270, + "y": 369.67786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 369.67786, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.82314,684.595]", + "rotation": 270, + "y": 375.17688, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 375.17688, + "ydirAdj": 684.595 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,230.93921,684.595]", + "rotation": 270, + "y": 381.0608, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 381.0608, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,223.04265,684.595]", + "rotation": 270, + "y": 388.95734, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 388.95734, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.95221,684.595]", + "rotation": 270, + "y": 392.0478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 392.0478, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.86177,684.595]", + "rotation": 270, + "y": 395.13824, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 395.13824, + "ydirAdj": 684.595 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,208.56929,684.595]", + "rotation": 270, + "y": 403.43073, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 403.43073, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.0703,684.595]", + "rotation": 270, + "y": 408.9297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 408.9297, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.5713,684.595]", + "rotation": 270, + "y": 414.4287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 414.4287, + "ydirAdj": 684.595 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.98433,684.595]", + "rotation": 270, + "y": 420.0157, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 420.0157, + "ydirAdj": 684.595 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.013,697.294]", + "rotation": 270, + "y": 357.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 357.987, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,246.71034,697.294]", + "rotation": 270, + "y": 365.28967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 365.28967, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,241.71725,697.294]", + "rotation": 270, + "y": 370.28275, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 370.28275, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.21826,697.294]", + "rotation": 270, + "y": 375.78174, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 375.78174, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,230.71927,697.294]", + "rotation": 270, + "y": 381.28073, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 381.28073, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.62883,697.294]", + "rotation": 270, + "y": 384.37115, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 384.37115, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.74571,697.294]", + "rotation": 270, + "y": 389.25427, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 389.25427, + "ydirAdj": 697.294 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.26788,697.294]", + "rotation": 270, + "y": 395.73212, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.708786, + "dir": 180.0, + "xdirAdj": 395.73212, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,209.5701,697.294]", + "rotation": 270, + "y": 402.4299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 402.4299, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.68698,697.294]", + "rotation": 270, + "y": 407.31302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 407.31302, + "ydirAdj": 697.294 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.1,697.294]", + "rotation": 270, + "y": 412.9, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 412.9, + "ydirAdj": 697.294 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.013,709.909]", + "rotation": 270, + "y": 357.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 357.987, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,246.11644,709.909]", + "rotation": 270, + "y": 365.88354, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 365.88354, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.026,709.909]", + "rotation": 270, + "y": 368.974, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 368.974, + "ydirAdj": 709.909 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.74452,709.909]", + "rotation": 270, + "y": 377.2555, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 377.2555, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.75998,709.909]", + "rotation": 270, + "y": 385.24002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 385.24002, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.26099,709.909]", + "rotation": 270, + "y": 390.739, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 390.739, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.762,709.909]", + "rotation": 270, + "y": 396.238, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 396.238, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.263,709.909]", + "rotation": 270, + "y": 401.737, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 401.737, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.17256,709.909]", + "rotation": 270, + "y": 404.82745, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 404.82745, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.17947,709.909]", + "rotation": 270, + "y": 409.82053, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 409.82053, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.08904,709.909]", + "rotation": 270, + "y": 412.91095, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 412.91095, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,195.9986,709.909]", + "rotation": 270, + "y": 416.0014, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 416.0014, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.4996,709.909]", + "rotation": 270, + "y": 421.5004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 421.5004, + "ydirAdj": 709.909 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,185.00061,709.909]", + "rotation": 270, + "y": 426.9994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 426.9994, + "ydirAdj": 709.909 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,254.013,722.608]", + "rotation": 270, + "y": 357.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 357.987, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,249.12988,722.608]", + "rotation": 270, + "y": 362.87012, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 362.87012, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.63089,722.608]", + "rotation": 270, + "y": 368.3691, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 368.3691, + "ydirAdj": 722.608 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,235.34941,722.608]", + "rotation": 270, + "y": 376.65057, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 376.65057, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.36487,722.608]", + "rotation": 270, + "y": 384.63513, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 384.63513, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.27443,722.608]", + "rotation": 270, + "y": 387.7256, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 387.7256, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,218.77544,722.608]", + "rotation": 270, + "y": 393.22455, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 393.22455, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.27644,722.608]", + "rotation": 270, + "y": 398.72357, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 398.72357, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.186,722.608]", + "rotation": 270, + "y": 401.814, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 401.814, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.09557,722.608]", + "rotation": 270, + "y": 404.90442, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 404.90442, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.50859,722.608]", + "rotation": 270, + "y": 410.4914, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 410.4914, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,196.0096,722.608]", + "rotation": 270, + "y": 415.99042, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 415.99042, + "ydirAdj": 722.608 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,192.91916,722.608]", + "rotation": 270, + "y": 419.08084, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 419.08084, + "ydirAdj": 722.608 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 87, + "text": "Text with 90° Regular Text w/o Annotations and Highlights", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 361.389, + "y": 677.31 + }, + "width": 70.001434, + "height": 45.98639, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 361.389, + "maxX": 431.39044, + "minY": 677.31, + "maxY": 723.2964, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.389,715.209]", + "rotation": 270, + "y": 250.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 361.389, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,368.0868,715.209]", + "rotation": 270, + "y": 243.91321, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 368.0868, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.96988,715.209]", + "rotation": 270, + "y": 239.03012, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 372.96988, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.46887,715.209]", + "rotation": 270, + "y": 233.53113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 378.46887, + "ydirAdj": 76.791016 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.35284,715.209]", + "rotation": 270, + "y": 227.64716, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 384.35284, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.2494,715.209]", + "rotation": 270, + "y": 219.75061, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 392.2494, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,395.33984,715.209]", + "rotation": 270, + "y": 216.66016, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 395.33984, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,398.52927,715.209]", + "rotation": 270, + "y": 213.47073, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 398.52927, + "ydirAdj": 76.791016 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,406.72278,715.209]", + "rotation": 270, + "y": 205.27722, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 406.72278, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,412.30975,715.209]", + "rotation": 270, + "y": 199.69025, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 412.30975, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,417.80875,715.209]", + "rotation": 270, + "y": 194.19125, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 417.80875, + "ydirAdj": 76.791016 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.389,702.595]", + "rotation": 270, + "y": 250.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 361.389, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,368.69168,702.595]", + "rotation": 270, + "y": 243.30832, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 368.69168, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.57477,702.595]", + "rotation": 270, + "y": 238.42523, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 373.57477, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,379.07376,702.595]", + "rotation": 270, + "y": 232.92624, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 379.07376, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.57275,702.595]", + "rotation": 270, + "y": 227.42725, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 384.57275, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,387.76218,702.595]", + "rotation": 270, + "y": 224.23782, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 387.76218, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.64526,702.595]", + "rotation": 270, + "y": 219.35474, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 392.64526, + "ydirAdj": 89.40503 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.1231,702.595]", + "rotation": 270, + "y": 212.87689, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 399.1231, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,405.8209,702.595]", + "rotation": 270, + "y": 206.17911, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 405.8209, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.70398,702.595]", + "rotation": 270, + "y": 201.29602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 410.70398, + "ydirAdj": 89.40503 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,416.20297,702.595]", + "rotation": 270, + "y": 195.79703, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 416.20297, + "ydirAdj": 89.40503 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.389,689.896]", + "rotation": 270, + "y": 250.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 361.389, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.28555,689.896]", + "rotation": 270, + "y": 242.71445, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 369.28555, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,372.376,689.896]", + "rotation": 270, + "y": 239.624, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 372.376, + "ydirAdj": 102.104004 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.66852,689.896]", + "rotation": 270, + "y": 231.33148, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 380.66852, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.56506,689.896]", + "rotation": 270, + "y": 223.43494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 388.56506, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,394.06406,689.896]", + "rotation": 270, + "y": 217.93594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 394.06406, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.56305,689.896]", + "rotation": 270, + "y": 212.43695, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 399.56305, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,405.15002,689.896]", + "rotation": 270, + "y": 206.84998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 405.15002, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,408.24048,689.896]", + "rotation": 270, + "y": 203.75952, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 408.24048, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,413.12357,689.896]", + "rotation": 270, + "y": 198.87643, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 413.12357, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,416.21402,689.896]", + "rotation": 270, + "y": 195.78598, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 416.21402, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,419.30447,689.896]", + "rotation": 270, + "y": 192.69553, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 419.30447, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,424.89145,689.896]", + "rotation": 270, + "y": 187.10855, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 424.89145, + "ydirAdj": 102.104004 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,430.39044,689.896]", + "rotation": 270, + "y": 181.60956, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 430.39044, + "ydirAdj": 102.104004 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.389,677.31]", + "rotation": 270, + "y": 250.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 361.389, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,366.2721,677.31]", + "rotation": 270, + "y": 245.7279, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 366.2721, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.7711,677.31]", + "rotation": 270, + "y": 240.22891, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 371.7711, + "ydirAdj": 114.69 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.0636,677.31]", + "rotation": 270, + "y": 231.9364, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 380.0636, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,387.96014,677.31]", + "rotation": 270, + "y": 224.03986, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 387.96014, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,391.0506,677.31]", + "rotation": 270, + "y": 220.9494, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 391.0506, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,396.63757,677.31]", + "rotation": 270, + "y": 215.36243, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 396.63757, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,402.13657,677.31]", + "rotation": 270, + "y": 209.86343, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 402.13657, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,405.22702,677.31]", + "rotation": 270, + "y": 206.77298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 405.22702, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,408.31747,677.31]", + "rotation": 270, + "y": 203.68253, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 408.31747, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,413.81647,677.31]", + "rotation": 270, + "y": 198.18353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 413.81647, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,419.31546,677.31]", + "rotation": 270, + "y": 192.68454, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 419.31546, + "ydirAdj": 114.69 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,422.50488,677.31]", + "rotation": 270, + "y": 189.49512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 422.50488, + "ydirAdj": 114.69 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 88, + "text": "Text with 270° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation0GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 321.987, + "y": 263.792 + }, + "width": 134.8786, + "height": 58.6864, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 321.987, + "maxX": 456.8656, + "minY": 263.792, + "maxY": 322.4784, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.013,477.609]", + "rotation": 270, + "y": 321.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 321.987, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,283.31522,477.609]", + "rotation": 270, + "y": 328.68478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 328.68478, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,278.32214,477.609]", + "rotation": 270, + "y": 333.67786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 333.67786, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,272.82315,477.609]", + "rotation": 270, + "y": 339.17685, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 339.17685, + "ydirAdj": 477.609 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,266.93918,477.609]", + "rotation": 270, + "y": 345.06082, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 345.06082, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.04263,477.609]", + "rotation": 270, + "y": 352.95737, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 352.95737, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,255.9522,477.609]", + "rotation": 270, + "y": 356.0478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 356.0478, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,252.86176,477.609]", + "rotation": 270, + "y": 359.13824, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 359.13824, + "ydirAdj": 477.609 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.56927,477.609]", + "rotation": 270, + "y": 367.43073, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 367.43073, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.07028,477.609]", + "rotation": 270, + "y": 372.92972, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 372.92972, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.57129,477.609]", + "rotation": 270, + "y": 378.4287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 378.4287, + "ydirAdj": 477.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.98431,477.609]", + "rotation": 270, + "y": 384.0157, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 384.0157, + "ydirAdj": 477.609 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.013,490.195]", + "rotation": 270, + "y": 321.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 321.987, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,283.31522,490.195]", + "rotation": 270, + "y": 328.68478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 328.68478, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,278.32214,490.195]", + "rotation": 270, + "y": 333.67786, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 333.67786, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,272.82315,490.195]", + "rotation": 270, + "y": 339.17685, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 339.17685, + "ydirAdj": 490.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,266.93918,490.195]", + "rotation": 270, + "y": 345.06082, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 345.06082, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.04263,490.195]", + "rotation": 270, + "y": 352.95737, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 352.95737, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,255.9522,490.195]", + "rotation": 270, + "y": 356.0478, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 356.0478, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,252.86176,490.195]", + "rotation": 270, + "y": 359.13824, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 359.13824, + "ydirAdj": 490.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.56927,490.195]", + "rotation": 270, + "y": 367.43073, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 367.43073, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.67271,490.195]", + "rotation": 270, + "y": 375.32727, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 375.32727, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,231.17372,490.195]", + "rotation": 270, + "y": 380.8263, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 380.8263, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,225.67473,490.195]", + "rotation": 270, + "y": 386.32526, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 386.32526, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,220.08775,490.195]", + "rotation": 270, + "y": 391.91223, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 391.91223, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.99731,490.195]", + "rotation": 270, + "y": 395.0027, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 395.0027, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,212.1142,490.195]", + "rotation": 270, + "y": 399.8858, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 399.8858, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,209.02376,490.195]", + "rotation": 270, + "y": 402.97626, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 402.97626, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.83434,490.195]", + "rotation": 270, + "y": 406.16565, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 406.16565, + "ydirAdj": 490.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,200.33534,490.195]", + "rotation": 270, + "y": 411.66467, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 411.66467, + "ydirAdj": 490.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.013,502.894]", + "rotation": 270, + "y": 321.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 321.987, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.11646,502.894]", + "rotation": 270, + "y": 329.88354, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.88354, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,279.026,502.894]", + "rotation": 270, + "y": 332.974, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 332.974, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,274.03293,502.894]", + "rotation": 270, + "y": 337.96707, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 337.96707, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,270.94247,502.894]", + "rotation": 270, + "y": 341.05753, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 341.05753, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,267.25815,502.894]", + "rotation": 270, + "y": 344.74185, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 344.74185, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.3616,502.894]", + "rotation": 270, + "y": 352.6384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 352.6384, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,253.86261,502.894]", + "rotation": 270, + "y": 358.1374, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 358.1374, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.27563,502.894]", + "rotation": 270, + "y": 363.72437, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 363.72437, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.77664,502.894]", + "rotation": 270, + "y": 369.22336, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 369.22336, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.6862,502.894]", + "rotation": 270, + "y": 372.31378, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 372.31378, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.80309,502.894]", + "rotation": 270, + "y": 377.1969, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 377.1969, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,231.61366,502.894]", + "rotation": 270, + "y": 380.38635, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 380.38635, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,228.52322,502.894]", + "rotation": 270, + "y": 383.47678, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 383.47678, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,223.02423,502.894]", + "rotation": 270, + "y": 388.97577, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 388.97577, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,217.52524,502.894]", + "rotation": 270, + "y": 394.47476, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 394.47476, + "ydirAdj": 502.894 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,211.64131,502.894]", + "rotation": 270, + "y": 400.3587, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 400.3587, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,203.74475,502.894]", + "rotation": 270, + "y": 408.25525, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 408.25525, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.86163,502.894]", + "rotation": 270, + "y": 413.13837, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 413.13837, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.36264,502.894]", + "rotation": 270, + "y": 418.63736, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 418.63736, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.17322,502.894]", + "rotation": 270, + "y": 421.82678, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 421.82678, + "ydirAdj": 502.894 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,181.97972,502.894]", + "rotation": 270, + "y": 430.02026, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 430.02026, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,173.99518,502.894]", + "rotation": 270, + "y": 438.00482, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 438.00482, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,169.70595,502.894]", + "rotation": 270, + "y": 442.29407, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 442.29407, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.82283,502.894]", + "rotation": 270, + "y": 447.1772, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 447.1772, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,159.32384,502.894]", + "rotation": 270, + "y": 452.67615, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 452.67615, + "ydirAdj": 502.894 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,156.13441,502.894]", + "rotation": 270, + "y": 455.8656, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 455.8656, + "ydirAdj": 502.894 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.013,515.509]", + "rotation": 270, + "y": 321.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 180.0, + "xdirAdj": 321.987, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.71033,515.509]", + "rotation": 270, + "y": 329.28967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 329.28967, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,277.12335,515.509]", + "rotation": 270, + "y": 334.87665, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 334.87665, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,274.0329,515.509]", + "rotation": 270, + "y": 337.9671, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 337.9671, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,269.1498,515.509]", + "rotation": 270, + "y": 342.8502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 180.0, + "xdirAdj": 342.8502, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.46548,515.509]", + "rotation": 270, + "y": 346.53452, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 346.53452, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,257.56894,515.509]", + "rotation": 270, + "y": 354.43106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 354.43106, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,251.98196,515.509]", + "rotation": 270, + "y": 360.01804, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 360.01804, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,246.48297,515.509]", + "rotation": 270, + "y": 365.51703, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 365.51703, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,240.98398,515.509]", + "rotation": 270, + "y": 371.01602, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 371.01602, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.89354,515.509]", + "rotation": 270, + "y": 374.10645, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 374.10645, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.01042,515.509]", + "rotation": 270, + "y": 378.98956, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 378.98956, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,229.91998,515.509]", + "rotation": 270, + "y": 382.08002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 382.08002, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.73056,515.509]", + "rotation": 270, + "y": 385.26944, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 385.26944, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.23157,515.509]", + "rotation": 270, + "y": 390.76843, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 390.76843, + "ydirAdj": 515.509 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.73257,515.509]", + "rotation": 270, + "y": 396.26743, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 396.26743, + "ydirAdj": 515.509 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,290.013,528.208]", + "rotation": 270, + "y": 321.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 180.0, + "xdirAdj": 321.987, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.71033,528.208]", + "rotation": 270, + "y": 329.28967, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 329.28967, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,277.12335,528.208]", + "rotation": 270, + "y": 334.87665, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 334.87665, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,274.0329,528.208]", + "rotation": 270, + "y": 337.9671, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 337.9671, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,269.1498,528.208]", + "rotation": 270, + "y": 342.8502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 342.8502, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,261.25327,528.208]", + "rotation": 270, + "y": 350.74673, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 350.74673, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,255.75427,528.208]", + "rotation": 270, + "y": 356.24573, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 356.24573, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,250.25528,528.208]", + "rotation": 270, + "y": 361.74472, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 361.74472, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,244.6683,528.208]", + "rotation": 270, + "y": 367.3317, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 367.3317, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,241.57787,528.208]", + "rotation": 270, + "y": 370.42212, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 370.42212, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,236.69475,528.208]", + "rotation": 270, + "y": 375.30524, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 375.30524, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.60431,528.208]", + "rotation": 270, + "y": 378.3957, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 378.3957, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,230.41489,528.208]", + "rotation": 270, + "y": 381.5851, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 381.5851, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.9159,528.208]", + "rotation": 270, + "y": 387.0841, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 387.0841, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.4169,528.208]", + "rotation": 270, + "y": 392.5831, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 392.5831, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.91791,528.208]", + "rotation": 270, + "y": 398.0821, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 398.0821, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,206.02135,528.208]", + "rotation": 270, + "y": 405.97864, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 405.97864, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.23804,528.208]", + "rotation": 270, + "y": 409.76196, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 409.76196, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,197.35492,528.208]", + "rotation": 270, + "y": 414.64508, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 414.64508, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,191.85593,528.208]", + "rotation": 270, + "y": 420.14407, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 420.14407, + "ydirAdj": 528.208 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.95856,528.208]", + "rotation": 270, + "y": 429.04144, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 429.04144, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,178.07544,528.208]", + "rotation": 270, + "y": 433.92456, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 433.92456, + "ydirAdj": 528.208 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.19151,528.208]", + "rotation": 270, + "y": 439.80847, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 439.80847, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.3084,528.208]", + "rotation": 270, + "y": 444.6916, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 444.6916, + "ydirAdj": 528.208 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,164.21796,528.208]", + "rotation": 270, + "y": 447.78204, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 180.0, + "xdirAdj": 447.78204, + "ydirAdj": 528.208 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 89, + "text": "Text with 90° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation180GradP et al.", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 326.013, + "y": 513.411 + }, + "width": 137.78204, + "height": 58.685364, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 326.013, + "maxX": 463.79504, + "minY": 513.411, + "maxY": 572.0964, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.013,564.009]", + "rotation": 270, + "y": 285.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 326.013, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,332.7108,564.009]", + "rotation": 270, + "y": 279.2892, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 332.7108, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.70386,564.009]", + "rotation": 270, + "y": 274.29614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 337.70386, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,343.20285,564.009]", + "rotation": 270, + "y": 268.79715, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 343.20285, + "ydirAdj": 227.99103 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,349.08682,564.009]", + "rotation": 270, + "y": 262.91318, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 349.08682, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.98337,564.009]", + "rotation": 270, + "y": 255.01663, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 356.98337, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.07382,564.009]", + "rotation": 270, + "y": 251.92618, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 360.07382, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.16428,564.009]", + "rotation": 270, + "y": 248.83572, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 363.16428, + "ydirAdj": 227.99103 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.4568,564.009]", + "rotation": 270, + "y": 240.54321, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 371.4568, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,376.95578,564.009]", + "rotation": 270, + "y": 235.04422, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 376.95578, + "ydirAdj": 227.99103 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.45477,564.009]", + "rotation": 270, + "y": 229.54523, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 382.45477, + "ydirAdj": 227.99103 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.013,551.395]", + "rotation": 270, + "y": 285.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 326.013, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,332.7108,551.395]", + "rotation": 270, + "y": 279.2892, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 332.7108, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.70386,551.395]", + "rotation": 270, + "y": 274.29614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 337.70386, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,343.20285,551.395]", + "rotation": 270, + "y": 268.79715, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 343.20285, + "ydirAdj": 240.60498 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,349.08682,551.395]", + "rotation": 270, + "y": 262.91318, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 349.08682, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.98337,551.395]", + "rotation": 270, + "y": 255.01663, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 356.98337, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.07382,551.395]", + "rotation": 270, + "y": 251.92618, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 360.07382, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.16428,551.395]", + "rotation": 270, + "y": 248.83572, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 363.16428, + "ydirAdj": 240.60498 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.4568,551.395]", + "rotation": 270, + "y": 240.54321, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 371.4568, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,379.35333,551.395]", + "rotation": 270, + "y": 232.64667, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 379.35333, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.85233,551.395]", + "rotation": 270, + "y": 227.14767, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 384.85233, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,390.35132,551.395]", + "rotation": 270, + "y": 221.64868, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 390.35132, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,395.9383,551.395]", + "rotation": 270, + "y": 216.0617, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 395.9383, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.02875,551.395]", + "rotation": 270, + "y": 212.97125, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 399.02875, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.91183,551.395]", + "rotation": 270, + "y": 208.08817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 403.91183, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,407.0023,551.395]", + "rotation": 270, + "y": 204.99771, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 407.0023, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,410.1917,551.395]", + "rotation": 270, + "y": 201.80829, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 410.1917, + "ydirAdj": 240.60498 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,415.6907,551.395]", + "rotation": 270, + "y": 196.3093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 415.6907, + "ydirAdj": 240.60498 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.013,538.696]", + "rotation": 270, + "y": 285.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 326.013, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.90955,538.696]", + "rotation": 270, + "y": 278.09045, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 333.90955, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.0,538.696]", + "rotation": 270, + "y": 275.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 337.0, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.99307,538.696]", + "rotation": 270, + "y": 270.00693, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 341.99307, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,345.08353,538.696]", + "rotation": 270, + "y": 266.91647, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 345.08353, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,348.76785,538.696]", + "rotation": 270, + "y": 263.23215, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 348.76785, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.6644,538.696]", + "rotation": 270, + "y": 255.3356, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 356.6644, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,362.1634,538.696]", + "rotation": 270, + "y": 249.83661, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 362.1634, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,367.75037,538.696]", + "rotation": 270, + "y": 244.24963, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 367.75037, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.24936,538.696]", + "rotation": 270, + "y": 238.75064, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 373.24936, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,376.3398,538.696]", + "rotation": 270, + "y": 235.66019, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 376.3398, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.2229,538.696]", + "rotation": 270, + "y": 230.7771, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 381.2229, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.41232,538.696]", + "rotation": 270, + "y": 227.58768, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 384.41232, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,387.50278,538.696]", + "rotation": 270, + "y": 224.49722, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 387.50278, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,393.00177,538.696]", + "rotation": 270, + "y": 218.99823, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 393.00177, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,398.50076,538.696]", + "rotation": 270, + "y": 213.49924, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 398.50076, + "ydirAdj": 253.30402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.38474,538.696]", + "rotation": 270, + "y": 207.61526, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 404.38474, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,412.28128,538.696]", + "rotation": 270, + "y": 199.71872, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 412.28128, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,417.16437,538.696]", + "rotation": 270, + "y": 194.83563, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 417.16437, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,422.66336,538.696]", + "rotation": 270, + "y": 189.33664, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 422.66336, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,425.85278,538.696]", + "rotation": 270, + "y": 186.14722, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 425.85278, + "ydirAdj": 253.30402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,434.0463,538.696]", + "rotation": 270, + "y": 177.9537, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 434.0463, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,442.03085,538.696]", + "rotation": 270, + "y": 169.96915, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 442.03085, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,446.32007,538.696]", + "rotation": 270, + "y": 165.67993, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 446.32007, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,451.20316,538.696]", + "rotation": 270, + "y": 160.79684, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 451.20316, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,456.70215,538.696]", + "rotation": 270, + "y": 155.29785, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 456.70215, + "ydirAdj": 253.30402 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,459.89157,538.696]", + "rotation": 270, + "y": 152.10843, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 459.89157, + "ydirAdj": 253.30402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.013,526.11]", + "rotation": 270, + "y": 285.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 326.013, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.31567,526.11]", + "rotation": 270, + "y": 278.68433, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 333.31567, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,338.90265,526.11]", + "rotation": 270, + "y": 273.09735, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 338.90265, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.9931,526.11]", + "rotation": 270, + "y": 270.0069, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 341.9931, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.8762,526.11]", + "rotation": 270, + "y": 265.1238, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 346.8762, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.56052,526.11]", + "rotation": 270, + "y": 261.43948, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 350.56052, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.45706,526.11]", + "rotation": 270, + "y": 253.54294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 358.45706, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,364.04404,526.11]", + "rotation": 270, + "y": 247.95596, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 364.04404, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.54303,526.11]", + "rotation": 270, + "y": 242.45697, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 369.54303, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.04202,526.11]", + "rotation": 270, + "y": 236.95798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 375.04202, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.13248,526.11]", + "rotation": 270, + "y": 233.86752, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 378.13248, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,383.01556,526.11]", + "rotation": 270, + "y": 228.98444, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 383.01556, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.10602,526.11]", + "rotation": 270, + "y": 225.89398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 386.10602, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,389.29544,526.11]", + "rotation": 270, + "y": 222.70456, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 389.29544, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,394.79443,526.11]", + "rotation": 270, + "y": 217.20557, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 394.79443, + "ydirAdj": 265.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.29343,526.11]", + "rotation": 270, + "y": 211.70657, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 400.29343, + "ydirAdj": 265.89 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,326.013,513.411]", + "rotation": 270, + "y": 285.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 326.013, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.31567,513.411]", + "rotation": 270, + "y": 278.68433, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 333.31567, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,338.90265,513.411]", + "rotation": 270, + "y": 273.09735, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 338.90265, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,341.9931,513.411]", + "rotation": 270, + "y": 270.0069, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 341.9931, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,346.8762,513.411]", + "rotation": 270, + "y": 265.1238, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 346.8762, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,354.77274,513.411]", + "rotation": 270, + "y": 257.22726, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 354.77274, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.27173,513.411]", + "rotation": 270, + "y": 251.72827, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 360.27173, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.77072,513.411]", + "rotation": 270, + "y": 246.22928, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 365.77072, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.3577,513.411]", + "rotation": 270, + "y": 240.6423, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 371.3577, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,374.44815,513.411]", + "rotation": 270, + "y": 237.55185, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 374.44815, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,379.33124,513.411]", + "rotation": 270, + "y": 232.66876, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 379.33124, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.4217,513.411]", + "rotation": 270, + "y": 229.57831, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 382.4217, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,385.6111,513.411]", + "rotation": 270, + "y": 226.38889, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 385.6111, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,391.1101,513.411]", + "rotation": 270, + "y": 220.8899, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 391.1101, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,396.6091,513.411]", + "rotation": 270, + "y": 215.3909, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 396.6091, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,402.1081,513.411]", + "rotation": 270, + "y": 209.8919, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 402.1081, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,407.6071,513.411]", + "rotation": 270, + "y": 204.39291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 407.6071, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,413.19406,513.411]", + "rotation": 270, + "y": 198.80594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 413.19406, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,421.0906,513.411]", + "rotation": 270, + "y": 190.9094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 421.0906, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,424.77493,513.411]", + "rotation": 270, + "y": 187.22507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 424.77493, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,429.65802,513.411]", + "rotation": 270, + "y": 182.34198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 429.65802, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,435.157,513.411]", + "rotation": 270, + "y": 176.84299, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 435.157, + "ydirAdj": 278.589 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,444.05444,513.411]", + "rotation": 270, + "y": 167.94556, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 444.05444, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,448.93753,513.411]", + "rotation": 270, + "y": 163.06247, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 448.93753, + "ydirAdj": 278.589 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,454.8215,513.411]", + "rotation": 270, + "y": 157.1785, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 454.8215, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,459.7046,513.411]", + "rotation": 270, + "y": 152.29541, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 459.7046, + "ydirAdj": 278.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,462.79504,513.411]", + "rotation": 270, + "y": 149.20496, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 462.79504, + "ydirAdj": 278.589 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 90, + "text": "Text with 270° Text with Highlights 1. Highlight: YellowHighlight0GradP 2. Highlight: GreenHighlight0GradP 3. Highlight: BlueHighlight0GradP 4. Highlight: RedHighlight0GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 293.187, + "y": 569.792 + }, + "width": 162.78064, + "height": 71.385376, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 293.187, + "maxX": 455.96765, + "minY": 569.792, + "maxY": 641.17737, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,318.813,158.91]", + "rotation": 270, + "y": 293.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 293.187, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,312.1152,158.91]", + "rotation": 270, + "y": 299.8848, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 299.8848, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,307.12213,158.91]", + "rotation": 270, + "y": 304.87787, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 304.87787, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,301.62314,158.91]", + "rotation": 270, + "y": 310.37686, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 310.37686, + "ydirAdj": 158.91003 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,295.73917,158.91]", + "rotation": 270, + "y": 316.26083, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 316.26083, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,287.84262,158.91]", + "rotation": 270, + "y": 324.15738, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 324.15738, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,284.75217,158.91]", + "rotation": 270, + "y": 327.24783, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 327.24783, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,281.6617,158.91]", + "rotation": 270, + "y": 330.3383, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 330.3383, + "ydirAdj": 158.91003 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,273.3692,158.91]", + "rotation": 270, + "y": 338.6308, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 338.6308, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,267.8702,158.91]", + "rotation": 270, + "y": 344.1298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 344.1298, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,262.37122,158.91]", + "rotation": 270, + "y": 349.62878, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 349.62878, + "ydirAdj": 158.91003 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.78424,158.91]", + "rotation": 270, + "y": 355.21576, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 355.21576, + "ydirAdj": 158.91003 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,318.813,171.609]", + "rotation": 270, + "y": 293.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 293.187, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,312.1152,171.609]", + "rotation": 270, + "y": 299.8848, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 299.8848, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,307.12213,171.609]", + "rotation": 270, + "y": 304.87787, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 304.87787, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,301.53516,171.609]", + "rotation": 270, + "y": 310.46484, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 310.46484, + "ydirAdj": 171.60901 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,295.65118,171.609]", + "rotation": 270, + "y": 316.34882, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 316.34882, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,287.75464,171.609]", + "rotation": 270, + "y": 324.24536, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 324.24536, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,284.66418,171.609]", + "rotation": 270, + "y": 327.33582, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 327.33582, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,281.57373,171.609]", + "rotation": 270, + "y": 330.42627, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 330.42627, + "ydirAdj": 171.60901 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,273.28122,171.609]", + "rotation": 270, + "y": 338.71878, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 338.71878, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.38467,171.609]", + "rotation": 270, + "y": 346.61533, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.61533, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,262.29422,171.609]", + "rotation": 270, + "y": 349.70578, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 349.70578, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.70724,171.609]", + "rotation": 270, + "y": 355.29276, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 355.29276, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,251.20825,171.609]", + "rotation": 270, + "y": 360.79175, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 360.79175, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.11781,171.609]", + "rotation": 270, + "y": 363.8822, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 363.8822, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,245.02737,171.609]", + "rotation": 270, + "y": 366.97263, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 366.97263, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,239.52838,171.609]", + "rotation": 270, + "y": 372.47162, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 372.47162, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.9414,171.609]", + "rotation": 270, + "y": 378.0586, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 378.0586, + "ydirAdj": 171.60901 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,230.85097,171.609]", + "rotation": 270, + "y": 381.14905, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 180.0, + "xdirAdj": 381.14905, + "ydirAdj": 171.60901 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,318.813,184.195]", + "rotation": 270, + "y": 293.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 293.187, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,313.314,184.195]", + "rotation": 270, + "y": 298.686, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 298.686, + "ydirAdj": 184.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,307.82596,184.195]", + "rotation": 270, + "y": 304.17404, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 304.17404, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.74243,184.195]", + "rotation": 270, + "y": 312.25757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 312.25757, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,296.65198,184.195]", + "rotation": 270, + "y": 315.34802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 315.34802, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,291.15298,184.195]", + "rotation": 270, + "y": 320.84702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 320.84702, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,285.654,184.195]", + "rotation": 270, + "y": 326.346, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 326.346, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.56354,184.195]", + "rotation": 270, + "y": 329.43646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.43646, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,279.3741,184.195]", + "rotation": 270, + "y": 332.6259, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 332.6259, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,273.87512,184.195]", + "rotation": 270, + "y": 338.12488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 338.12488, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,268.37613,184.195]", + "rotation": 270, + "y": 343.62387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 343.62387, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.28568,184.195]", + "rotation": 270, + "y": 346.71432, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.71432, + "ydirAdj": 184.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.4017,184.195]", + "rotation": 270, + "y": 352.5983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 352.5983, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,251.50514,184.195]", + "rotation": 270, + "y": 360.49487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 360.49487, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,246.62202,184.195]", + "rotation": 270, + "y": 365.378, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 365.378, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.4326,184.195]", + "rotation": 270, + "y": 368.56738, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 368.56738, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,240.34216,184.195]", + "rotation": 270, + "y": 371.65784, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 371.65784, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.84317,184.195]", + "rotation": 270, + "y": 377.15683, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 377.15683, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.94661,184.195]", + "rotation": 270, + "y": 385.0534, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 385.0534, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.05005,184.195]", + "rotation": 270, + "y": 392.94995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 392.94995, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.86063,184.195]", + "rotation": 270, + "y": 396.13937, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 396.13937, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.36163,184.195]", + "rotation": 270, + "y": 401.63837, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 401.63837, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.96162,184.195]", + "rotation": 270, + "y": 407.0384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 407.0384, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.87119,184.195]", + "rotation": 270, + "y": 410.1288, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 410.1288, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.68176,184.195]", + "rotation": 270, + "y": 413.31824, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 413.31824, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.18277,184.195]", + "rotation": 270, + "y": 418.81723, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 418.81723, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,187.68378,184.195]", + "rotation": 270, + "y": 424.31622, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 424.31622, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.59334,184.195]", + "rotation": 270, + "y": 427.40668, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 427.40668, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.09435,184.195]", + "rotation": 270, + "y": 432.90564, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 432.90564, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,171.19778,184.195]", + "rotation": 270, + "y": 440.80222, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 440.80222, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,167.41447,184.195]", + "rotation": 270, + "y": 444.5855, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 444.5855, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,162.53136,184.195]", + "rotation": 270, + "y": 449.46863, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 449.46863, + "ydirAdj": 184.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,157.03236,184.195]", + "rotation": 270, + "y": 454.96765, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 454.96765, + "ydirAdj": 184.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,318.813,196.894]", + "rotation": 270, + "y": 293.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 293.187, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,313.314,196.894]", + "rotation": 270, + "y": 298.686, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 298.686, + "ydirAdj": 196.89398 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,307.82596,196.894]", + "rotation": 270, + "y": 304.17404, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 304.17404, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.74243,196.894]", + "rotation": 270, + "y": 312.25757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 312.25757, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,296.65198,196.894]", + "rotation": 270, + "y": 315.34802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 315.34802, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,291.15298,196.894]", + "rotation": 270, + "y": 320.84702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 320.84702, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,285.654,196.894]", + "rotation": 270, + "y": 326.346, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 326.346, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.56354,196.894]", + "rotation": 270, + "y": 329.43646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.43646, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,279.3741,196.894]", + "rotation": 270, + "y": 332.6259, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 332.6259, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,273.87512,196.894]", + "rotation": 270, + "y": 338.12488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 338.12488, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,268.37613,196.894]", + "rotation": 270, + "y": 343.62387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 343.62387, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.28568,196.894]", + "rotation": 270, + "y": 346.71432, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.71432, + "ydirAdj": 196.89398 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.4017,196.894]", + "rotation": 270, + "y": 352.5983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 352.5983, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,251.50514,196.894]", + "rotation": 270, + "y": 360.49487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 360.49487, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,247.8208,196.894]", + "rotation": 270, + "y": 364.1792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 364.1792, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.82771,196.894]", + "rotation": 270, + "y": 369.1723, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 369.1723, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.9446,196.894]", + "rotation": 270, + "y": 374.05542, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 374.05542, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.4456,196.894]", + "rotation": 270, + "y": 379.55438, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 379.55438, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.54904,196.894]", + "rotation": 270, + "y": 387.45096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 387.45096, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.4586,196.894]", + "rotation": 270, + "y": 390.54138, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 390.54138, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,215.87163,196.894]", + "rotation": 270, + "y": 396.12836, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 396.12836, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.37263,196.894]", + "rotation": 270, + "y": 401.62738, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 401.62738, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.2822,196.894]", + "rotation": 270, + "y": 404.7178, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 404.7178, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.27974,196.894]", + "rotation": 270, + "y": 407.72028, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 407.72028, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,198.69276,196.894]", + "rotation": 270, + "y": 413.30725, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 413.30725, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.19377,196.894]", + "rotation": 270, + "y": 418.8062, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 418.8062, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.10333,196.894]", + "rotation": 270, + "y": 421.89667, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 421.89667, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,184.60434,196.894]", + "rotation": 270, + "y": 427.39566, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 427.39566, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,176.70778,196.894]", + "rotation": 270, + "y": 435.29224, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 435.29224, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,172.92447,196.894]", + "rotation": 270, + "y": 439.07553, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 439.07553, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,168.04135,196.894]", + "rotation": 270, + "y": 443.95865, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 443.95865, + "ydirAdj": 196.89398 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,162.54236,196.894]", + "rotation": 270, + "y": 449.45764, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 449.45764, + "ydirAdj": 196.89398 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,318.813,209.509]", + "rotation": 270, + "y": 293.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 293.187, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,313.314,209.509]", + "rotation": 270, + "y": 298.686, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 298.686, + "ydirAdj": 209.50903 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,307.82596,209.509]", + "rotation": 270, + "y": 304.17404, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 304.17404, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.74243,209.509]", + "rotation": 270, + "y": 312.25757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 312.25757, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,296.65198,209.509]", + "rotation": 270, + "y": 315.34802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 315.34802, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,291.15298,209.509]", + "rotation": 270, + "y": 320.84702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 320.84702, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,285.654,209.509]", + "rotation": 270, + "y": 326.346, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 326.346, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.56354,209.509]", + "rotation": 270, + "y": 329.43646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.43646, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,279.3741,209.509]", + "rotation": 270, + "y": 332.6259, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 332.6259, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,273.87512,209.509]", + "rotation": 270, + "y": 338.12488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 338.12488, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,268.37613,209.509]", + "rotation": 270, + "y": 343.62387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 343.62387, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.28568,209.509]", + "rotation": 270, + "y": 346.71432, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.71432, + "ydirAdj": 209.50903 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.4017,209.509]", + "rotation": 270, + "y": 352.5983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 352.5983, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,252.09904,209.509]", + "rotation": 270, + "y": 359.90094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 359.90094, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.90962,209.509]", + "rotation": 270, + "y": 363.0904, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 363.0904, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,243.41063,209.509]", + "rotation": 270, + "y": 368.58936, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 368.58936, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,238.52751,209.509]", + "rotation": 270, + "y": 373.47247, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 373.47247, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,230.63095,209.509]", + "rotation": 270, + "y": 381.36905, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 381.36905, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,227.54051,209.509]", + "rotation": 270, + "y": 384.45947, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 384.45947, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.04152,209.509]", + "rotation": 270, + "y": 389.9585, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 389.9585, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.45454,209.509]", + "rotation": 270, + "y": 395.54547, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 395.54547, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.3641,209.509]", + "rotation": 270, + "y": 398.6359, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 398.6359, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.27367,209.509]", + "rotation": 270, + "y": 401.72632, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 401.72632, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,204.87366,209.509]", + "rotation": 270, + "y": 407.12634, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 407.12634, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.28668,209.509]", + "rotation": 270, + "y": 412.71332, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 412.71332, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,196.19624,209.509]", + "rotation": 270, + "y": 415.80377, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 415.80377, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,190.69725,209.509]", + "rotation": 270, + "y": 421.30273, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 421.30273, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.80069,209.509]", + "rotation": 270, + "y": 429.1993, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 429.1993, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,179.11635,209.509]", + "rotation": 270, + "y": 432.88367, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 432.88367, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,174.12326,209.509]", + "rotation": 270, + "y": 437.87674, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 437.87674, + "ydirAdj": 209.50903 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,168.62427,209.509]", + "rotation": 270, + "y": 443.37573, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 443.37573, + "ydirAdj": 209.50903 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,318.813,222.208]", + "rotation": 270, + "y": 293.187, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 293.187, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,313.314,222.208]", + "rotation": 270, + "y": 298.686, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 180.0, + "xdirAdj": 298.686, + "ydirAdj": 222.20801 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,307.82596,222.208]", + "rotation": 270, + "y": 304.17404, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 304.17404, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,299.74243,222.208]", + "rotation": 270, + "y": 312.25757, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 312.25757, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,296.65198,222.208]", + "rotation": 270, + "y": 315.34802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 315.34802, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,291.15298,222.208]", + "rotation": 270, + "y": 320.84702, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 320.84702, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,285.654,222.208]", + "rotation": 270, + "y": 326.346, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 326.346, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,282.56354,222.208]", + "rotation": 270, + "y": 329.43646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 329.43646, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,279.3741,222.208]", + "rotation": 270, + "y": 332.6259, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 332.6259, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,273.87512,222.208]", + "rotation": 270, + "y": 338.12488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 338.12488, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,268.37613,222.208]", + "rotation": 270, + "y": 343.62387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 343.62387, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,265.28568,222.208]", + "rotation": 270, + "y": 346.71432, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 346.71432, + "ydirAdj": 222.20801 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,259.4017,222.208]", + "rotation": 270, + "y": 352.5983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246613, + "dir": 180.0, + "xdirAdj": 352.5983, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,252.09904,222.208]", + "rotation": 270, + "y": 359.90094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 359.90094, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,247.21593,222.208]", + "rotation": 270, + "y": 364.78406, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 364.78406, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,241.62895,222.208]", + "rotation": 270, + "y": 370.37103, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 370.37103, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,233.73239,222.208]", + "rotation": 270, + "y": 378.2676, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 378.2676, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,230.64195,222.208]", + "rotation": 270, + "y": 381.35803, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 381.35803, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,225.14296,222.208]", + "rotation": 270, + "y": 386.85706, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 386.85706, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,219.55598,222.208]", + "rotation": 270, + "y": 392.44403, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 392.44403, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,216.46555,222.208]", + "rotation": 270, + "y": 395.53445, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 395.53445, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.3751,222.208]", + "rotation": 270, + "y": 398.62488, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 398.62488, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.87611,222.208]", + "rotation": 270, + "y": 404.1239, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 404.1239, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,202.4761,222.208]", + "rotation": 270, + "y": 409.5239, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 409.5239, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,199.28668,222.208]", + "rotation": 270, + "y": 412.71332, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 412.71332, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,193.78769,222.208]", + "rotation": 270, + "y": 418.2123, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 418.2123, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,185.89113,222.208]", + "rotation": 270, + "y": 426.1089, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 426.1089, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,182.20679,222.208]", + "rotation": 270, + "y": 429.7932, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 429.7932, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,177.32367,222.208]", + "rotation": 270, + "y": 434.67633, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 434.67633, + "ydirAdj": 222.20801 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,171.82468,222.208]", + "rotation": 270, + "y": 440.17532, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 180.0, + "xdirAdj": 440.17532, + "ydirAdj": 222.20801 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 91, + "text": "Text with 90° Text with Highlights 1. Highlight: YellowHighlight180GradP 2. Highlight: GreenHighlight180GradP 3. Highlight: BlueHighlight180GradP 4. Highlight: RedHighlight180GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 283.606, + "y": 61.512024 + }, + "width": 173.76755, + "height": 71.27135, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 283.606, + "maxX": 457.37354, + "minY": 61.512024, + "maxY": 132.78337, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.606,124.696]", + "rotation": 270, + "y": 328.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 283.606, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,290.30377,124.696]", + "rotation": 270, + "y": 321.69623, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 290.30377, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,295.29684,124.696]", + "rotation": 270, + "y": 316.70316, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 295.29684, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.79584,124.696]", + "rotation": 270, + "y": 311.20416, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.79584, + "ydirAdj": 667.304 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,306.6798,124.696]", + "rotation": 270, + "y": 305.3202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 306.6798, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.57635,124.696]", + "rotation": 270, + "y": 297.42365, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 314.57635, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.6668,124.696]", + "rotation": 270, + "y": 294.3332, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.6668, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,320.75726,124.696]", + "rotation": 270, + "y": 291.24274, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 320.75726, + "ydirAdj": 667.304 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,329.04977,124.696]", + "rotation": 270, + "y": 282.95023, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 329.04977, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,334.54877,124.696]", + "rotation": 270, + "y": 277.45123, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 334.54877, + "ydirAdj": 667.304 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,340.04776,124.696]", + "rotation": 270, + "y": 271.95224, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 340.04776, + "ydirAdj": 667.304 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.606,112.11]", + "rotation": 270, + "y": 328.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 283.606, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,290.30377,112.11]", + "rotation": 270, + "y": 321.69623, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 290.30377, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,295.29684,112.11]", + "rotation": 270, + "y": 316.70316, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 295.29684, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,300.79584,112.11]", + "rotation": 270, + "y": 311.20416, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 300.79584, + "ydirAdj": 679.89 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,306.6798,112.11]", + "rotation": 270, + "y": 305.3202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 306.6798, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,314.57635,112.11]", + "rotation": 270, + "y": 297.42365, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 314.57635, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,317.6668,112.11]", + "rotation": 270, + "y": 294.3332, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 317.6668, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,320.75726,112.11]", + "rotation": 270, + "y": 291.24274, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 320.75726, + "ydirAdj": 679.89 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,329.04977,112.11]", + "rotation": 270, + "y": 282.95023, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 329.04977, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,336.94632,112.11]", + "rotation": 270, + "y": 275.05368, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 336.94632, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,340.03677,112.11]", + "rotation": 270, + "y": 271.96323, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 340.03677, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,345.62375,112.11]", + "rotation": 270, + "y": 266.37625, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 345.62375, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.12274,112.11]", + "rotation": 270, + "y": 260.87726, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 351.12274, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,354.2132,112.11]", + "rotation": 270, + "y": 257.7868, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 354.2132, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,357.30365,112.11]", + "rotation": 270, + "y": 254.69635, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 357.30365, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,362.80264,112.11]", + "rotation": 270, + "y": 249.19736, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 362.80264, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,368.30164,112.11]", + "rotation": 270, + "y": 243.69836, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 368.30164, + "ydirAdj": 679.89 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.49106,112.11]", + "rotation": 270, + "y": 240.50894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 0.0, + "xdirAdj": 371.49106, + "ydirAdj": 679.89 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.606,99.411]", + "rotation": 270, + "y": 328.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 283.606, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,289.10498,99.411]", + "rotation": 270, + "y": 322.89502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 289.10498, + "ydirAdj": 692.589 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,294.59302,99.411]", + "rotation": 270, + "y": 317.40698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 294.59302, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,302.57758,99.411]", + "rotation": 270, + "y": 309.42242, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 302.57758, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.66803,99.411]", + "rotation": 270, + "y": 306.33197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 305.66803, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,311.16702,99.411]", + "rotation": 270, + "y": 300.83298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 311.16702, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,316.66602,99.411]", + "rotation": 270, + "y": 295.33398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 316.66602, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.75647,99.411]", + "rotation": 270, + "y": 292.24353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 319.75647, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,322.9459,99.411]", + "rotation": 270, + "y": 289.0541, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 322.9459, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.4449,99.411]", + "rotation": 270, + "y": 283.5551, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 328.4449, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.94388,99.411]", + "rotation": 270, + "y": 278.05612, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 333.94388, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.03433,99.411]", + "rotation": 270, + "y": 274.96567, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 337.03433, + "ydirAdj": 692.589 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,342.9183,99.411]", + "rotation": 270, + "y": 269.0817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 342.9183, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.81485,99.411]", + "rotation": 270, + "y": 261.18515, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 350.81485, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.69794,99.411]", + "rotation": 270, + "y": 256.30206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 355.69794, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.88736,99.411]", + "rotation": 270, + "y": 253.11264, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 358.88736, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.9778,99.411]", + "rotation": 270, + "y": 250.02219, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 361.9778, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,367.4768,99.411]", + "rotation": 270, + "y": 244.5232, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 367.4768, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,375.37335,99.411]", + "rotation": 270, + "y": 236.62665, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 375.37335, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,383.2699,99.411]", + "rotation": 270, + "y": 228.7301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 383.2699, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.45932,99.411]", + "rotation": 270, + "y": 225.54068, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 386.45932, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,391.9583,99.411]", + "rotation": 270, + "y": 220.04169, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 391.9583, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,397.4573,99.411]", + "rotation": 270, + "y": 214.5427, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 397.4573, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.54776,99.411]", + "rotation": 270, + "y": 211.45224, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 400.54776, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.73718,99.411]", + "rotation": 270, + "y": 208.26282, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 403.73718, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,409.23618,99.411]", + "rotation": 270, + "y": 202.76382, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 409.23618, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,414.73517,99.411]", + "rotation": 270, + "y": 197.26483, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 414.73517, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,417.82562,99.411]", + "rotation": 270, + "y": 194.17438, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 417.82562, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.32462,99.411]", + "rotation": 270, + "y": 188.67538, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 423.32462, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,428.9116,99.411]", + "rotation": 270, + "y": 183.08841, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 428.9116, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,434.41058,99.411]", + "rotation": 270, + "y": 177.58942, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 434.41058, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,442.30713,99.411]", + "rotation": 270, + "y": 169.69287, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 442.30713, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,445.99146,99.411]", + "rotation": 270, + "y": 166.00854, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 445.99146, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,450.87454,99.411]", + "rotation": 270, + "y": 161.12546, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 450.87454, + "ydirAdj": 692.589 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,456.37354,99.411]", + "rotation": 270, + "y": 155.62646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 456.37354, + "ydirAdj": 692.589 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.606,86.797]", + "rotation": 270, + "y": 328.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 283.606, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,289.10498,86.797]", + "rotation": 270, + "y": 322.89502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 289.10498, + "ydirAdj": 705.203 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,294.59302,86.797]", + "rotation": 270, + "y": 317.40698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 294.59302, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,302.57758,86.797]", + "rotation": 270, + "y": 309.42242, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 302.57758, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.66803,86.797]", + "rotation": 270, + "y": 306.33197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 305.66803, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,311.16702,86.797]", + "rotation": 270, + "y": 300.83298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 311.16702, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,316.66602,86.797]", + "rotation": 270, + "y": 295.33398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 316.66602, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.75647,86.797]", + "rotation": 270, + "y": 292.24353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 319.75647, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,322.9459,86.797]", + "rotation": 270, + "y": 289.0541, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 322.9459, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.4449,86.797]", + "rotation": 270, + "y": 283.5551, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 328.4449, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.94388,86.797]", + "rotation": 270, + "y": 278.05612, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 333.94388, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.03433,86.797]", + "rotation": 270, + "y": 274.96567, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 337.03433, + "ydirAdj": 705.203 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,342.9183,86.797]", + "rotation": 270, + "y": 269.0817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 342.9183, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.81485,86.797]", + "rotation": 270, + "y": 261.18515, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 350.81485, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,354.49918,86.797]", + "rotation": 270, + "y": 257.50082, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 354.49918, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,359.49225,86.797]", + "rotation": 270, + "y": 252.50775, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 359.49225, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,364.37534,86.797]", + "rotation": 270, + "y": 247.62466, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 364.37534, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,369.87433,86.797]", + "rotation": 270, + "y": 242.12567, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 369.87433, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,377.77087,86.797]", + "rotation": 270, + "y": 234.22913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 377.77087, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.86133,86.797]", + "rotation": 270, + "y": 231.13867, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 380.86133, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,386.4483,86.797]", + "rotation": 270, + "y": 225.5517, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 386.4483, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,391.9473,86.797]", + "rotation": 270, + "y": 220.0527, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 391.9473, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,395.03775,86.797]", + "rotation": 270, + "y": 216.96225, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 395.03775, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,398.1282,86.797]", + "rotation": 270, + "y": 213.8718, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 398.1282, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.71518,86.797]", + "rotation": 270, + "y": 208.28482, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 403.71518, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,409.21417,86.797]", + "rotation": 270, + "y": 202.78583, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 409.21417, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,412.30463,86.797]", + "rotation": 270, + "y": 199.69537, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 412.30463, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,417.80362,86.797]", + "rotation": 270, + "y": 194.19638, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 417.80362, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.3026,86.797]", + "rotation": 270, + "y": 188.69739, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 423.3026, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,428.8896,86.797]", + "rotation": 270, + "y": 183.11041, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 428.8896, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,436.78613,86.797]", + "rotation": 270, + "y": 175.21387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 436.78613, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.47046,86.797]", + "rotation": 270, + "y": 171.52954, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 440.47046, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,445.35355,86.797]", + "rotation": 270, + "y": 166.64645, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 445.35355, + "ydirAdj": 705.203 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,450.85254,86.797]", + "rotation": 270, + "y": 161.14746, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 450.85254, + "ydirAdj": 705.203 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.606,74.098]", + "rotation": 270, + "y": 328.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 283.606, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,289.10498,74.098]", + "rotation": 270, + "y": 322.89502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 289.10498, + "ydirAdj": 717.902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,294.59302,74.098]", + "rotation": 270, + "y": 317.40698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 294.59302, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,302.57758,74.098]", + "rotation": 270, + "y": 309.42242, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 302.57758, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.66803,74.098]", + "rotation": 270, + "y": 306.33197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 305.66803, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,311.16702,74.098]", + "rotation": 270, + "y": 300.83298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 311.16702, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,316.66602,74.098]", + "rotation": 270, + "y": 295.33398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 316.66602, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.75647,74.098]", + "rotation": 270, + "y": 292.24353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 319.75647, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,322.9459,74.098]", + "rotation": 270, + "y": 289.0541, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 322.9459, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.4449,74.098]", + "rotation": 270, + "y": 283.5551, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 328.4449, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.94388,74.098]", + "rotation": 270, + "y": 278.05612, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 333.94388, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.03433,74.098]", + "rotation": 270, + "y": 274.96567, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 337.03433, + "ydirAdj": 717.902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,342.9183,74.098]", + "rotation": 270, + "y": 269.0817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 342.9183, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.22098,74.098]", + "rotation": 270, + "y": 261.77902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 350.22098, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,353.4104,74.098]", + "rotation": 270, + "y": 258.5896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 353.4104, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,358.9094,74.098]", + "rotation": 270, + "y": 253.0906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 358.9094, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,363.79248,74.098]", + "rotation": 270, + "y": 248.20752, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 363.79248, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.68903,74.098]", + "rotation": 270, + "y": 240.31097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 371.68903, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,374.77948,74.098]", + "rotation": 270, + "y": 237.22052, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 374.77948, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,380.27847,74.098]", + "rotation": 270, + "y": 231.72153, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 380.27847, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,385.86545,74.098]", + "rotation": 270, + "y": 226.13455, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 385.86545, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.9559,74.098]", + "rotation": 270, + "y": 223.0441, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 388.9559, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.04636,74.098]", + "rotation": 270, + "y": 219.95364, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 392.04636, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,397.54535,74.098]", + "rotation": 270, + "y": 214.45465, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 397.54535, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.13232,74.098]", + "rotation": 270, + "y": 208.86768, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 403.13232, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,406.22278,74.098]", + "rotation": 270, + "y": 205.77722, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 406.22278, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,411.72177,74.098]", + "rotation": 270, + "y": 200.27823, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 411.72177, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,417.22076,74.098]", + "rotation": 270, + "y": 194.77924, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 417.22076, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,422.71976,74.098]", + "rotation": 270, + "y": 189.28024, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 422.71976, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,430.6163,74.098]", + "rotation": 270, + "y": 181.3837, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 430.6163, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,434.3996,74.098]", + "rotation": 270, + "y": 177.6004, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 434.3996, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,439.28268,74.098]", + "rotation": 270, + "y": 172.71732, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 439.28268, + "ydirAdj": 717.902 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,444.78168,74.098]", + "rotation": 270, + "y": 167.21832, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 444.78168, + "ydirAdj": 717.902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,283.606,61.512]", + "rotation": 270, + "y": 328.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 283.606, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,289.10498,61.512]", + "rotation": 270, + "y": 322.89502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 0.0, + "xdirAdj": 289.10498, + "ydirAdj": 730.488 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,294.59302,61.512]", + "rotation": 270, + "y": 317.40698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 294.59302, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,302.57758,61.512]", + "rotation": 270, + "y": 309.42242, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 302.57758, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,305.66803,61.512]", + "rotation": 270, + "y": 306.33197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 305.66803, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,311.16702,61.512]", + "rotation": 270, + "y": 300.83298, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 311.16702, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,316.66602,61.512]", + "rotation": 270, + "y": 295.33398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 316.66602, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,319.75647,61.512]", + "rotation": 270, + "y": 292.24353, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 319.75647, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,322.9459,61.512]", + "rotation": 270, + "y": 289.0541, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 322.9459, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,328.4449,61.512]", + "rotation": 270, + "y": 283.5551, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 328.4449, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,333.94388,61.512]", + "rotation": 270, + "y": 278.05612, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 333.94388, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,337.03433,61.512]", + "rotation": 270, + "y": 274.96567, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 337.03433, + "ydirAdj": 730.488 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,342.9183,61.512]", + "rotation": 270, + "y": 269.0817, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 0.0, + "xdirAdj": 342.9183, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.22098,61.512]", + "rotation": 270, + "y": 261.77902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 350.22098, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.10406,61.512]", + "rotation": 270, + "y": 256.89594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 355.10406, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.69104,61.512]", + "rotation": 270, + "y": 251.30896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 360.69104, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,368.5876,61.512]", + "rotation": 270, + "y": 243.41241, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 368.5876, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.67804,61.512]", + "rotation": 270, + "y": 240.32196, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 371.67804, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,377.17703,61.512]", + "rotation": 270, + "y": 234.82297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 377.17703, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,382.67603,61.512]", + "rotation": 270, + "y": 229.32397, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 382.67603, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,385.86545,61.512]", + "rotation": 270, + "y": 226.13455, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 385.86545, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.9559,61.512]", + "rotation": 270, + "y": 223.0441, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 388.9559, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,394.4549,61.512]", + "rotation": 270, + "y": 217.5451, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 394.4549, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,399.9539,61.512]", + "rotation": 270, + "y": 212.04611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 399.9539, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.1433,61.512]", + "rotation": 270, + "y": 208.85669, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 403.1433, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,408.6423,61.512]", + "rotation": 270, + "y": 203.3577, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 408.6423, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,414.1413,61.512]", + "rotation": 270, + "y": 197.8587, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 414.1413, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,419.6403,61.512]", + "rotation": 270, + "y": 192.35971, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 419.6403, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,427.53683,61.512]", + "rotation": 270, + "y": 184.46317, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 427.53683, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,431.22116,61.512]", + "rotation": 270, + "y": 180.77884, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 431.22116, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,436.21423,61.512]", + "rotation": 270, + "y": 175.78577, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 436.21423, + "ydirAdj": 730.488 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,441.71323,61.512]", + "rotation": 270, + "y": 170.28677, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 441.71323, + "ydirAdj": 730.488 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 92, + "text": "Text with 270° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 342.113, + "y": 427.805 + }, + "width": 97.51846, + "height": 33.372406, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 342.113, + "maxX": 439.63147, + "minY": 427.805, + "maxY": 461.1774, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,269.887,338.91]", + "rotation": 270, + "y": 342.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 180.0, + "xdirAdj": 342.113, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.1892,338.91]", + "rotation": 270, + "y": 348.8108, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 348.8108, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,258.19614,338.91]", + "rotation": 270, + "y": 353.80386, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 353.80386, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,252.69714,338.91]", + "rotation": 270, + "y": 359.30286, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 359.30286, + "ydirAdj": 338.91 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,246.81322,338.91]", + "rotation": 270, + "y": 365.18677, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 365.18677, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,238.91666,338.91]", + "rotation": 270, + "y": 373.08334, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 373.08334, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,235.82622,338.91]", + "rotation": 270, + "y": 376.17377, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 376.17377, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.73578,338.91]", + "rotation": 270, + "y": 379.26422, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 379.26422, + "ydirAdj": 338.91 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,224.4433,338.91]", + "rotation": 270, + "y": 387.5567, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 387.5567, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,218.9443,338.91]", + "rotation": 270, + "y": 393.0557, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "7", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 393.0557, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.44531,338.91]", + "rotation": 270, + "y": 398.5547, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 398.5547, + "ydirAdj": 338.91 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,207.85834,338.91]", + "rotation": 270, + "y": 404.14166, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 180.0, + "xdirAdj": 404.14166, + "ydirAdj": 338.91 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,269.887,351.609]", + "rotation": 270, + "y": 342.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 180.0, + "xdirAdj": 342.113, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,263.78308,351.609]", + "rotation": 270, + "y": 348.21692, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 348.21692, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,258.1961,351.609]", + "rotation": 270, + "y": 353.8039, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 353.8039, + "ydirAdj": 351.609 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,251.81726,351.609]", + "rotation": 270, + "y": 360.18274, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 360.18274, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.72682,351.609]", + "rotation": 270, + "y": 363.2732, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 180.0, + "xdirAdj": 363.2732, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,240.0384,351.609]", + "rotation": 270, + "y": 371.9616, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 371.9616, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,234.53941,351.609]", + "rotation": 270, + "y": 377.46057, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 377.46057, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,229.04042,351.609]", + "rotation": 270, + "y": 382.9596, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 382.9596, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,225.25711,351.609]", + "rotation": 270, + "y": 386.7429, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 386.7429, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,222.16667,351.609]", + "rotation": 270, + "y": 389.8333, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 389.8333, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,217.28355,351.609]", + "rotation": 270, + "y": 394.71643, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 394.71643, + "ydirAdj": 351.609 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,208.99107,351.609]", + "rotation": 270, + "y": 403.0089, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 403.0089, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,205.30673,351.609]", + "rotation": 270, + "y": 406.69327, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 406.69327, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,200.42361,351.609]", + "rotation": 270, + "y": 411.5764, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 411.5764, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,194.92462,351.609]", + "rotation": 270, + "y": 417.07538, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 417.07538, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,189.93153,351.609]", + "rotation": 270, + "y": 422.06848, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 422.06848, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,185.04842,351.609]", + "rotation": 270, + "y": 426.9516, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 426.9516, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,181.95798,351.609]", + "rotation": 270, + "y": 430.04202, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 430.04202, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,178.86754,351.609]", + "rotation": 270, + "y": 433.13245, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 433.13245, + "ydirAdj": 351.609 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,173.36855,351.609]", + "rotation": 270, + "y": 438.63147, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 438.63147, + "ydirAdj": 351.609 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,269.887,364.195]", + "rotation": 270, + "y": 342.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 180.0, + "xdirAdj": 342.113, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,261.99045,364.195]", + "rotation": 270, + "y": 350.00955, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 180.0, + "xdirAdj": 350.00955, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,256.99738,364.195]", + "rotation": 270, + "y": 355.00262, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 180.0, + "xdirAdj": 355.00262, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,253.31303,364.195]", + "rotation": 270, + "y": 358.68695, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 358.68695, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,248.42992,364.195]", + "rotation": 270, + "y": 363.57007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 363.57007, + "ydirAdj": 364.195 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,242.54599,364.195]", + "rotation": 270, + "y": 369.454, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 369.454, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,237.66287,364.195]", + "rotation": 270, + "y": 374.33713, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 374.33713, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,232.16388,364.195]", + "rotation": 270, + "y": 379.83612, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 379.83612, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,226.66489,364.195]", + "rotation": 270, + "y": 385.3351, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 385.3351, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,221.07791,364.195]", + "rotation": 270, + "y": 390.9221, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 390.9221, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,217.98747,364.195]", + "rotation": 270, + "y": 394.0125, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 180.0, + "xdirAdj": 394.0125, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,213.10435,364.195]", + "rotation": 270, + "y": 398.89563, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 398.89563, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,210.01392,364.195]", + "rotation": 270, + "y": 401.98608, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 180.0, + "xdirAdj": 401.98608, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,206.92348,364.195]", + "rotation": 270, + "y": 405.07654, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 405.07654, + "ydirAdj": 364.195 + }, + { + "textMatrix": "[-10.998,0.0,0.0,-10.998,201.42448,364.195]", + "rotation": 270, + "y": 410.5755, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 180.0, + "xdirAdj": 410.5755, + "ydirAdj": 364.195 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 93, + "text": "Text with 90° For imported redaction Here: annotation", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 344.013, + "y": 335.112 + }, + "width": 97.5184, + "height": 33.372406, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 344.013, + "maxX": 441.5314, + "minY": 335.112, + "maxY": 368.4844, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,344.013,360.397]", + "rotation": 270, + "y": 267.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 0.0, + "xdirAdj": 344.013, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.7108,360.397]", + "rotation": 270, + "y": 261.2892, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 350.7108, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.70386,360.397]", + "rotation": 270, + "y": 256.29614, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 355.70386, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,361.20285,360.397]", + "rotation": 270, + "y": 250.79715, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 361.20285, + "ydirAdj": 431.603 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,367.08682,360.397]", + "rotation": 270, + "y": 244.91318, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 367.08682, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,374.98337,360.397]", + "rotation": 270, + "y": 237.01663, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 374.98337, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,378.07382,360.397]", + "rotation": 270, + "y": 233.92618, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 378.07382, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.16428,360.397]", + "rotation": 270, + "y": 230.83572, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 381.16428, + "ydirAdj": 431.603 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,389.4568,360.397]", + "rotation": 270, + "y": 222.54321, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 389.4568, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,394.95578,360.397]", + "rotation": 270, + "y": 217.04422, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 394.95578, + "ydirAdj": 431.603 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.45477,360.397]", + "rotation": 270, + "y": 211.54523, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.388214, + "dir": 0.0, + "xdirAdj": 400.45477, + "ydirAdj": 431.603 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,344.013,347.698]", + "rotation": 270, + "y": 267.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 6.1148987, + "dir": 0.0, + "xdirAdj": 344.013, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,350.1169,347.698]", + "rotation": 270, + "y": 261.8831, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 350.1169, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,355.7039,347.698]", + "rotation": 270, + "y": 256.2961, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 355.7039, + "ydirAdj": 444.302 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,362.08273,347.698]", + "rotation": 270, + "y": 249.91727, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 362.08273, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.1732,347.698]", + "rotation": 270, + "y": 246.82681, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 8.545441, + "dir": 0.0, + "xdirAdj": 365.1732, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,373.8616,347.698]", + "rotation": 270, + "y": 238.1384, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 373.8616, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,379.3606,347.698]", + "rotation": 270, + "y": 232.6394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 379.3606, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,384.8596,347.698]", + "rotation": 270, + "y": 227.14041, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 384.8596, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,388.64288,347.698]", + "rotation": 270, + "y": 223.35712, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 388.64288, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,391.73334,347.698]", + "rotation": 270, + "y": 220.26666, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 391.73334, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,396.61642,347.698]", + "rotation": 270, + "y": 215.38358, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 396.61642, + "ydirAdj": 444.302 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,404.90894,347.698]", + "rotation": 270, + "y": 207.09106, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 404.90894, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,408.59326,347.698]", + "rotation": 270, + "y": 203.40674, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 408.59326, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,413.47635,347.698]", + "rotation": 270, + "y": 198.52365, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 413.47635, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,418.97534,347.698]", + "rotation": 270, + "y": 193.02466, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 418.97534, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,423.9684,347.698]", + "rotation": 270, + "y": 188.03159, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 423.9684, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,428.8515,347.698]", + "rotation": 270, + "y": 183.1485, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 428.8515, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,431.94196,347.698]", + "rotation": 270, + "y": 180.05804, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 431.94196, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,435.0324,347.698]", + "rotation": 270, + "y": 176.96759, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 435.0324, + "ydirAdj": 444.302 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,440.5314,347.698]", + "rotation": 270, + "y": 171.4686, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 440.5314, + "ydirAdj": 444.302 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,344.013,335.112]", + "rotation": 270, + "y": 267.987, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 0.0, + "xdirAdj": 344.013, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,351.90955,335.112]", + "rotation": 270, + "y": 260.09045, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 351.90955, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,356.90262,335.112]", + "rotation": 270, + "y": 255.09738, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 0.0, + "xdirAdj": 356.90262, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,360.58694,335.112]", + "rotation": 270, + "y": 251.41306, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 360.58694, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,365.47003,335.112]", + "rotation": 270, + "y": 246.52997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 365.47003, + "ydirAdj": 456.888 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[10.998,0.0,0.0,10.998,371.354,335.112]", + "rotation": 270, + "y": 240.646, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 371.354, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,376.2371,335.112]", + "rotation": 270, + "y": 235.76291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 376.2371, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,381.73608,335.112]", + "rotation": 270, + "y": 230.26392, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 381.73608, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,387.23508,335.112]", + "rotation": 270, + "y": 224.76492, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 387.23508, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,392.82205,335.112]", + "rotation": 270, + "y": 219.17795, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 392.82205, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,395.9125,335.112]", + "rotation": 270, + "y": 216.0875, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 0.0, + "xdirAdj": 395.9125, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,400.7956,335.112]", + "rotation": 270, + "y": 211.2044, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 400.7956, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,403.88605,335.112]", + "rotation": 270, + "y": 208.11395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 0.0, + "xdirAdj": 403.88605, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,406.9765,335.112]", + "rotation": 270, + "y": 205.0235, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 406.9765, + "ydirAdj": 456.888 + }, + { + "textMatrix": "[10.998,0.0,0.0,10.998,412.4755,335.112]", + "rotation": 270, + "y": 199.5245, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 0.0, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 0.0, + "xdirAdj": 412.4755, + "ydirAdj": 456.888 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + }, + { + "sectionNumber": 94, + "text": "Text with 180° Regular Text w/o Annotations and Highlights Text with 180° Text with Annotation Dict-Annotation: David Ksenia Rule-Annotation: RuleAnnotation90GradP et al. Text with 180° Text with Highlights 1. Highlight: YellowHighlight90GradP 2. Highlight: GreenHighlight90GradP 3. Highlight: BlueHighlight90GradP 4. Highlight: RedHighlight90GradP Text with 180° For imported redaction Here: annotation Text Regular w/o and Highlights Annotations with Text 0° Text Text Dict-Annotation: Rule-Annotation: RuleAnnotation90GradP with with 0° Annotation David Ksenia et al. Text For Here: imported with annotation 0° redaction Text Text 1. 2. 3. 4. Highlight: Highlight: Highlight: Highlight: with with 0° Highlights YellowHighlight90GradP GreenHighlight90GradP BlueHighlight90GradP RedHighlight90GradP", + "headline": "", + "sectionAreas": [ + { + "topLeft": { + "x": 55.502014, + "y": 670.59204 + }, + "width": 675.6715, + "height": 100.18536, + "page": 4, + "header": null + } + ], + "images": [], + "textBlocks": [ + { + "minX": 55.502014, + "maxX": 731.1735, + "minY": 670.59204, + "maxY": 770.7774, + "classification": null, + "page": 4, + "orientation": "NONE", + "sequences": [ + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.699,656.391]", + "rotation": 270, + "y": 563.301, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7077026, + "heightDir": 6.087346, + "widthDirAdj": 6.7077026, + "dir": 90.0, + "xdirAdj": 656.391, + "ydirAdj": 48.698975 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.614,662.995]", + "rotation": 270, + "y": 563.386, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 662.995, + "ydirAdj": 48.614014 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.501,667.899]", + "rotation": 270, + "y": 563.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 667.899, + "ydirAdj": 48.500977 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.501,673.398]", + "rotation": 270, + "y": 563.499, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 673.398, + "ydirAdj": 48.500977 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.302,679.294]", + "rotation": 270, + "y": 563.698, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.93927, + "heightDir": 6.087346, + "widthDirAdj": 7.93927, + "dir": 90.0, + "xdirAdj": 679.294, + "ydirAdj": 48.302002 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.189,687.203]", + "rotation": 270, + "y": 563.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 687.203, + "ydirAdj": 48.189026 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.189,690.293]", + "rotation": 270, + "y": 563.811, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 690.293, + "ydirAdj": 48.189026 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,48.104,693.496]", + "rotation": 270, + "y": 563.896, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 693.496, + "ydirAdj": 48.104004 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,47.991,701.688]", + "rotation": 270, + "y": 564.009, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 701.688, + "ydirAdj": 47.991028 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,47.906,707.301]", + "rotation": 270, + "y": 564.094, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 707.301, + "ydirAdj": 47.906006 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,47.792,712.8]", + "rotation": 270, + "y": 564.208, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 712.8, + "ydirAdj": 47.791992 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,47.707,718.299]", + "rotation": 270, + "y": 564.29297, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.387512, + "heightDir": 6.087346, + "widthDirAdj": 4.387512, + "dir": 90.0, + "xdirAdj": 718.299, + "ydirAdj": 47.70703 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,61.313,656.702]", + "rotation": 270, + "y": 550.687, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3234863, + "heightDir": 6.087346, + "widthDirAdj": 7.3234863, + "dir": 90.0, + "xdirAdj": 656.702, + "ydirAdj": 61.31299 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,61.2,663.902]", + "rotation": 270, + "y": 550.8, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 663.902, + "ydirAdj": 61.200012 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,61.087,668.806]", + "rotation": 270, + "y": 550.913, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 668.806, + "ydirAdj": 61.086975 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,61.002,674.306]", + "rotation": 270, + "y": 550.998, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 674.306, + "ydirAdj": 61.002014 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.888,679.805]", + "rotation": 270, + "y": 551.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 679.805, + "ydirAdj": 60.888 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.888,682.894]", + "rotation": 270, + "y": 551.112, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 682.894, + "ydirAdj": 60.888 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.803,687.912]", + "rotation": 270, + "y": 551.197, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 90.0, + "xdirAdj": 687.912, + "ydirAdj": 60.80298 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.69,694.403]", + "rotation": 270, + "y": 551.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7077026, + "heightDir": 6.087346, + "widthDirAdj": 6.7077026, + "dir": 90.0, + "xdirAdj": 694.403, + "ydirAdj": 60.690002 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.605,701.093]", + "rotation": 270, + "y": 551.395, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 701.093, + "ydirAdj": 60.60498 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.491,705.997]", + "rotation": 270, + "y": 551.509, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 705.997, + "ydirAdj": 60.491028 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,60.406,711.496]", + "rotation": 270, + "y": 551.594, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 711.496, + "ydirAdj": 60.406006 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.899,656.901]", + "rotation": 270, + "y": 538.101, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.93927, + "heightDir": 6.087346, + "widthDirAdj": 7.93927, + "dir": 90.0, + "xdirAdj": 656.901, + "ydirAdj": 73.89899 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.814,664.696]", + "rotation": 270, + "y": 538.186, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 664.696, + "ydirAdj": 73.814026 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.814,667.899]", + "rotation": 270, + "y": 538.186, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 667.899, + "ydirAdj": 73.814026 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.587,676.205]", + "rotation": 270, + "y": 538.413, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.93927, + "heightDir": 6.087346, + "widthDirAdj": 7.93927, + "dir": 90.0, + "xdirAdj": 676.205, + "ydirAdj": 73.586975 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.502,684.113]", + "rotation": 270, + "y": 538.498, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 684.113, + "ydirAdj": 73.502014 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.389,689.613]", + "rotation": 270, + "y": 538.611, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 689.613, + "ydirAdj": 73.38898 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.304,695.112]", + "rotation": 270, + "y": 538.696, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 695.112, + "ydirAdj": 73.304016 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.191,700.611]", + "rotation": 270, + "y": 538.809, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 700.611, + "ydirAdj": 73.19098 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,73.106,703.701]", + "rotation": 270, + "y": 538.894, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 703.701, + "ydirAdj": 73.10602 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,72.992,708.69]", + "rotation": 270, + "y": 539.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 708.69, + "ydirAdj": 72.992004 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,72.992,711.808]", + "rotation": 270, + "y": 539.008, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 711.808, + "ydirAdj": 72.992004 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,72.907,714.898]", + "rotation": 270, + "y": 539.093, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 714.898, + "ydirAdj": 72.90698 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,72.794,720.397]", + "rotation": 270, + "y": 539.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 720.397, + "ydirAdj": 72.79401 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,72.709,725.896]", + "rotation": 270, + "y": 539.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.277527, + "heightDir": 6.087346, + "widthDirAdj": 4.277527, + "dir": 90.0, + "xdirAdj": 725.896, + "ydirAdj": 72.708984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,86.513,657.099]", + "rotation": 270, + "y": 525.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 657.099, + "ydirAdj": 86.513 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,86.513,662.003]", + "rotation": 270, + "y": 525.487, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 662.003, + "ydirAdj": 86.513 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,86.4,667.502]", + "rotation": 270, + "y": 525.6, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 667.502, + "ydirAdj": 86.400024 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,86.202,675.808]", + "rotation": 270, + "y": 525.798, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.93927, + "heightDir": 6.087346, + "widthDirAdj": 7.93927, + "dir": 90.0, + "xdirAdj": 675.808, + "ydirAdj": 86.20203 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,86.088,683.688]", + "rotation": 270, + "y": 525.912, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 683.688, + "ydirAdj": 86.08801 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,86.003,686.806]", + "rotation": 270, + "y": 525.997, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 686.806, + "ydirAdj": 86.00299 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.89,692.306]", + "rotation": 270, + "y": 526.11, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 692.306, + "ydirAdj": 85.890015 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.805,697.805]", + "rotation": 270, + "y": 526.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 697.805, + "ydirAdj": 85.80499 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.805,701.008]", + "rotation": 270, + "y": 526.195, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 701.008, + "ydirAdj": 85.80499 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.691,704.098]", + "rotation": 270, + "y": 526.309, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 704.098, + "ydirAdj": 85.69098 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.606,709.597]", + "rotation": 270, + "y": 526.394, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 709.597, + "ydirAdj": 85.60602 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.493,715.096]", + "rotation": 270, + "y": 526.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 715.096, + "ydirAdj": 85.49298 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,85.493,718.186]", + "rotation": 270, + "y": 526.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.277527, + "heightDir": 6.087346, + "widthDirAdj": 4.277527, + "dir": 90.0, + "xdirAdj": 718.186, + "ydirAdj": 85.49298 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,452.098]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 452.098, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,458.787]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 458.787, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,463.805]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 463.805, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,469.304]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 469.304, + "ydirAdj": 42.208008 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,475.2]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 475.2, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,483.109]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 483.109, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,486.198]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.198, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,489.288]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 489.288, + "ydirAdj": 42.208008 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,497.594]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 497.594, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,503.093]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 503.093, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,508.592]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 508.592, + "ydirAdj": 42.208008 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,42.208,514.205]", + "rotation": 270, + "y": 569.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087393, + "widthDirAdj": 4.3881836, + "dir": 90.0, + "xdirAdj": 514.205, + "ydirAdj": 42.208008 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,452.098]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087393, + "widthDirAdj": 6.7087708, + "dir": 90.0, + "xdirAdj": 452.098, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,458.787]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 458.787, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,463.691]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 463.691, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,469.191]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 469.191, + "ydirAdj": 54.794006 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,475.087]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 475.087, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,482.995]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 482.995, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,486.198]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 486.198, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,489.288]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 489.288, + "ydirAdj": 54.794006 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,497.594]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 497.594, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,505.502]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 505.502, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,511.002]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 511.002, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,516.501]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 516.501, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,522.113]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 522.113, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,525.203]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 525.203, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,530.107]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 530.107, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,533.197]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 533.197, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,536.287]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 536.287, + "ydirAdj": 54.794006 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.794,541.899]", + "rotation": 270, + "y": 557.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 541.899, + "ydirAdj": 54.794006 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,452.098]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 452.098, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,460.006]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 460.006, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,463.096]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 463.096, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,468.113]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,471.203]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 471.203, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,474.888]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 474.888, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,482.797]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 482.797, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,488.296]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 488.296, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,493.795]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 493.795, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,499.408]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 499.408, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,502.498]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 502.498, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,507.402]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 507.402, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,510.491]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464172, + "heightDir": 6.087393, + "widthDirAdj": 3.0464172, + "dir": 90.0, + "xdirAdj": 510.491, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,513.694]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 513.694, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,519.194]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 519.194, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,524.693]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 524.693, + "ydirAdj": 67.49298 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,530.589]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 530.589, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,538.498]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 538.498, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,543.402]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 543.402, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,548.901]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 548.901, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,551.991]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 551.991, + "ydirAdj": 67.49298 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,560.296]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 560.296, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,568.29]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087393, + "widthDirAdj": 4.2781982, + "dir": 90.0, + "xdirAdj": 568.29, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,572.598]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 572.598, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,577.502]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 577.502, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,583.002]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 583.002, + "ydirAdj": 67.49298 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.493,586.091]", + "rotation": 270, + "y": 544.507, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 586.091, + "ydirAdj": 67.49298 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,452.098]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 452.098, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,459.411]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 459.411, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,464.91]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 464.91, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,468.113]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,472.989]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.662323, + "heightDir": 6.087393, + "widthDirAdj": 3.662323, + "dir": 90.0, + "xdirAdj": 472.989, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,476.702]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 476.702, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,484.611]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 484.611, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,490.11]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 490.11, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,495.694]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 495.694, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,501.194]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 501.194, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,504.312]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 504.312, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,509.187]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 509.187, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,512.306]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 512.306, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,515.509]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 515.509, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,521.008]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 521.008, + "ydirAdj": 80.106995 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,80.107,526.507]", + "rotation": 270, + "y": 531.893, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 526.507, + "ydirAdj": 80.106995 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,452.098]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246765, + "heightDir": 6.087393, + "widthDirAdj": 7.3246765, + "dir": 90.0, + "xdirAdj": 452.098, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,459.411]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 459.411, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,464.91]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 464.91, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,468.113]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 468.113, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,472.989]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 472.989, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,480.898]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 480.898, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,486.397]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 486.397, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,491.896]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 491.896, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,497.509]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 497.509, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,500.598]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087393, + "widthDirAdj": 4.872101, + "dir": 90.0, + "xdirAdj": 500.598, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,505.502]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 505.502, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,508.592]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 508.592, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,511.71]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 511.71, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,517.294]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 517.294, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,522.794]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 522.794, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,528.293]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 528.293, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,533.792]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 533.792, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,541.701]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087393, + "widthDirAdj": 3.6623535, + "dir": 90.0, + "xdirAdj": 541.701, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,545.499]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 545.499, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,550.403]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087393, + "widthDirAdj": 5.4990234, + "dir": 90.0, + "xdirAdj": 550.403, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,555.902]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114868, + "heightDir": 6.087393, + "widthDirAdj": 6.114868, + "dir": 90.0, + "xdirAdj": 555.902, + "ydirAdj": 92.80603 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,564.803]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 564.803, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,569.707]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 569.707, + "ydirAdj": 92.80603 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,575.603]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087393, + "widthDirAdj": 4.8721313, + "dir": 90.0, + "xdirAdj": 575.603, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,580.507]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 580.507, + "ydirAdj": 92.80603 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.806,583.597]", + "rotation": 270, + "y": 519.194, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087393, + "widthDirAdj": 2.7495117, + "dir": 90.0, + "xdirAdj": 583.597, + "ydirAdj": 92.80603 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,59.613]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 90.0, + "xdirAdj": 59.613, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,66.302]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 66.302, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,71.206]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 71.206, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,76.706]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 76.706, + "ydirAdj": 29.309998 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,82.602]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 82.602, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,90.51]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 90.51, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,93.713]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 93.713, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,96.803]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 96.803, + "ydirAdj": 29.309998 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,104.995]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 104.995, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,110.608]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 110.608, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,116.107]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 116.107, + "ydirAdj": 29.309998 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,29.31,121.606]", + "rotation": 270, + "y": 582.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087393, + "widthDirAdj": 4.388199, + "dir": 90.0, + "xdirAdj": 121.606, + "ydirAdj": 29.309998 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,59.613]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087784, + "heightDir": 6.087393, + "widthDirAdj": 6.7087784, + "dir": 90.0, + "xdirAdj": 59.613, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,66.302]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 66.302, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,71.206]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 71.206, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,76.706]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 76.706, + "ydirAdj": 41.895996 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,82.602]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 82.602, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,90.595]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 90.595, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,93.713]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 93.713, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,96.803]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 96.803, + "ydirAdj": 41.895996 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,105.109]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 105.109, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,112.989]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 112.989, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,116.107]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 116.107, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,121.606]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 121.606, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,127.106]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 127.106, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,130.309]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 130.309, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,133.398]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 133.398, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,138.898]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 138.898, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,144.397]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 144.397, + "ydirAdj": 41.895996 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,41.896,147.6]", + "rotation": 270, + "y": 570.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087393, + "widthDirAdj": 4.2782288, + "dir": 90.0, + "xdirAdj": 147.6, + "ydirAdj": 41.895996 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,59.613]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 59.613, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,65.112]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 90.0, + "xdirAdj": 65.112, + "ydirAdj": 54.59497 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,70.611]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 70.611, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,78.605]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 78.605, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,81.694]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 81.694, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,87.194]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 87.194, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,92.693]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 92.693, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,95.811]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 95.811, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,98.986]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 98.986, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,104.513]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 104.513, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,110.013]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 110.013, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,113.102]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 113.102, + "ydirAdj": 54.59497 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,118.998]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 118.998, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,126.907]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 126.907, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,131.811]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 131.811, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,134.986]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 134.986, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,138.104]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 138.104, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,143.603]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 143.603, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,151.512]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 151.512, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,159.392]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 159.392, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,162.51]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 162.51, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,168.094]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 168.094, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,173.594]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 173.594, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,176.712]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 176.712, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,179.802]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 179.802, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,185.386]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 185.386, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,190.913]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 190.913, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,194.003]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 194.003, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,199.502]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 199.502, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,205.002]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 205.002, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,212.91]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 212.91, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,216.709]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 216.709, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,221.613]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 221.613, + "ydirAdj": 54.59497 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,54.595,227.112]", + "rotation": 270, + "y": 557.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 90.0, + "xdirAdj": 227.112, + "ydirAdj": 54.59497 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,59.613]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 59.613, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,65.112]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 90.0, + "xdirAdj": 65.112, + "ydirAdj": 67.208984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,70.611]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 70.611, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,78.605]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 78.605, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,81.694]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 81.694, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,87.194]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 87.194, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,92.693]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 92.693, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,95.811]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 95.811, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,98.986]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 98.986, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,104.513]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 104.513, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,110.013]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 110.013, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,113.102]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 113.102, + "ydirAdj": 67.208984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,118.998]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 118.998, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,126.907]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 126.907, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,130.592]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 130.592, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,135.609]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 135.609, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,140.513]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 140.513, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,146.013]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 146.013, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,153.893]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 153.893, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,157.011]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 157.011, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,162.595]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 162.595, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,168.094]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 168.094, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,171.213]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 171.213, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,174.302]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 174.302, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,179.887]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 179.887, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,185.386]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 185.386, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,188.504]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 188.504, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,194.003]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 194.003, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,199.502]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 199.502, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,207.411]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 207.411, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,211.209]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 211.209, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,216.113]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 216.113, + "ydirAdj": 67.208984 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,67.209,221.613]", + "rotation": 270, + "y": 544.791, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 90.0, + "xdirAdj": 221.613, + "ydirAdj": 67.208984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,59.613]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 59.613, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,65.112]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 90.0, + "xdirAdj": 65.112, + "ydirAdj": 79.909 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,70.611]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 70.611, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,78.605]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 78.605, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,81.694]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 81.694, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,87.194]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 87.194, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,92.693]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 92.693, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,95.811]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 95.811, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,98.986]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 98.986, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,104.513]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 104.513, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,110.013]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 110.013, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,113.102]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 113.102, + "ydirAdj": 79.909 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,118.998]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 90.0, + "xdirAdj": 118.998, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,126.312]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 126.312, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,129.487]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 129.487, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,134.986]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 134.986, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,139.89]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 139.89, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,147.798]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 147.798, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,150.888]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 150.888, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,156.387]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 156.387, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,162.0]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 162.0, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,165.09]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 165.09, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,168.208]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 168.208, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,173.707]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 173.707, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,179.291]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 179.291, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,182.409]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 182.409, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,187.909]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 187.909, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,193.408]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 193.408, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,201.288]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 201.288, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,205.087]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 205.087, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,209.991]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 209.991, + "ydirAdj": 79.909 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,79.909,215.49]", + "rotation": 270, + "y": 532.091, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 90.0, + "xdirAdj": 215.49, + "ydirAdj": 79.909 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,59.613]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 59.613, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,65.112]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087393, + "widthDirAdj": 2.7494965, + "dir": 90.0, + "xdirAdj": 65.112, + "ydirAdj": 92.49402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,70.611]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405594, + "heightDir": 6.087393, + "widthDirAdj": 7.9405594, + "dir": 90.0, + "xdirAdj": 70.611, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,78.605]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 78.605, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,81.694]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 81.694, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,87.194]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 87.194, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,92.693]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 92.693, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,95.811]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 95.811, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,98.986]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 98.986, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,104.513]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087393, + "widthDirAdj": 5.4990005, + "dir": 90.0, + "xdirAdj": 104.513, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,110.013]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 110.013, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,113.102]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 113.102, + "ydirAdj": 92.49402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,118.998]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324669, + "heightDir": 6.087393, + "widthDirAdj": 7.324669, + "dir": 90.0, + "xdirAdj": 118.998, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,126.312]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 126.312, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,131.187]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 131.187, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,136.8]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 136.8, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,144.709]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 144.709, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,147.798]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 147.798, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,153.298]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 153.298, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,158.797]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 158.797, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,162.0]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 162.0, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,165.09]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 165.09, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,170.589]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 170.589, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,176.088]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087393, + "widthDirAdj": 3.0464478, + "dir": 90.0, + "xdirAdj": 176.088, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,179.206]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 179.206, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,184.706]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 184.706, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,190.29]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087393, + "widthDirAdj": 7.9405518, + "dir": 90.0, + "xdirAdj": 190.29, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,198.198]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087393, + "widthDirAdj": 3.6623383, + "dir": 90.0, + "xdirAdj": 198.198, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,201.912]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087393, + "widthDirAdj": 4.872116, + "dir": 90.0, + "xdirAdj": 201.912, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,206.787]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087393, + "widthDirAdj": 5.498993, + "dir": 90.0, + "xdirAdj": 206.787, + "ydirAdj": 92.49402 + }, + { + "textMatrix": "[0.0,10.998,-10.998,0.0,92.494,212.4]", + "rotation": 270, + "y": 519.506, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148834, + "heightDir": 6.087393, + "widthDirAdj": 6.1148834, + "dir": 90.0, + "xdirAdj": 212.4, + "ydirAdj": 92.49402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,65.509,287.887]", + "rotation": 270, + "y": 546.49097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7077026, + "heightDir": 6.087346, + "widthDirAdj": 6.7077026, + "dir": 90.0, + "xdirAdj": 287.887, + "ydirAdj": 65.50903 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,65.395,294.491]", + "rotation": 270, + "y": 546.605, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 294.491, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,65.31,299.395]", + "rotation": 270, + "y": 546.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 299.395, + "ydirAdj": 65.31 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,65.31,304.894]", + "rotation": 270, + "y": 546.69, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 304.894, + "ydirAdj": 65.31 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,65.112,310.791]", + "rotation": 270, + "y": 546.888, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9393005, + "heightDir": 6.087346, + "widthDirAdj": 7.9393005, + "dir": 90.0, + "xdirAdj": 310.791, + "ydirAdj": 65.112 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.998,318.699]", + "rotation": 270, + "y": 547.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 318.699, + "ydirAdj": 64.997986 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.998,321.902]", + "rotation": 270, + "y": 547.002, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 321.902, + "ydirAdj": 64.997986 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.913,324.992]", + "rotation": 270, + "y": 547.087, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 324.992, + "ydirAdj": 64.913025 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.8,333.213]", + "rotation": 270, + "y": 547.2, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 333.213, + "ydirAdj": 64.79999 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.687,338.797]", + "rotation": 270, + "y": 547.313, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "8", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 338.797, + "ydirAdj": 64.68701 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.602,344.296]", + "rotation": 270, + "y": 547.398, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 344.296, + "ydirAdj": 64.60199 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,64.488,349.795]", + "rotation": 270, + "y": 547.512, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.387512, + "heightDir": 6.087346, + "widthDirAdj": 4.387512, + "dir": 90.0, + "xdirAdj": 349.795, + "ydirAdj": 64.487976 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,78.208,288.113]", + "rotation": 270, + "y": 533.792, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.113922, + "heightDir": 6.087346, + "widthDirAdj": 6.113922, + "dir": 90.0, + "xdirAdj": 288.113, + "ydirAdj": 78.20801 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,78.094,294.094]", + "rotation": 270, + "y": 533.906, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 294.094, + "ydirAdj": 78.093994 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,78.009,299.594]", + "rotation": 270, + "y": 533.99097, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 90.0, + "xdirAdj": 299.594, + "ydirAdj": 78.00903 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.896,306.113]", + "rotation": 270, + "y": 534.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 306.113, + "ydirAdj": 77.895996 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.896,309.203]", + "rotation": 270, + "y": 534.104, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.544067, + "heightDir": 6.087346, + "widthDirAdj": 8.544067, + "dir": 90.0, + "xdirAdj": 309.203, + "ydirAdj": 77.895996 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.698,317.792]", + "rotation": 270, + "y": 534.302, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 317.792, + "ydirAdj": 77.698 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.613,323.405]", + "rotation": 270, + "y": 534.387, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 323.405, + "ydirAdj": 77.612976 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.499,328.904]", + "rotation": 270, + "y": 534.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 90.0, + "xdirAdj": 328.904, + "ydirAdj": 77.49902 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.499,332.589]", + "rotation": 270, + "y": 534.501, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 332.589, + "ydirAdj": 77.49902 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.414,335.707]", + "rotation": 270, + "y": 534.586, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 335.707, + "ydirAdj": 77.414 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.301,340.611]", + "rotation": 270, + "y": 534.699, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 340.611, + "ydirAdj": 77.301025 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.187,348.888]", + "rotation": 270, + "y": 534.813, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 90.0, + "xdirAdj": 348.888, + "ydirAdj": 77.18701 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,77.102,352.602]", + "rotation": 270, + "y": 534.898, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 352.602, + "ydirAdj": 77.10199 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.989,357.506]", + "rotation": 270, + "y": 535.011, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 357.506, + "ydirAdj": 76.98901 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.904,363.09]", + "rotation": 270, + "y": 535.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 363.09, + "ydirAdj": 76.90399 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.904,367.994]", + "rotation": 270, + "y": 535.096, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 367.994, + "ydirAdj": 76.90399 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.791,372.898]", + "rotation": 270, + "y": 535.209, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 372.898, + "ydirAdj": 76.791016 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.706,375.987]", + "rotation": 270, + "y": 535.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 375.987, + "ydirAdj": 76.70599 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.706,379.106]", + "rotation": 270, + "y": 535.294, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 379.106, + "ydirAdj": 76.70599 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,76.592,384.69]", + "rotation": 270, + "y": 535.408, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 384.69, + "ydirAdj": 76.59198 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.794,288.312]", + "rotation": 270, + "y": 521.206, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9393005, + "heightDir": 6.087346, + "widthDirAdj": 7.9393005, + "dir": 90.0, + "xdirAdj": 288.312, + "ydirAdj": 90.79401 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.709,296.107]", + "rotation": 270, + "y": 521.291, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 296.107, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.595,301.011]", + "rotation": 270, + "y": 521.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6617432, + "heightDir": 6.087346, + "widthDirAdj": 3.6617432, + "dir": 90.0, + "xdirAdj": 301.011, + "ydirAdj": 90.59497 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.595,304.696]", + "rotation": 270, + "y": 521.405, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 304.696, + "ydirAdj": 90.59497 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.51,309.713]", + "rotation": 270, + "y": 521.49, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 309.713, + "ydirAdj": 90.51001 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.397,315.496]", + "rotation": 270, + "y": 521.603, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 315.496, + "ydirAdj": 90.39697 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.312,320.513]", + "rotation": 270, + "y": 521.688, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 320.513, + "ydirAdj": 90.31201 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.198,326.013]", + "rotation": 270, + "y": 521.802, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 326.013, + "ydirAdj": 90.198 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.113,331.512]", + "rotation": 270, + "y": 521.887, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 331.512, + "ydirAdj": 90.112976 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,90.0,337.011]", + "rotation": 270, + "y": 522.0, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 337.011, + "ydirAdj": 90.0 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,89.887,340.101]", + "rotation": 270, + "y": 522.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.871338, + "heightDir": 6.087346, + "widthDirAdj": 4.871338, + "dir": 90.0, + "xdirAdj": 340.101, + "ydirAdj": 89.887024 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,89.887,345.09]", + "rotation": 270, + "y": 522.113, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 345.09, + "ydirAdj": 89.887024 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,89.802,348.208]", + "rotation": 270, + "y": 522.198, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0459595, + "heightDir": 6.087346, + "widthDirAdj": 3.0459595, + "dir": 90.0, + "xdirAdj": 348.208, + "ydirAdj": 89.802 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,89.688,351.298]", + "rotation": 270, + "y": 522.312, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 351.298, + "ydirAdj": 89.68799 + }, + { + "textMatrix": "[-0.1919151,10.996241,-10.996241,-0.1919151,89.688,356.797]", + "rotation": 270, + "y": 522.312, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498108, + "heightDir": 6.087346, + "widthDirAdj": 5.498108, + "dir": 90.0, + "xdirAdj": 356.797, + "ydirAdj": 89.68799 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,736.498]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 270.0, + "xdirAdj": 55.502014, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,729.893]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 62.106995, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,724.989]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 67.01099, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,719.49]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 72.51001, + "ydirAdj": 65.39502 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,736.498]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 270.0, + "xdirAdj": 55.502014, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,729.298]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 62.702026, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,724.394]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 67.60602, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,718.809]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 73.19098, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,713.31]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 78.69, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,710.192]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 81.80798, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,705.288]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 86.711975, + "ydirAdj": 78.00897 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,736.498]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 55.502014, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,728.702]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "/", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 63.297974, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,725.613]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 66.387024, + "ydirAdj": 90.708984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,736.498]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 55.502014, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,731.707]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 60.29303, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,726.208]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 65.79199, + "ydirAdj": 103.29401 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,717.902]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 74.09802, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,709.994]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 82.00598, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,706.904]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 85.09601, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,701.291]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 90.708984, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,695.792]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 96.20801, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,692.702]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 99.29797, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,689.613]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 102.387024, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.706,684.113]", + "rotation": 270, + "y": 103.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 107.887024, + "ydirAdj": 103.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.791,678.501]", + "rotation": 270, + "y": 103.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 113.49902, + "ydirAdj": 103.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,508.791,675.411]", + "rotation": 270, + "y": 103.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 270.0, + "xdirAdj": 116.58899, + "ydirAdj": 103.209015 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,717.307]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 74.69299, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,709.398]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 82.60199, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,703.786]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 88.21399, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,698.287]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 93.71301, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,692.787]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 99.21301, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,689.698]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 102.302, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,684.794]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 107.20599, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.291,681.591]", + "rotation": 270, + "y": 90.708984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.409, + "ydirAdj": 90.708984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.405,678.501]", + "rotation": 270, + "y": 90.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 113.49902, + "ydirAdj": 90.59497 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.405,673.002]", + "rotation": 270, + "y": 90.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 118.997986, + "ydirAdj": 90.59497 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,521.405,667.502]", + "rotation": 270, + "y": 90.59497, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2781982, + "heightDir": 6.087402, + "widthDirAdj": 4.2781982, + "dir": 270.0, + "xdirAdj": 124.497986, + "ydirAdj": 90.59497 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,713.594]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 78.406006, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,705.713]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 86.28699, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,702.595]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 89.40503, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,699.392]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 92.60797, + "ydirAdj": 65.39502 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,698.797]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 270.0, + "xdirAdj": 93.203, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,692.107]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 99.893005, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,687.203]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 104.797, + "ydirAdj": 78.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,533.991,681.591]", + "rotation": 270, + "y": 78.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 110.409, + "ydirAdj": 78.00897 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,691.2]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 100.79999, + "ydirAdj": 65.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,546.605,685.587]", + "rotation": 270, + "y": 65.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 270.0, + "xdirAdj": 106.413025, + "ydirAdj": 65.39502 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,594.113]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 270.0, + "xdirAdj": 197.88702, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,587.509]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 204.49103, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,582.605]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 209.39502, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,577.106]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 214.89398, + "ydirAdj": 58.195007 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,594.113]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7088013, + "heightDir": 6.087402, + "widthDirAdj": 6.7088013, + "dir": 270.0, + "xdirAdj": 197.88702, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,587.509]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 204.49103, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,582.605]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 209.39502, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,577.106]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 214.89398, + "ydirAdj": 70.80902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,594.113]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 197.88702, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,586.29]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 205.71002, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,583.2]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 208.79999, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,578.211]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 213.789, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,575.093]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 216.90698, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,571.408]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 220.59198, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,563.499]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 228.50098, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,558.0]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 234.0, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,552.501]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 239.49902, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,546.888]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 245.112, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,543.798]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 248.20203, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,538.894]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 253.10602, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,535.805]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 256.195, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,532.602]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 259.398, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,527.102]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 264.898, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,521.603]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 270.39697, + "ydirAdj": 83.39502 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,594.113]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 270.0, + "xdirAdj": 197.88702, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,586.913]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 205.08698, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,581.386]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 210.61401, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,578.296]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 213.70398, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,573.307]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "-", + "width": 3.6623535, + "heightDir": 6.087402, + "widthDirAdj": 3.6623535, + "dir": 270.0, + "xdirAdj": 218.693, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,569.594]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 222.406, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,561.713]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 230.28699, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,556.186]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 235.81403, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,550.687]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 241.31299, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,545.187]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 246.81299, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,542.013]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 249.987, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,537.109]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 254.89099, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,533.991]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 258.00897, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,530.901]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 261.099, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,525.288]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 266.71198, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,519.789]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 272.211, + "ydirAdj": 96.00897 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,594.113]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.324646, + "heightDir": 6.087402, + "widthDirAdj": 7.324646, + "dir": 270.0, + "xdirAdj": 197.88702, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,586.913]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 205.08698, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,581.386]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 210.61401, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,578.296]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 213.70398, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,573.307]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 218.693, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,565.398]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 226.60199, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,559.899]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 232.10101, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,554.4]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 237.59998, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,548.901]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 243.099, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,545.698]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 246.302, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,540.794]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 251.206, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,537.704]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 254.29602, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,534.586]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 257.414, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,529.087]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 262.91302, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,523.587]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 268.41302, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,518.003]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 273.997, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,512.504]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 279.49597, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,504.595]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 287.405, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,500.797]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 291.203, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,495.893]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 296.107, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,490.394]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.1148987, + "heightDir": 6.087402, + "widthDirAdj": 6.1148987, + "dir": 270.0, + "xdirAdj": 301.606, + "ydirAdj": 108.709015 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,571.209]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 220.79102, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,563.301]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 228.69897, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,560.211]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 231.789, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,557.008]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 234.992, + "ydirAdj": 58.195007 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,571.209]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 220.79102, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,563.301]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 228.69897, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,560.098]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 231.90198, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,557.008]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 234.992, + "ydirAdj": 70.80902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,548.787]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 243.21301, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,543.203]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.3881836, + "heightDir": 6.087402, + "widthDirAdj": 4.3881836, + "dir": 270.0, + "xdirAdj": 248.797, + "ydirAdj": 58.195007 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,548.702]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "A", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 243.29797, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,540.794]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 251.206, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,535.294]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 256.706, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,529.795]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.4990234, + "heightDir": 6.087402, + "widthDirAdj": 5.4990234, + "dir": 270.0, + "xdirAdj": 262.20502, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,524.296]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 267.70398, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,521.093]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.8721313, + "heightDir": 6.087402, + "widthDirAdj": 4.8721313, + "dir": 270.0, + "xdirAdj": 270.90698, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,516.189]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 275.81097, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,513.099]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 278.901, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,510.009]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 281.991, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,504.397]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 287.603, + "ydirAdj": 70.695984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,515.707]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "D", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 276.29303, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,507.798]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 284.202, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,502.894]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "v", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 289.106, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,497.395]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 294.605, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,494.306]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 297.694, + "ydirAdj": 83.39502 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,486.0]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "K", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 306.0, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,478.006]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 313.994, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,473.698]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 318.302, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,468.794]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 323.206, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,463.294]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 328.706, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,460.205]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 331.795, + "ydirAdj": 83.31 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,481.493]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 310.507, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,476.589]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 315.411, + "ydirAdj": 108.595 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,470.693]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 321.307, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,465.789]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 326.211, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,462.699]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7495117, + "heightDir": 6.087402, + "widthDirAdj": 2.7495117, + "dir": 270.0, + "xdirAdj": 329.301, + "ydirAdj": 108.595 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,393.789]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.7087708, + "heightDir": 6.087402, + "widthDirAdj": 6.7087708, + "dir": 270.0, + "xdirAdj": 398.211, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,387.213]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 404.787, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,382.309]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 409.691, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,376.809]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 415.191, + "ydirAdj": 61.794983 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,393.789]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "F", + "width": 6.1148987, + "heightDir": 6.087402, + "widthDirAdj": 6.1148987, + "dir": 270.0, + "xdirAdj": 398.211, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,387.808]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 404.192, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,382.309]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 409.691, + "ydirAdj": 74.49402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,393.789]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 398.211, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,385.994]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 406.006, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,381.09]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 410.91, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,377.405]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 414.595, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,372.501]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 419.499, + "ydirAdj": 87.10901 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,375.789]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 416.211, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,372.699]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "m", + "width": 8.545441, + "heightDir": 6.087402, + "widthDirAdj": 8.545441, + "dir": 270.0, + "xdirAdj": 419.301, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,363.997]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "p", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 428.003, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,358.498]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 433.502, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,352.998]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 439.002, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,349.313]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 442.687, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,346.195]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 445.805, + "ydirAdj": 74.49402 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.506,341.291]", + "rotation": 270, + "y": 74.49402, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 450.709, + "ydirAdj": 74.49402 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,370.913]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 421.087, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,363.005]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 428.995, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,359.887]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 432.113, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,356.712]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 435.288, + "ydirAdj": 61.794983 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,366.605]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 425.395, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,361.701]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 430.299, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,356.088]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 435.912, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,350.589]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 441.411, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,345.09]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 446.91, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,342.0]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 450.0, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,524.891,337.011]", + "rotation": 270, + "y": 87.10901, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 454.989, + "ydirAdj": 87.10901 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,525.005,333.893]", + "rotation": 270, + "y": 86.994995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 458.107, + "ydirAdj": 86.994995 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,525.005,330.803]", + "rotation": 270, + "y": 86.994995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 461.197, + "ydirAdj": 86.994995 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,525.005,325.304]", + "rotation": 270, + "y": 86.994995, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 466.696, + "ydirAdj": 86.994995 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,348.491]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 443.509, + "ydirAdj": 61.794983 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,550.205,342.907]", + "rotation": 270, + "y": 61.794983, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388214, + "heightDir": 6.087402, + "widthDirAdj": 4.388214, + "dir": 270.0, + "xdirAdj": 449.093, + "ydirAdj": 61.794983 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,332.901]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.662323, + "heightDir": 6.087402, + "widthDirAdj": 3.662323, + "dir": 270.0, + "xdirAdj": 459.099, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,329.187]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 462.813, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,324.312]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 467.688, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,318.813]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 473.187, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,313.909]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "c", + "width": 4.872101, + "heightDir": 6.087402, + "widthDirAdj": 4.872101, + "dir": 270.0, + "xdirAdj": 478.091, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,309.005]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 482.995, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,305.887]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 486.113, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,302.712]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 489.288, + "ydirAdj": 74.409 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,537.591,297.213]", + "rotation": 270, + "y": 74.409, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 494.787, + "ydirAdj": 74.409 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,236.409]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087402, + "widthDirAdj": 6.708786, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,229.805]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 562.195, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,224.901]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 567.099, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,219.402]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 572.598, + "ydirAdj": 58.195007 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,236.409]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "T", + "width": 6.708786, + "heightDir": 6.087402, + "widthDirAdj": 6.708786, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,229.805]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 562.195, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,224.901]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "x", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 567.099, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,219.402]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 572.598, + "ydirAdj": 70.80902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,236.409]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "1", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,230.995]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087402, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 561.005, + "ydirAdj": 83.50897 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,236.409]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "2", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,230.995]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087402, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 561.005, + "ydirAdj": 96.093994 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,236.409]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "3", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,230.995]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087402, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 561.005, + "ydirAdj": 108.79401 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,236.409]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "4", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 555.591, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,230.995]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ".", + "width": 2.7494965, + "heightDir": 6.087402, + "widthDirAdj": 2.7494965, + "dir": 270.0, + "xdirAdj": 561.005, + "ydirAdj": 121.40799 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,225.496]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 566.504, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,217.502]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.498, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,214.413]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 577.58704, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,208.913]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 583.08704, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,203.386]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 588.614, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,200.296]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 591.704, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,197.093]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.907, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,191.594]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.406, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,186.094]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 605.906, + "ydirAdj": 83.50897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.491,183.005]", + "rotation": 270, + "y": 83.50897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 608.995, + "ydirAdj": 83.50897 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,225.496]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 566.504, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,217.587]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.41296, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,214.413]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 577.58704, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,208.913]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 583.08704, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,203.386]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 588.614, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,200.296]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 591.704, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,197.093]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.907, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,191.707]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.29297, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,186.094]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 605.906, + "ydirAdj": 96.093994 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.906,183.005]", + "rotation": 270, + "y": 96.093994, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 608.995, + "ydirAdj": 96.093994 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,225.496]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 566.504, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,217.587]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.41296, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,214.413]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 577.58704, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,208.913]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 583.08704, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,203.386]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 588.614, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,200.296]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 591.704, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,197.093]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.907, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,191.594]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.406, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,186.094]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 605.906, + "ydirAdj": 108.79401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.206,183.005]", + "rotation": 270, + "y": 108.79401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 608.995, + "ydirAdj": 108.79401 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,225.496]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 566.504, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,217.502]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 574.498, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,214.413]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 577.58704, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,208.913]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 583.08704, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,203.386]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 588.614, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,200.296]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 591.704, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,197.093]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 594.907, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,191.594]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.406, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,186.094]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 605.906, + "ydirAdj": 121.40799 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.592,183.005]", + "rotation": 270, + "y": 121.40799, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": ":", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 608.995, + "ydirAdj": 121.40799 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,213.506]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 578.494, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,205.597]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 586.403, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,202.507]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 589.493, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,199.304]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 592.696, + "ydirAdj": 58.195007 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,213.506]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 578.494, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,205.597]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 586.403, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,202.394]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 589.606, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,199.304]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 592.696, + "ydirAdj": 70.80902 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,191.112]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 600.888, + "ydirAdj": 58.195007 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,553.805,185.499]", + "rotation": 270, + "y": 58.195007, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "°", + "width": 4.388199, + "heightDir": 6.087402, + "widthDirAdj": 4.388199, + "dir": 270.0, + "xdirAdj": 606.501, + "ydirAdj": 58.195007 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,190.998]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 601.002, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,183.09]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 608.91003, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.191,180.0]", + "rotation": 270, + "y": 70.80902, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 612.0, + "ydirAdj": 70.80902 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,174.501]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 617.499, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,169.002]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 622.998, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,165.798]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 626.202, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,162.709]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 629.291, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,157.209]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 634.791, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,151.71]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 640.29, + "ydirAdj": 70.695984 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,541.304,148.592]", + "rotation": 270, + "y": 70.695984, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "s", + "width": 4.2782288, + "heightDir": 6.087402, + "widthDirAdj": 4.2782288, + "dir": 270.0, + "xdirAdj": 643.408, + "ydirAdj": 70.695984 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,177.109]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "Y", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 614.891, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,169.2]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 622.8, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,164.296]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 627.704, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,161.093]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 630.907, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,158.003]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "o", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 633.997, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,152.504]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "w", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 639.496, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,144.595]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 647.405, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,136.687]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 655.313, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,133.597]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 658.403, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,128.013]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 663.987, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.605,122.513]", + "rotation": 270, + "y": 83.39502, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 669.487, + "ydirAdj": 83.39502 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,119.395]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 672.605, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,116.306]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 675.694, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,110.693]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 681.307, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,105.194]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 686.806, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,102.104]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 689.896, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,96.605]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 695.395, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,91.106]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087402, + "widthDirAdj": 7.9405594, + "dir": 270.0, + "xdirAdj": 700.894, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,83.197]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087402, + "widthDirAdj": 3.6623306, + "dir": 270.0, + "xdirAdj": 708.803, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,79.398]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 712.602, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,74.494]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 717.506, + "ydirAdj": 83.31 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,528.69,68.995]", + "rotation": 270, + "y": 83.31, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114887, + "heightDir": 6.087402, + "widthDirAdj": 6.114887, + "dir": 270.0, + "xdirAdj": 723.005, + "ydirAdj": 83.31 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,177.109]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 614.891, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,169.2]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623383, + "heightDir": 6.087402, + "widthDirAdj": 3.6623383, + "dir": 270.0, + "xdirAdj": 622.8, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,165.487]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 626.513, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,160.611]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 631.38904, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,155.707]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "n", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 636.29297, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,150.094]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 641.906, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,142.186]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 649.81396, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,139.096]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 652.904, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,133.597]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 658.403, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,128.013]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 663.987, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,515.991,124.894]", + "rotation": 270, + "y": 96.00897, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 667.106, + "ydirAdj": 96.00897 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,121.805]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 670.195, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,116.306]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 675.694, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,110.693]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 681.307, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,107.603]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 684.397, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,102.104]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 689.896, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,96.605]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087402, + "widthDirAdj": 7.9405594, + "dir": 270.0, + "xdirAdj": 695.395, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,88.696]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087402, + "widthDirAdj": 3.6623306, + "dir": 270.0, + "xdirAdj": 703.304, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,85.011]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 706.989, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,80.107]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 711.893, + "ydirAdj": 95.895996 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,516.104,74.494]", + "rotation": 270, + "y": 95.895996, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114891, + "heightDir": 6.087402, + "widthDirAdj": 6.114891, + "dir": 270.0, + "xdirAdj": 717.506, + "ydirAdj": 95.895996 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,177.109]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "B", + "width": 7.3246613, + "heightDir": 6.087402, + "widthDirAdj": 7.3246613, + "dir": 270.0, + "xdirAdj": 614.891, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,169.795]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 622.205, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,166.706]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "u", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 625.294, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,161.093]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 630.907, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,156.189]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 635.81104, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,148.309]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 643.691, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,145.191]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 646.809, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,139.691]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 652.309, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,134.192]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 657.808, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,130.989]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 661.011, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,127.899]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 664.101, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.291,122.4]", + "rotation": 270, + "y": 108.709015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 669.6, + "ydirAdj": 108.709015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,116.901]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 675.099, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,113.811]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 678.189, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,108.312]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 683.688, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,102.699]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087402, + "widthDirAdj": 7.9405594, + "dir": 270.0, + "xdirAdj": 689.301, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,94.791]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087402, + "widthDirAdj": 3.6623306, + "dir": 270.0, + "xdirAdj": 697.209, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,91.106]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 700.894, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,86.202]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 705.798, + "ydirAdj": 108.595 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,503.405,80.589]", + "rotation": 270, + "y": 108.595, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114891, + "heightDir": 6.087402, + "widthDirAdj": 6.114891, + "dir": 270.0, + "xdirAdj": 711.411, + "ydirAdj": 108.595 + } + ] + }, + { + "page": 4, + "textPositions": [ + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,177.109]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "R", + "width": 7.3246613, + "heightDir": 6.087402, + "widthDirAdj": 7.3246613, + "dir": 270.0, + "xdirAdj": 614.891, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,169.795]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "e", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 622.205, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,164.891]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 627.109, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,159.307]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "H", + "width": 7.9405518, + "heightDir": 6.087402, + "widthDirAdj": 7.9405518, + "dir": 270.0, + "xdirAdj": 632.693, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,151.398]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 640.602, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,148.309]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 643.691, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,142.809]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.498993, + "heightDir": 6.087402, + "widthDirAdj": 5.498993, + "dir": 270.0, + "xdirAdj": 649.191, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,137.31]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "l", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 654.69, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,134.107]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "i", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 657.893, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,130.989]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "g", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 661.011, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.706,125.49]", + "rotation": 270, + "y": 121.29401, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "h", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 666.51, + "ydirAdj": 121.29401 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,119.991]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "t", + "width": 3.0464478, + "heightDir": 6.087402, + "widthDirAdj": 3.0464478, + "dir": 270.0, + "xdirAdj": 672.00903, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,116.901]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "9", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 675.099, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,111.402]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "0", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 680.598, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,105.789]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "G", + "width": 7.9405594, + "heightDir": 6.087402, + "widthDirAdj": 7.9405594, + "dir": 270.0, + "xdirAdj": 686.211, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,97.909]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "r", + "width": 3.6623306, + "heightDir": 6.087402, + "widthDirAdj": 3.6623306, + "dir": 270.0, + "xdirAdj": 694.091, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,94.195]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "a", + "width": 4.872116, + "heightDir": 6.087402, + "widthDirAdj": 4.872116, + "dir": 270.0, + "xdirAdj": 697.805, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,89.291]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "d", + "width": 5.4990005, + "heightDir": 6.087402, + "widthDirAdj": 5.4990005, + "dir": 270.0, + "xdirAdj": 702.709, + "ydirAdj": 121.209015 + }, + { + "textMatrix": "[0.01913652,-10.998,10.998,0.01913652,490.791,83.707]", + "rotation": 270, + "y": 121.209015, + "pageHeight": 792.0, + "pageWidth": 612.0, + "unicode": "P", + "width": 6.114891, + "heightDir": 6.087402, + "widthDirAdj": 6.114891, + "dir": 270.0, + "xdirAdj": 708.29297, + "ydirAdj": 121.209015 + } + ] + } + ], + "rotation": 270, + "mostPopularWordFont": null, + "mostPopularWordStyle": null, + "mostPopularWordFontSize": 0.0, + "mostPopularWordHeight": 0.0, + "mostPopularWordSpaceWidth": 0.0, + "highestFontSize": 0.0 + } + ], + "tabularData": {}, + "cellStarts": [], + "table": false + } + ] +} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json deleted file mode 100644 index ff7318d62..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_category_v2.json +++ /dev/null @@ -1 +0,0 @@ -[{"category":"LICENSE","recordCount":28},{"category":"DOWNLOAD","recordCount":2},{"category":"AUDIT_LOG","recordCount":2},{"category":"DOSSIER","recordCount":64},{"category":"DOCUMENT","recordCount":40},{"category":"AUDIT","recordCount":2},{"category":"DOSSIER_TEMPLATE","recordCount":1}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json deleted file mode 100644 index 95a77f215..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/audit_record_v2.json +++ /dev/null @@ -1 +0,0 @@ -[{"recordId":null,"recordDate":"2021-11-15T13:35:00.869Z","objectId":"f8960240-9973-42e9-9b0f-ed096ff5a018/48c10c3e-9831-4165-a80e-6e96ba2c3e98/Dom2.full.zip","category":"DOWNLOAD","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"File was downloaded.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:52.429Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:50.084Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:47.323Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:40.606Z","objectId":"f8960240-9973-42e9-9b0f-ed096ff5a018/48c10c3e-9831-4165-a80e-6e96ba2c3e98/Dom2.full.zip","category":"DOWNLOAD","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Download was prepared","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:35.755Z","objectId":"1a9168fdad57f5134d0f53053106d599","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:35.013Z","objectId":"1a9168fdad57f5134d0f53053106d599","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:34.381Z","objectId":"1a9168fdad57f5134d0f53053106d599","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:34:32.248Z","objectId":"a7f0e789b7d3075fd181c0fe45c01158","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:31.594Z","objectId":"a7f0e789b7d3075fd181c0fe45c01158","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:30.906Z","objectId":"a7f0e789b7d3075fd181c0fe45c01158","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:34:29.659Z","objectId":"6026e7cba4a3e3c45cd2f61835d0aab6","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:28.995Z","objectId":"6026e7cba4a3e3c45cd2f61835d0aab6","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:28.204Z","objectId":"6026e7cba4a3e3c45cd2f61835d0aab6","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:34:26.131Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:25.346Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:34:21.566Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:34:16.785Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Redaction was manually removed","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:53.714Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Skipped redaction was forced to be redacted","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:41.891Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Legal basis reason was changed","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:30.943Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Manual redaction was added.","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:11.627Z","objectId":"098b5b8902948267592b834da36d5c2a","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:10.735Z","objectId":"098b5b8902948267592b834da36d5c2a","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:09.79Z","objectId":"098b5b8902948267592b834da36d5c2a","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:33:08.502Z","objectId":"d3ecc6843b712a59e6f5d81dff9d3808","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:07.631Z","objectId":"d3ecc6843b712a59e6f5d81dff9d3808","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:06.68Z","objectId":"d3ecc6843b712a59e6f5d81dff9d3808","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:33:04.205Z","objectId":"2eb362b5499f95079ade4b71897913fa","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:03.08Z","objectId":"2eb362b5499f95079ade4b71897913fa","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:01.969Z","objectId":"b3d1a1c211efb8014d573df98235a7ee","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:33:00.719Z","objectId":"67acdc7b5b94c489ee286b36a33f997d","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:59.055Z","objectId":"67acdc7b5b94c489ee286b36a33f997d","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:58.082Z","objectId":"67acdc7b5b94c489ee286b36a33f997d","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:32:56.753Z","objectId":"b3d1a1c211efb8014d573df98235a7ee","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:55.54Z","objectId":"b3d1a1c211efb8014d573df98235a7ee","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:32:51.647Z","objectId":"cb16007523bd8c2a1ad77600ba592505","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Approved","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:50.846Z","objectId":"cb16007523bd8c2a1ad77600ba592505","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98"}},{"recordId":null,"recordDate":"2021-11-15T13:32:40.704Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:32:30.716Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:32:11.844Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:32:07.706Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:58.485Z","objectId":"5ac5c1e82f94fab776fbb6a67dc0efce","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Document status was changed to Under Approval","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c"}},{"recordId":null,"recordDate":"2021-11-15T13:31:57.413Z","objectId":"5ac5c1e82f94fab776fbb6a67dc0efce","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:31:52.157Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:39.848Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:31.35Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:25.664Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:17.56Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:17.516Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Changed dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:31:08.806Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:59.705Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:57.528Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:38.839Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:32.896Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:30:28.702Z","objectId":"9b7bd575-4566-4408-984f-b26da1d2616e","category":"DOSSIER_TEMPLATE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier attributes added/updated","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:58.042Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.885Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.884Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.881Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.879Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.838Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.793Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.792Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.715Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.714Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:57.71Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:53.391Z","objectId":null,"category":"AUDIT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Audit Log has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:53.383Z","objectId":null,"category":"AUDIT_LOG","userId":null,"message":"Audit Log Accessed","details":{"pageSize":50,"from":null,"to":null,"page":0,"category":null,"userId":null,"objectId":null}},{"recordId":null,"recordDate":"2021-11-15T13:29:50.34Z","objectId":null,"category":"AUDIT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Audit Log has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:50.325Z","objectId":null,"category":"AUDIT_LOG","userId":null,"message":"Audit Log Accessed","details":{"pageSize":50,"from":null,"to":null,"page":0,"category":null,"userId":null,"objectId":null}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.727Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.642Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.549Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.548Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.546Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:48.545Z","objectId":"License","category":"LICENSE","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"License report has been viewed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:36.57Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"af2dc100722060d9744f99648db24c81"}},{"recordId":null,"recordDate":"2021-11-15T13:29:32.498Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"48178ab64e8fb35943c4f41ed0676b44"}},{"recordId":null,"recordDate":"2021-11-15T13:29:27.68Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:26.106Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:24.06Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse dossier was triggered","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:22.914Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"9b688175babfc73f67511cff52a4647e"}},{"recordId":null,"recordDate":"2021-11-15T13:29:17.527Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"9bf53c727f6324f80ea2525a51ba8105"}},{"recordId":null,"recordDate":"2021-11-15T13:29:17.344Z","objectId":"a7985c094cac62118c9b350461902f95","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:16.199Z","objectId":"2eb362b5499f95079ade4b71897913fa","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:14.786Z","objectId":"cb16007523bd8c2a1ad77600ba592505","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:12.545Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"fd951b57da9745c7a0e437775e43c1f7"}},{"recordId":null,"recordDate":"2021-11-15T13:29:11.454Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:29:04.484Z","objectId":"1dcb49c006aa0652c2447671f0e5c903","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:29:01.847Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"987b67e62979568205a30d4256ac2a4d"}},{"recordId":null,"recordDate":"2021-11-15T13:29:00.753Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reanalyse file was triggered","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c"}},{"recordId":null,"recordDate":"2021-11-15T13:29:00.159Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"705e93ca3173f44bd28e68a4b5852bb8"}},{"recordId":null,"recordDate":"2021-11-15T13:28:57.921Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"e08b4f6546a0b2807f6793715bc767ec"}},{"recordId":null,"recordDate":"2021-11-15T13:28:56.187Z","objectId":"b96a63098e0e63d8ef452a6ee3bea3d1","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:28:54.848Z","objectId":"220ab22e443c8e32d3778b0937b03170","category":"DOCUMENT","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Reviewer was assigned to document","details":{"DossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","Reviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018"}},{"recordId":null,"recordDate":"2021-11-15T13:28:54.335Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"630157aa65fe8171c022fc1cbe508b6b"}},{"recordId":null,"recordDate":"2021-11-15T13:28:53.574Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"dc036e3079144554ebb0f90904d7f459"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.909Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.679Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"28ba6d7ae90b0f58859659d5fd1f519f"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.545Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"83e1e8af2b108f52b9c3d675737323a9"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.544Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"6a32e3a872f7515ed00f8a2ad61e2a44"}},{"recordId":null,"recordDate":"2021-11-15T13:28:49.186Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"4f3b728a2600c85e50b2350f3e087418"}},{"recordId":null,"recordDate":"2021-11-15T13:28:48.318Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"b9c0a97029bc3907c2e23cba0455b5f3"}},{"recordId":null,"recordDate":"2021-11-15T13:28:32.102Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:31.892Z","objectId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier has been created.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:30.241Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"File attributes csv processed.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:28:29.872Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"d3ecc6843b712a59e6f5d81dff9d3808"}},{"recordId":null,"recordDate":"2021-11-15T13:28:26.714Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"a7f0e789b7d3075fd181c0fe45c01158"}},{"recordId":null,"recordDate":"2021-11-15T13:28:26.546Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"cd2f7a6770116aa36867fd68245ebfd6"}},{"recordId":null,"recordDate":"2021-11-15T13:28:26.049Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"098b5b8902948267592b834da36d5c2a"}},{"recordId":null,"recordDate":"2021-11-15T13:28:24.921Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"a7985c094cac62118c9b350461902f95"}},{"recordId":null,"recordDate":"2021-11-15T13:28:23.148Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"a1ac57eab398f23ad8f7ce702ce3935b"}},{"recordId":null,"recordDate":"2021-11-15T13:28:20.751Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"67acdc7b5b94c489ee286b36a33f997d"}},{"recordId":null,"recordDate":"2021-11-15T13:28:20.746Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"1a9168fdad57f5134d0f53053106d599"}},{"recordId":null,"recordDate":"2021-11-15T13:28:20.549Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"b3d1a1c211efb8014d573df98235a7ee"}},{"recordId":null,"recordDate":"2021-11-15T13:28:18.38Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"cb16007523bd8c2a1ad77600ba592505"}},{"recordId":null,"recordDate":"2021-11-15T13:28:18.377Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"6026e7cba4a3e3c45cd2f61835d0aab6"}},{"recordId":null,"recordDate":"2021-11-15T13:28:18.165Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"2eb362b5499f95079ade4b71897913fa"}},{"recordId":null,"recordDate":"2021-11-15T13:28:04.283Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"220ab22e443c8e32d3778b0937b03170"}},{"recordId":null,"recordDate":"2021-11-15T13:27:58.864Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"1dcb49c006aa0652c2447671f0e5c903"}},{"recordId":null,"recordDate":"2021-11-15T13:27:58.39Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"5ac5c1e82f94fab776fbb6a67dc0efce"}},{"recordId":null,"recordDate":"2021-11-15T13:27:48.476Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:27:48.022Z","objectId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier has been created.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:27:44.327Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"b96a63098e0e63d8ef452a6ee3bea3d1"}},{"recordId":null,"recordDate":"2021-11-15T13:27:43.159Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"cca77a1cb4355da3fb9bc7b46cffc228"}},{"recordId":null,"recordDate":"2021-11-15T13:27:40.965Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dictionary entries were added.","details":{"FileId":"d0a46e8329f016f0ac0844f1097f15a5"}},{"recordId":null,"recordDate":"2021-11-15T13:27:20.171Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Got dossier attributes.","details":{}},{"recordId":null,"recordDate":"2021-11-15T13:27:19.89Z","objectId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","category":"DOSSIER","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","message":"Dossier has been created.","details":{}}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json deleted file mode 100644 index b12c6daa4..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "fileAttributes": "{\"filenameMappingColumnHeaderName\":null,\"delimiter\":\",\",\"fileAttributeConfigs\":[]}", - "DIGITAL_SIGNATURE": "MlD8/Rd8pFwpp+RXh7AQcN+Eup/XFtDlNzU48p2TEoy2QgKeNk+2XOKtGdkAyTFaDfmwElfkz+IMcMP6ebPK9pKIJ7qU6Prt2LlZjxyoHgaD8fhI0fMQfQzMh4V1J7KpSnbXTUvcEzQuHGeWBL8+lKpyLBeap+vFb9NlgiMGqx3wPW6YelHeY1z5mNC4uONvqLt3G5RX+3TPJaokmYmt9fTQO+xyZVbCUJRwcJtQhioZysEXp7T/5m71m7YuKgVX+2Fl5Tt0qv374c/shU2EOuHg4ieR2hhb9rDpC1AgrvR4s7gK0I+ohK9XEOo2CRar2xgdZcS6iNRpcIJbz9EpMbRsbXfimmls3dKHVVRWjFTPvs5j0ViggbZ1InGp8EphW1rZ14Qqvk05IIie/cSER59LX1Rb+gN2WXXw4v5sOkyhwv4H5zHhhXuF+VvpvFBpuMKxxhP2nbh0hN+EmYj4CptKGqQcOuaTcx02D91F7IXcoIiYaQBx5gJ2JgUR6Hjf30FYvg/72Eq6zANvBk4mC4lSj9Ogs51+vffDC4+i4abuSWHLSqcohRiv9Jt1HmLWkCo+/NcQg/neh87o8i4MpKnBiQ2b9qEQoSNFG6ZiTl+unUoZMyNghx5BI+Pe54MC0OPTItf36OQDXpxp/5n9qa/pkINbKWlkdja0J6lVhDA2vEREq/eca0S4ZPrjd/+nE8jjTSWviXK+ezRMrjnxLxl3yIE1LDXk192PxNRrPSyCNbjbUOvHEfMIdqvbcle3citBkFiWemkkD4K7BC5Om1nOLQ6sKkbFjeuzCEGSnIWGb8TZKS11dK7/n624kkm4w2qaVJYTHotw34Nhe4Fm3FN1FiEH8yr1jEzUGUAJfJVH8tQCUD56rvNdKZHsXGeN/AmRHPHW/Ke28K2u29IwAxY0F91kNOOE8wASpkU7ksToh+pF8SN2SOpfwuJMaS6ZYAQ2Rz5cyu0nOOANANzX9ZkZyRcMDPiij6wn6ZOyBsT0CTk8ILtXDOqh5tlWVHqjjVrtPmyfJi4LynXR3LFiGwiJcdE3peh8b5S9rJoB5Tx0Hys9pvsm2M/iGPpdR9Xzb16oJRs1cbJGBuPh3zvvnYbp8m4zrpF/9SC0m3D1ylYxiRsrGUmg1CSeYdR2GgWX07mUDXBNqVA0qycrpFmJ7+tOvRIzRfCzpIDl7Vb2+wgU8DDtD3ezVTsd9xO0EDikAhLUpjVlvLPr6jwRtqHswE6IAbmwNvfhQD/9UwNZSk0sCiPDbZVhD+StJ8/wldavJzuEkTrbPl1fxQeAobnPoY0eWMcxS/ZgdGvFAnB8OeE++ZET8o4C/ouv4dNfvwJ3fpC+Pxpb6Typa/58VLodiHgdS7un2kLI73c4wDrjiHFbSZmUZKCYVt5+/L4nJj9eDool0NUG/l7J3RT3Bf3drFhX/fSrssqnw6clc8NOxC1Zp2RJheV8aaOHxhZKeML7+WbgFE/biMGxw3V/Lbpsc1V7cIvqOVPB4AgvbDvEsZKZwFC84uwLp2XgkAVLg/CTh34SjbU1dwpE1nknOxjjP6nf+chhBcJF4mmWcx8kXjV5zE8pGc8nXyV1d7PWXEH6VymCIYs6ixou/iiyvEV4CBUi3J858vf8JkSYxBIGcRHGusCZO6Wbeebl+FIrt9gzYk8G3h9JtByI8rie0M9F77H1YFPHVHqTHMtbNpWk3YWyJpNAbXNf9i9tRTdqe9Mg1i7d4NfTA9qZDqYWr3JBZxkEoxX8DaRjRW8QsI0yifje8MC2cFZHh2G9CInfAfjmGfY2id8A7z1fDOdQi++6+XkwfTrTsT1nwZEvT2SbVYyONZfMuhfdrp4WZiH2Mjzy+hRxRvj9B7H/dH0nW7hP7d0/BasqbUYxobulO7XJVCyUIsKHDLN+bq00ATEOTSz5opQ1XwDEUeFROrPU9qgpTltVoP+r9pXGoMUlRp6hgx1XowL00mzYu14MZNpbQT3YWi7CdyD1kkXwW+6AwoRJCCv3PKjzS40O/JPvahQTj+904cmkzl3e4OB/PqL8lsEEPOtiDvfSk3JgTqd+103mEd8nbGlCiQuWLzoVnaokbtPM6QKGuJ7EwuEXoYtARKctE8kT9O2xCgHS9BELDaXTlphHDzlRBERRGGyGcLrndLBNZJop5AXcmHYVzA53Or4Pj/IPM6noIWR/8OH73bCJZTunr6GSAd93E4Ut2L41BQZc2U5gD2Xt/x57zw81ilJtq2EqiNLZp/LAP6xobWBMyNYRUAVbtchJkutoBgPXIC7zdwDm+o5Sk2L8J4y60wi0t7WfiGJST3wpLzla8SKxLGnxy4fFL9R0PSzj920K9N309WlkUN4dQ9C9/+oWyy3fcxa7fiQOB06vPRZh6x87EUxLpi7kXE7YtHI3E1DYtpGXMbbrlPeRmItWabnyVtKPUJArnVerY4LugVLY0bCOM8eKaUzPL6/3FrGLR+tRgG+S0H4RNLAeMjvY6SZwhzUOo5EYiQDEy385syZI7Mkpxsh5bWrR20N9psVtuSJqHp2GustBmTLmWWtPmhVowC/27j93n5iCzy3CvAetG8hUuCbxqzLCDAziTJK1F07Q4eSyZLo8GCK2B4/f6vdCkxjvxFcNRINiJDrHLvG+NWuFusPdtNvXzISNW23+2SjoqpAyEfuWJLaQUG041Cq5va4isqTV8bXs5z43ND763gQNHMyp1qprZF/XRG6MebrdHbeAWpTiU+3+SUKanNzFo9+R4VNGON+57MeyXSR57BymrKlR17lBqjR9mb0oJUWhvUqFzo6SCJXP2n4VtUnhBaBJEkCVBI6FwJdL2GayK7aMpqh8ivutHsrc8ibuGmUCiHPSQQD86g9EiUCOI6dRIqpoq3NrWHwGF9XgAEOwvvv6ax/JEhMIQgd4khERkIrDHC+Us/hHZyXTOKdBvQPcVvGSjKb10nnZ9NOM6OlQDTIAIBPnYAGEaqYZmlSwxNQNCCeAzsNFcLyOT2wpS5ANKQmFAAmDM/jTQxIRdS9966pcJ8+Bx0Hq6PyPxkL6XTw9U0fdIA6kVIshHWfYqeJSc/v0pcRZuk5nEbNtXeryHiyAEVLEs39sJ9I52AqWVpuIsddDvSewJrOhhqFNpF610CxAsT2nNMFP0mHPaXdnYP8v6HH41i2KKMBMJVQNmolilrP+c6PKVbUIrmeQKIl79xqepJqszhBitPn/BPFHtpFTf3Kr7ocZV7cnGBvLVmD1t3Fmow8u45X1juz7Uiba3B5t1RCcN7bqDzmRm9gpTELVqwu4BMAZZinySxSugJ8AvY4rS8USe63mCDb+K44Ri5cWpmEFYvti/U2RdZ5kCqiLXypZKiXP+JLLCjRU2RruaL1hgEh3HJSZTv46/5rBYZVrJ8HzCjE8K9K6XyDYsDe6P+25sUzvCOCR5KdZahrlyMeoFCIm7S2WuubRQCCi557zD9FU4O4Nw4WBhBUAAQCTmvDXle6bUEWw4m2LlxDZZWuaLuG/3dkViLxfJU2sxMvcRSCbG5s2CHkkK0Uu2wVtUlGh2GdtBCh/qyAGvbA1C1sT5llPfqRoeJwV0o0kbVY178aryRmV+v/jVluolvTu/WBA2sqWv8vezDVi9W6QJfeaID3Zmy4BeJjHR8nxQIoZxjz602qacRvZVDtIMeYYHRtBeJU0+UYMs7YRl5gJQW0nVimF7n3ObsOl6gn26Hi+uLvvG0lxS8vfRaPRXPVlZhhA0wTkx9XaWo+2ESqJiGAmDVMgb6J0U3sspSTxWaUp9KRNQjRDSac/bQ0ibymWUkono/CGU6w4A49s9x4YF04eNRcJcYnjNyGneAHl6C8ORt8FSfaCObMz4ESmXXGGQVJbYS51qkpB+po788JUJMoI+jmZfG9hJwthIzX5y9Culr71I211emqvB62/uukS4wFcy6xr8bW6ps2F4AFEFmOOuEzP3ja+VFKncMKJjtxnyCj5fFByL8u7RFPF3TFOcZwLX8WvWQkYMK8Id/Hux0rJkXB2wsj3MuuFOXr5/tKnKYRvtndmaLsp3kqAMos5fA2hzDHgo6vY4pCRm4eu1jG0wog1k1lq4mlyvEtY3C28EWfr84pKbW50Ls30/oWG52QRfvw0PBpgK7uMlDW6Apaq6mGjYobvj4fYp2sjMt+xc7/VxIkNT0gANW/2beE9DjLE8Dfzyt4/SFZy4cicvcRQUJJ1VOofY5rvg/mUDZMQbX22KxBp/IW85tt8WXo2AT9VBcGWa9kiFQ586+tzFwmvTpzbDrsq+x/A5/Re5ziuYzdNmlgroezB5b95RVoIBsigSUYfeOX4EpauD5v2Vek7qBr9CpT5oZvT5PNarUssnXeaBWKj92T2S2SAdLihuIs/SlQ75bMdaRrbFJeajh9K7OOdjZ4QNVmZNlhoT4zjH/LWASgd5C/UXlFK3ioRPA4rvINtNNNvF6BDp5mer352lFIwt2EUIgQaJUrqOQKnch4j1+o0qeYqxtPknHzuOMar0sT8QQ0wYCAJQ66Ymd61s+eJ29sPP/l1S27tOLihVCbUSye8co+k7QZKQgv/DIN4NiufWe9iDk7JI3wx1zJT1t6EbTTavoumF/tHEJL/HvZRcL3sMCPzpwjIutWya+JF31OSNdOe/hnWtLWhkxAhsEqDd5PnS5HcQ06Z7NZM/3AfNt4Iex5ViE6UIeP7fqgUM9XjowiLXoniwbn6Yf5HIUVHJq7wm4YQjJHKTYnL2eIR/EdoPd3wymAGVDXhAgOeo1l7d2goY0Q1HTGDQYcH2gwBvaNa7axVkgtFiPiM73kP0gOf1v5u7dFJ282HtuNie068MTK2meR/QOgm2+8POkGfWC7hM7ZDyqjxPwe+ViwI1NMs7ag/79cBJeSCJp06mLzz1qEvzbKCTa5dEFkCaWn5OsJ/gRJuPAP1lsPG64cE348LtNK3MoAPlRB7LyCL9GomVCgmU0LcLa8EbbcZO3x7CQ7+SUjmBeWBTDzhbmrSG0ZsPthmTGPkXMsjPzfvkJl1zhu+FpLVwkKzO+f4FVd657fdgaaQv6mfhzNzdJP/7Odkf7TjyPBfSnYW/ALnHIu9lLqW/E6yjfH8WDDsd+idph18oOGdw1JnKxMLvppeaRFHmFEQ3qUBOCqffbdWln3Lkh8n/IDBDtqdEmW+0w3VB4z2WV/iQ/bVumbz7BukimSuusOAbISS8JcuKkJxOM1HTmrOo+SJCguxdPlPQGP5AKKyWAAdqxyZ4u8UbuhFMSNO++YN9yZNHAWmtof7TpEqEY6bmBC3FXixp2bIayyruXb+BdcGnFQgbposb5DdxEmem+3MvnsMYLTdeVPlQ65AiB0pucUSnqPDSrEDfqmFlFqyvs0668ftKP6yviSM+CA6PoZJpmJXJL8mJi9SOaDCVrt53kLaVXbHwAoBNL5a5zskhdQvC+uMEgL6/HmdyiIFdJmuNh1Mngf8Nm+DwBkpYGlz7rC7kdv4cLyWeejWkFQm1KhRrdd4v+6spWIkgs3iEkRlWEotXZybILoHN9/6rg6NtkVXrIj9SRDtUCaeDg7fxmL+sghZd1D1pGSzTKFGEzDKIFjbuk1GhcQCW2gSag8hbB6UdlNdV2xenyFpnSSj/jQmANbt6FRcMZG0i5/MXE1lu9ONDRy+LjQjXVs9yawsyMTejnXE+8/Eo1BRk5QwP7gMhLp3tTkrbPcLz6JZztvSbwgx2U3zZ2Izg9ssMaG5jQazCu9chjdG7FxfeIXwXl5kDgqQKGTmWnASl+VB49efYTK/1qntWWYoGRMIE5YxW/z4uSjnkXkOktOeUAc4E71KvZuQ6oWixu0NOIkl0UfBGmcze7IhGo22Gjz7a3Ve5sgYXwrzFJiOQXVOF4530MCw2j2c1I4cTxzKBHOVg/64s5F44AYo/JcD1YwUgZT63XPrF28eJE4Hyshhj2kIYClcFeRaHvBaic4wphjR8nH1Go/82uYq16nbelsJFh533tOdLo3hTl2jiN4fUUJqj7MDvH+wNHKnMS1l/nXXvXl59TTVyvWpwRLaC8Ya+I3kOI5gsPf3lSKZgVVBbbfdRGVOmHOqgIzYDmxh/n+lAzdvI8Wej2rEBDJuSYev99prRJVL8dfglj7y09JHhI0krFcxN38oIFk/9bSkgQnTVV8j+G3lcK/mZsdA2N63cbe8oeZ3LCVk4d2yN1ecF9j2p/ANv4nkog6os3VMfL1ChAR2tW3AYtjAvlqzJi8eAKjg4183UEVxCYpISdZC4EJZB7kQCxs1dT3bobgit22AQn9/ofPKwvOlG33EENdR7n6Kb7yiRtH3tA5Ee9XU7vCHWegcWFVi4RyD2Gb3bRPn5e8l6/NKxQ/KUmuDvbfaDB6gky9+pi2E9yxYFh1zlxxCJNT5XuD16h8LftCGHOC4zZaeSSwnu1w6EnoD5Bvp+44hu47OzA5bP7uqYLXu2UhvOXXu1QfLjsiu1g9ZcPc6t8b0aHDP0sHahOyqjs/+DkHXV26UqaYKJDsTUDvx8PpyUkvLf0hRXHMg2kc8mmHbxxeghHsHKZ7DfZOXfBPqT4j14aeqKKqYclFmSjnQu2SD2exFr7vJsspasv4flwgFdkzvRQd6U3OPWw8w5Ehz/xyOfk/UxFgT2vAhzOnaRGh/TnGvxv67r92CbKr5rBpQueAqk1pEjhzY9pxlbm7dHhNQehUYKNoMlAn84X60W9LIQZfcAeBHNI1nScNL8KpYOqGxjeohZi9VcVzSLdnRY8HOKAgf5yO+ZiDm+akj1OfATEEhi7PP/ako79mtRQB9URQh9mjcRodSAB7zGbwQpdMsPUtfGgrgY8iGSA+WsC+/a+w2Gp4SUVc1aLqPr7dZgZ4i7t/FF14w4XKuchuREk691/HxlDtg9GQ1KPLOVYyqTB2huxkc6VUvzqV/h5lw1Yl4WiMcAZ10MWVTS+aDhwykPi5JGijIdEbuPva7kpyTcd9QfkcuYGQXfyYt+2g3NVIIE18gtNH5R+411ZXRfjlkDHhYgwUZnxN81Zan6wLJGa/PCJwZ7fjKq8cn7O1Augysw8AtZGlDSrRevjfgUvlozPWszREYNJWQhwuzPQxCC7mPEtnaDDHHoTGaacplsPDr4C8bmNc6iMg0wQrqA+QoXco42/zOQ9CSoK3s7FCvV5ixuEURIYvIlxJ0qPOnXJlCuleEflfsotFgkmH4hhIOMp1bw4JAt7ctWK2RP3s60MMLO3XIvSR2fsTyzHO3NxbxVBcPCeGtQni+u5iuf71UTxk2fD5Q9LPi/juhlMrbPF7mSdvsHC+ddX4KOkYdxHNfFNThe8Jw0YY+EF9oZyne+7fXgjmTepj5LDN2+dfaGDMsG8mIq+HX", - "legalBasis": "[{\"name\":\"1.\\tnames and addresses of persons\",\"description\":\"names and addresses of persons involved in testing on vertebrate animals\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2g)]\"},{\"name\":\"2.\\tmethods of analysis for impurities\",\"description\":\"methods of analysis for impurities in the active substance as manufactured except for methods for impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2d)]\"},{\"name\":\"3.\\tmethod of manufacture\",\"description\":\"the method of manufacture\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2a)]\"},{\"name\":\"4.\\tcomposition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2f)]\"},{\"name\":\"5.\\tresults of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2c)]\"},{\"name\":\"6.\\tspecification of impurity of the active substance\",\"description\":\"the specification of impurity of the active substance except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2a)]\"},{\"name\":\"7. links between a producer and applicant\",\"description\":\"links between a producer or importer and the applicant or the authorisation holder\",\"reason\":\"[Reg (EC) No 1107/2009 Art. 63 (2e)]\"}]", - "colors": "{\"defaultColor\":\"#acfc00\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#ff00bb\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#acfc00\",\"previewColor\":\"#cccccc\"}" -} \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json deleted file mode 100644 index 8a61a2c26..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/configuration_table_v3.json +++ /dev/null @@ -1 +0,0 @@ -[{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"PDF_WATERMARK","value":"{\"text\":\"This document is not the property of EFSA and is provided for giving full effect to the right of public\\naccess to documents under EU law. The document may be subject to rights such as intellectual property and\\ncopyrights of third parties. Furthermore, this document may fall under a regulatory data protection regime.\\nConsequently, any publication, distribution, reproduction and/or publishing and any commercial exploitation\\nand use of this document or its contents without the permission of the owner of this document may therefore\\nbe prohibited and violate the rights of its owner.\",\"hexColor\":\"#242121\",\"opacity\":25,\"fontSize\":15,\"fontType\":\"helvetica\",\"orientation\":\"DIAGONAL\"}"},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"colors","value":"{\"defaultColor\":\"#abc0c4\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#c498fa\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#9398a0\",\"previewColor\":\"#9398a0\"}"},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"fileAttributes","value":"{\"filenameMappingColumnHeaderName\":\"Path\",\"delimiter\":\",\",\"fileAttributeConfigs\":[{\"id\":\"28d6368c-422c-43da-a063-8003f61f3d0a\",\"csvColumnHeader\":\"Document Title\",\"label\":\"Document Title\",\"primaryAttribute\":true,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentTitle}}\"},{\"id\":\"9640f623-6c4b-42b1-b484-ba8344dc7b75\",\"csvColumnHeader\":\"Document Number\",\"label\":\"Document Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentNumber}}\"},{\"id\":\"6ffb2326-04fe-4fc6-9554-693e9506d513\",\"csvColumnHeader\":\"Major Version Number\",\"label\":\"Major Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MajorVersionNumber}}\"},{\"id\":\"0d0d5abd-4cbc-45a4-8301-9e3de83faa82\",\"csvColumnHeader\":\"Minor Version Number\",\"label\":\"Minor Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MinorVersionNumber}}\"},{\"id\":\"87ee65a1-91ff-4cd3-84cc-3d5beacbb070\",\"csvColumnHeader\":\"Vertebrate Study\",\"label\":\"Vertebrate Study\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":true,\"displayedInFileList\":true,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.VertebrateStudy}}\"}]}"},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","key":"legalBasis","value":"[{\"name\":\"1.1 personal data (incl. geolocation); Article 39(e)(1)\",\"description\":\"any other personal data except for\\n a. the name and address of the applicant;\\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.\",\"reason\":\"Article 39(e)(1) of Regulation (EC) No 178/2002\"},{\"name\":\"1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)\",\"description\":\"personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information\",\"reason\":\"Article 39(e)(2) of Regulation (EC) No 178/2002\"},{\"name\":\"2. manufacturing or production process\",\"description\":\"the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"3. links between a producer and applicant\",\"description\":\"commercial links between a producer or importer and the applicant or the authorisation holder, where applicable;\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"4. commercial information\",\"description\":\"commercial information revealing sourcing, market shares or business strategy of the applicant\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"5. quantitative composition\",\"description\":\"quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"6. specification of impurity\",\"description\":\"the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities\",\"reason\":\"Article 63(2)(b) of Regulation (EC) No 1107/2009\"},{\"name\":\"7. results of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"Article 63(2)(c) of Regulation (EC) No 1107/2009\"},{\"name\":\"8. composition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"Article 63(2)(d) of Regulation (EC) No 1107/2009\"}]"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"PDF_WATERMARK","value":"{\"text\":\"This document is not the property of EFSA and is provided for giving full effect to the right of public\\naccess to documents under EU law. The document may be subject to rights such as intellectual property and\\ncopyrights of third parties. Furthermore, this document may fall under a regulatory data protection regime.\\nConsequently, any publication, distribution, reproduction and/or publishing and any commercial exploitation\\nand use of this document or its contents without the permission of the owner of this document may therefore\\nbe prohibited and violate the rights of its owner.\",\"hexColor\":\"#242121\",\"opacity\":25,\"fontSize\":15,\"fontType\":\"helvetica\",\"orientation\":\"DIAGONAL\"}"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"colors","value":"{\"defaultColor\":\"#abc0c4\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#c498fa\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#9398a0\",\"previewColor\":\"#9398a0\"}"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"fileAttributes","value":"{\"filenameMappingColumnHeaderName\":\"Path\",\"delimiter\":\",\",\"fileAttributeConfigs\":[{\"id\":\"08d6368c-422c-43da-a063-8003f61f3d0a\",\"csvColumnHeader\":\"Document Title\",\"label\":\"Document Title\",\"primaryAttribute\":true,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentTitle}}\"},{\"id\":\"7640f623-6c4b-42b1-b484-ba8344dc7b75\",\"csvColumnHeader\":\"Document Number\",\"label\":\"Document Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentNumber}}\"},{\"id\":\"4ffb2326-04fe-4fc6-9554-693e9506d513\",\"csvColumnHeader\":\"Major Version Number\",\"label\":\"Major Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MajorVersionNumber}}\"},{\"id\":\"ed0d5abd-4cbc-45a4-8301-9e3de83faa82\",\"csvColumnHeader\":\"Minor Version Number\",\"label\":\"Minor Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.MinorVersionNumber}}\"},{\"id\":\"87ee65a1-91ff-4cd3-84cc-3d5beacbb070\",\"csvColumnHeader\":\"Vertebrate Study\",\"label\":\"Vertebrate Study\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":true,\"displayedInFileList\":true,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.VertebrateStudy}}\"}]}"},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","key":"legalBasis","value":"[{\"name\":\"1.1 personal data (incl. geolocation); Article 39(e)(3)\",\"description\":\"(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)\",\"reason\":\"Article 39(e)(3) of Regulation (EC) No 178/2002\"},{\"name\":\"1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)\",\"description\":\"personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information\",\"reason\":\"Article 39(e)(2) of Regulation (EC) No 178/2002\"},{\"name\":\"2. manufacturing or production process\",\"description\":\"the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"3. links between a producer and applicant\",\"description\":\"commercial links between a producer or importer and the applicant or the authorisation holder, where applicable\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"4. commercial information\",\"description\":\"commercial information revealing sourcing, market shares or business strategy of the applicant\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"5. quantitative composition\",\"description\":\"quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety\",\"reason\":\"Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)\"},{\"name\":\"6. specification of impurity\",\"description\":\"the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities\",\"reason\":\"Article 63(2)(b) of Regulation (EC) No 1107/2009\"},{\"name\":\"7. results of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"Article 63(2)(c) of Regulation (EC) No 1107/2009\"},{\"name\":\"8. composition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"Article 63(2)(d) of Regulation (EC) No 1107/2009\"}]"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"PDF_WATERMARK","value":"{\"text\":\"This document is not the property of EFSA and is provided for giving full effect to the right of public\\naccess to documents under EU law. The document may be subject to rights such as intellectual property and\\ncopyrights of third parties. Furthermore, this document may fall under a regulatory data protection regime.\\nConsequently, any publication, distribution, reproduction and/or publishing and any commercial exploitation\\nand use of this document or its contents without the permission of the owner of this document may therefore\\nbe prohibited and violate the rights of its owner.\",\"hexColor\":\"#242121\",\"opacity\":25,\"fontSize\":15,\"fontType\":\"helvetica\",\"orientation\":\"DIAGONAL\"}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"colors","value":"{\"defaultColor\":\"#abc0c4\",\"requestAdd\":\"#04b093\",\"requestRemove\":\"#04b093\",\"notRedacted\":\"#c498fa\",\"analysisColor\":\"#dd4d50\",\"updatedColor\":\"#fdbd00\",\"dictionaryRequestColor\":\"#5b97db\",\"manualRedactionColor\":\"#9398a0\",\"previewColor\":\"#9398a0\"}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"dossierAttributes","value":"{\"dossierAttributeConfigs\":[{\"id\":\"2884a75c-9be1-4557-824f-c85e3beca515\",\"label\":\"DossierAttributeForDom\",\"editable\":true,\"type\":\"TEXT\",\"placeholder\":\"{{dossier.attribute.Dossierattributefordom}}\"}]}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"fileAttributes","value":"{\"filenameMappingColumnHeaderName\":\"Path\",\"delimiter\":\",\",\"fileAttributeConfigs\":[{\"id\":\"447f9081-b8b8-4743-93a3-63264cfe0fba\",\"csvColumnHeader\":\"Document Number\",\"label\":\"Document Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentNumber}}\"},{\"id\":\"7ae5a81a-2129-4a93-b04d-de5c85234977\",\"csvColumnHeader\":\"Document Title\",\"label\":\"Document Title\",\"primaryAttribute\":true,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.DocumentTitle}}\"},{\"id\":\"23236309-2403-4d87-bbc6-41e549fae233\",\"csvColumnHeader\":\"Major Version Number\",\"label\":\"Major Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"NUMBER\",\"placeholder\":\"{{file.attribute.MajorVersionNumber}}\"},{\"id\":\"9ac1b2c8-e888-44ea-8439-84c002d30d32\",\"csvColumnHeader\":\"Minor Version Number\",\"label\":\"Minor Version Number\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":false,\"displayedInFileList\":false,\"type\":\"NUMBER\",\"placeholder\":\"{{file.attribute.MinorVersionNumber}}\"},{\"id\":\"87ee65a1-91ff-4cd3-84cc-3d5beacbb070\",\"csvColumnHeader\":\"Vertebrate Study\",\"label\":\"Vertebrate Study\",\"primaryAttribute\":false,\"editable\":true,\"filterable\":true,\"displayedInFileList\":true,\"type\":\"TEXT\",\"placeholder\":\"{{file.attribute.VertebrateStudy}}\"}]}"},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","key":"legalBasis","value":"[{\"name\":\"1. names and addresses of persons\",\"description\":\"names and addresses of persons involved in testing on vertebrate animals\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2g)\"},{\"name\":\"2. methods of analysis for impurities\",\"description\":\"methods of analysis for impurities in the active substance as manufactured except for methods for impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2d)\"},{\"name\":\"3. method of manufacture\",\"description\":\"the method of manufacture\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2a)\"},{\"name\":\"4. composition of a plant protection product\",\"description\":\"information on the complete composition of a plant protection product\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2f)\"},{\"name\":\"5. results of production batches\",\"description\":\"results of production batches of the active substance including impurities\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2c)\"},{\"name\":\"6. specification of impurity of the active substance\",\"description\":\"the specification of impurity of the active substance except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2b)\"},{\"name\":\"7. links between a producer and applicant\",\"description\":\"links between a producer or importer and the applicant or the authorisation holder\",\"reason\":\"Reg (EC) No 1107/2009 Art. 63 (2e)\"}]"}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json deleted file mode 100644 index 1c2517af1..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dictionary_table_v6.json +++ /dev/null @@ -1,548 +0,0 @@ -[ - { - "type": "false_positive", - "hexColor": "#ffffff", - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "rank": 1, - "description": null, - "addToDictionaryAction": false, - "label": "False Positive", - "dossierId": "global", - "hint": true, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "formula", - "hexColor": "#036ffc", - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "rank": 1002, - "description": "Empty dictionary used to configure formula colors.", - "addToDictionaryAction": false, - "label": "Formula", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "image", - "hexColor": "#bdd6ff", - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "rank": 999, - "description": "Empty dictionary used to configure image colors.", - "addToDictionaryAction": false, - "label": "Image", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "logo", - "hexColor": "#bdd6ff", - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "rank": 1001, - "description": "Empty dictionary used to configure logo colors.", - "addToDictionaryAction": false, - "label": "Logo", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "ocr", - "hexColor": "#bdd6ff", - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "rank": 1000, - "description": "Empty dictionary used to configure ocr colors.", - "addToDictionaryAction": false, - "label": "Ocr", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "signature", - "hexColor": "#bdd6ff", - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "rank": 1003, - "description": "Empty dictionary used to configure signature colors.", - "addToDictionaryAction": false, - "label": "Signature", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "dossier_redaction", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 1500, - "description": "Entries in this dictionary will only be redacted in this dossier", - "addToDictionaryAction": false, - "label": "Dossier Redaction", - "dossierId": "48c10c3e-9831-4165-a80e-6e96ba2c3e98", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "dossier_redaction", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 1500, - "description": "Entries in this dictionary will only be redacted in this dossier", - "addToDictionaryAction": false, - "label": "Dossier Redaction", - "dossierId": "b2c9c4e5-5382-4862-9402-5b619c41a68c", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "CBI_address", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 140, - "description": "All site names and addresses, and location (e.g. Syngenta, Monthey, GPS Co-ordinates, Mr Smith of … providing the…). Except addresses in published literature and the applicant address.", - "addToDictionaryAction": true, - "label": "CBI Address", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "CBI_author", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 130, - "description": "All authors named in the study documentation. Except names in published literature.", - "addToDictionaryAction": true, - "label": "CBI Author", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "PII", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 150, - "description": "Not authors but listed in the document: Names, signatures, telephone, email etc.; e.g. Reg Manager, QA Manager", - "addToDictionaryAction": true, - "label": "PII", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "false_positive", - "hexColor": "#ffcece", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 160, - "description": "System managed: Filled automatically by user feedback on false positives", - "addToDictionaryAction": false, - "label": "False Positive", - "dossierId": "global", - "hint": true, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "formula", - "hexColor": "#036ffc", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 1002, - "description": "Empty dictionary used to configure formula colors.", - "addToDictionaryAction": false, - "label": "Formula", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "hint_only", - "hexColor": "#fa98f7", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 50, - "description": "Entries of this dictionary will be highlighted only", - "addToDictionaryAction": false, - "label": "Hint Only", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "image", - "hexColor": "#bdd6ff", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 999, - "description": "Empty dictionary used to configure image colors.", - "addToDictionaryAction": false, - "label": "Image", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "logo", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 1001, - "description": "Empty dictionary used to configure logo colors.", - "addToDictionaryAction": false, - "label": "Logo", - "dossierId": "global", - "hint": false, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "must_redact", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 100, - "description": "Entries of this dictionary get redacted wherever found.", - "addToDictionaryAction": false, - "label": "Must Redact", - "dossierId": "global", - "hint": false, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "ocr", - "hexColor": "#bdd6ff", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 1000, - "description": "Empty dictionary used to configure ocr colors.", - "addToDictionaryAction": false, - "label": "Ocr", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "published_information", - "hexColor": "#85ebff", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 70, - "description": "Manual managed list of public journals and papers that need no redaction", - "addToDictionaryAction": true, - "label": "Published Information", - "dossierId": "global", - "hint": true, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "recommendation_CBI_address", - "hexColor": "#8df06c", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 30, - "description": "System managed: Automatically detected recommendations for CBI Address", - "addToDictionaryAction": false, - "label": "Recommendation CBI Address", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": true - }, - { - "type": "recommendation_CBI_author", - "hexColor": "#8df06c", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 40, - "description": "System managed: Automatically detected recommendations for CBI Author", - "addToDictionaryAction": false, - "label": "Recommendation CBI Author", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": true - }, - { - "type": "signature", - "hexColor": "#9398a0", - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "rank": 1003, - "description": "Empty dictionary used to configure signature colors.", - "addToDictionaryAction": false, - "label": "Signature", - "dossierId": "global", - "hint": false, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "dossier_redaction", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 1500, - "description": "Entries in this dictionary will only be redacted in this dossier", - "addToDictionaryAction": false, - "label": "Dossier Redaction", - "dossierId": "d46267c1-bb19-44ca-8c0c-60fb5d5309c5", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "CBI_address", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 140, - "description": "Laboratory Address: Redaction in combination with vertebrates", - "addToDictionaryAction": true, - "label": "CBI Address", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "CBI_author", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 130, - "description": "Study Author: Redaction in combination with vertebrates", - "addToDictionaryAction": true, - "label": "CBI Author", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "CBI_sponsor", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 120, - "description": "Batch Sponsor: Redaction in combination with 'batches produced at'", - "addToDictionaryAction": true, - "label": "CBI Sponsor", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "PII", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 150, - "description": "Personal Identification Information: Redact name, email, phone, fax, ... of employees", - "addToDictionaryAction": true, - "label": "PII", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "false_positive", - "hexColor": "#ffcece", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 160, - "description": "System managed: Filled automatically by user feedback on false positives", - "addToDictionaryAction": false, - "label": "False Positive", - "dossierId": "global", - "hint": true, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "formula", - "hexColor": "#036ffc", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 1002, - "description": "Empty dictionary used to configure formula colors.", - "addToDictionaryAction": false, - "label": "Formula", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "hint_only", - "hexColor": "#fa98f7", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 50, - "description": "Entries of this dictionary will be highlighted only", - "addToDictionaryAction": false, - "label": "Hint Only", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "image", - "hexColor": "#bdd6ff", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 999, - "description": "Empty dictionary used to configure image colors.", - "addToDictionaryAction": false, - "label": "Image", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "logo", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 1001, - "description": "Empty dictionary used to configure logo colors.", - "addToDictionaryAction": false, - "label": "Logo", - "dossierId": "global", - "hint": false, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "must_redact", - "hexColor": "#fa98f7", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 100, - "description": "Forces redaction of CBI Author/Address even if there is no vertebrate", - "addToDictionaryAction": false, - "label": "Must Redact", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "no_redaction_indicator", - "hexColor": "#be85ff", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 80, - "description": "Prevents redaction of CBI Author/Address although there is a vertebrate, e.g. vertebrate and in vitro is found", - "addToDictionaryAction": false, - "label": "No Redaction Indicator", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "ocr", - "hexColor": "#bdd6ff", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 1000, - "description": "Empty dictionary used to configure ocr colors.", - "addToDictionaryAction": false, - "label": "Ocr", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "published_information", - "hexColor": "#85ebff", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 70, - "description": "Manual managed list of public journals and papers that need no redaction", - "addToDictionaryAction": true, - "label": "Published Information", - "dossierId": "global", - "hint": true, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "recommendation_CBI_address", - "hexColor": "#8df06c", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 30, - "description": "System managed: Automatically detected recommendations for CBI Address", - "addToDictionaryAction": false, - "label": "Recommendation CBI Address", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": true - }, - { - "type": "recommendation_CBI_author", - "hexColor": "#8df06c", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 40, - "description": "System managed: Automatically detected recommendations for CBI Author", - "addToDictionaryAction": false, - "label": "Recommendation CBI Author", - "dossierId": "global", - "hint": false, - "caseInsensitive": false, - "recommendation": true - }, - { - "type": "redaction_indicator", - "hexColor": "#ff85f7", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 90, - "description": "Forces redaction of CBI Author/Address even if there is a 'No Redaction Indicator', e.g. vertebrate, in vitro, and in vivo is found", - "addToDictionaryAction": false, - "label": "Redaction Indicator", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "signature", - "hexColor": "#9398a0", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 1003, - "description": "Empty dictionary used to configure signature colors.", - "addToDictionaryAction": false, - "label": "Signature", - "dossierId": "global", - "hint": false, - "caseInsensitive": true, - "recommendation": false - }, - { - "type": "test_method", - "hexColor": "#91fae8", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 60, - "description": "Manual managed list of Test Methods to disambiguate some CBI Authors like Fisher vs Fisher's Test", - "addToDictionaryAction": false, - "label": "Test Method", - "dossierId": "global", - "hint": true, - "caseInsensitive": false, - "recommendation": false - }, - { - "type": "vertebrate", - "hexColor": "#ff85f7", - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "rank": 110, - "description": "List of vertebrates that cause redaction of CBI Author/Address", - "addToDictionaryAction": false, - "label": "Vertebrate", - "dossierId": "global", - "hint": true, - "caseInsensitive": true, - "recommendation": false - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json deleted file mode 100644 index f23fbccf6..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_attributes_v1.json +++ /dev/null @@ -1 +0,0 @@ -[{"dossierAttributeId":"2884a75c-9be1-4557-824f-c85e3beca515","value":"Hello World","dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5"}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json deleted file mode 100644 index 10ae7807a..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_template_v2.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "name": "Manual Redaction", - "description": "Only manual redactions.", - "dateAdded": "2021-11-15T13:27:30Z", - "dateModified": "2021-11-16T08:15:57Z", - "createdBy": "ad4c802c-907b-41f2-8afa-9fa37e29c004", - "modifiedBy": "3f928d0d-79af-44b7-9398-294369fe65ac", - "validFrom": null, - "validTo": null, - "downloadFileTypes": [ - "PREVIEW", - "REDACTED" - ], - "deleted": true - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "name": "EFSA sanitisation GFL v1", - "description": "Redact all authors, laboratory addresses and other geolocation.", - "dateAdded": "2021-11-15T13:26:59Z", - "dateModified": "2021-07-19T08:09:27Z", - "createdBy": "e3aed6ea-a9e5-4f3f-bde7-6f0fe0c4362c", - "modifiedBy": "e3aed6ea-a9e5-4f3f-bde7-6f0fe0c4362c", - "validFrom": null, - "validTo": null, - "downloadFileTypes": [ - "PREVIEW", - "REDACTED" - ], - "deleted": false - }, - { - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "name": "EFSA sanitisation pre GFL v1", - "description": "Redact authors and laboratory addresses in combination with a vertebrate.", - "dateAdded": "2021-11-15T13:24:40Z", - "dateModified": "2021-11-15T13:27:17Z", - "createdBy": "System", - "modifiedBy": null, - "validFrom": null, - "validTo": null, - "downloadFileTypes": [ - "PREVIEW", - "REDACTED" - ], - "deleted": false - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json deleted file mode 100644 index 6d1253933..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/dossier_v4.json +++ /dev/null @@ -1 +0,0 @@ -[{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierName":"Dom2","date":"2021-11-15T13:27:48Z","description":"","status":"ACTIVE","ownerId":"f8960240-9973-42e9-9b0f-ed096ff5a018","memberIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"approverIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"downloadFileTypes":["PREVIEW","REDACTED"],"reportTypes":[],"dueDate":null,"reportTemplateIds":["e37613cb-e093-49af-ae69-5678148c29b8"],"softDeletedTime":null,"hardDeletedTime":null},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierName":"Dom1","date":"2021-11-15T13:27:19Z","description":"","status":"ACTIVE","ownerId":"f8960240-9973-42e9-9b0f-ed096ff5a018","memberIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"approverIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"downloadFileTypes":["PREVIEW","REDACTED"],"reportTypes":[],"dueDate":null,"reportTemplateIds":["75674b0f-7c70-4903-b30a-2a4aa330b6b1","87553a68-49e7-4bb6-9af7-263dcb81e964","e2eff609-1dbb-4f10-a1a2-de71f03e5875","e37613cb-e093-49af-ae69-5678148c29b8"],"softDeletedTime":null,"hardDeletedTime":null},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierName":"Dom3","date":"2021-11-15T13:28:31Z","description":"","status":"ACTIVE","ownerId":"f8960240-9973-42e9-9b0f-ed096ff5a018","memberIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"approverIds":["f8960240-9973-42e9-9b0f-ed096ff5a018"],"downloadFileTypes":["PREVIEW","REDACTED"],"reportTypes":[],"dueDate":null,"reportTemplateIds":["bb18db9e-2730-403c-90c0-d306aac06284"],"softDeletedTime":null,"hardDeletedTime":null}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json deleted file mode 100644 index 0637a088a..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/download_status_v3.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json deleted file mode 100644 index e5be4aeeb..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/entry_table_v6.json +++ /dev/null @@ -1,243 +0,0 @@ -[ - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "!BACON", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "#210 South Railway P.O. Box 144 Minto, MB ROK 1MO", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "#93-9017", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "'s-Hertogenbosch, The Netherlands", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "(AMBIS, Inc.", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "(Bray), Wicklow, Ireland", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "(Mobec, Inc.", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "-Nobel-Str. 50, D-40789 Monheim am Rhein", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "/ Agrisearch Italia SRL", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "04827 Gerichshain, Germany", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "06º 04' 32'", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "1 Rue Petits Champs Varennes Sur Loire 49730", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "10/036-001E", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "10/036-002P", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105-141", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105-142", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105-144", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-105", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-106A", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-108", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-10i3", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-119", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-123A", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-1C8", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "105A-l06A", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "107 Morgan Lane Plainsboro, NJ 08536", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "107 Morgan Lane Plainsboro, NJ 08536-3339", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "107 Morgan Lane Plainsboro, New Jersey", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "107 Morgan Lane, Plainsboro, NJ 08536", - "version": 2, - "deleted": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "dossierId": "global", - "type": "CBI_address", - "value": "1095 Morris Avenue P.O. Box 3182 Union, NJ 07083-1982", - "version": 2, - "deleted": false - } -] - diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json deleted file mode 100644 index f1b741923..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/file_status_v13.json +++ /dev/null @@ -1 +0,0 @@ -[{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"098b5b8902948267592b834da36d5c2a","filename":"VV-640504.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":39,"added":"2021-11-15T13:28:26Z","lastUpdated":"2021-11-15T13:33:11Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:11Z","lastUploaded":"2021-11-15T13:28:26Z","analysisDuration":322,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Dicamba/2,4-D SL (A10187A) – Acute toxicity to the honeybee Apis mellivera L. under laboratory conditions","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-640504","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"1a9168fdad57f5134d0f53053106d599","filename":"VV-740921.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":5,"added":"2021-11-15T13:28:20Z","lastUpdated":"2021-11-15T13:34:35Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":5,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":false,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:35Z","lastUploaded":"2021-11-15T13:28:20Z","analysisDuration":163,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Mesotrione/S-Metolachlor SE (A12909Q) +\nMesotrione/Nicosulfuron OD (A14351BX) - Acute Toxicity to the\nHoneybee Apis mellifera L. under Laboratory Conditions","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-740921","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"2eb362b5499f95079ade4b71897913fa","filename":"VV-314726.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":5,"added":"2021-11-15T13:28:18Z","lastUpdated":"2021-11-15T13:33:04Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":false,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:04Z","lastUploaded":"2021-11-15T13:28:18Z","analysisDuration":55,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"PP067","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-314726","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"6026e7cba4a3e3c45cd2f61835d0aab6","filename":"VV-734959.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":5,"added":"2021-11-15T13:28:18Z","lastUpdated":"2021-11-15T13:34:29Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":5,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:29Z","lastUploaded":"2021-11-15T13:28:18Z","analysisDuration":163,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Cyprodinil/Dithianon SC (A20886E) - Effects on the Reproduction of the Predatory Mite Hypoaspis aculeifer","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-734959","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"67acdc7b5b94c489ee286b36a33f997d","filename":"VV-306106.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":9,"added":"2021-11-15T13:28:20Z","lastUpdated":"2021-11-15T13:33:00Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":false,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:00Z","lastUploaded":"2021-11-15T13:28:20Z","analysisDuration":65,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Acute oral LD50 in the Japanese quail of C 1414 + CGA 55186 (400+027) EC 427","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-306106","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"a7985c094cac62118c9b350461902f95","filename":"VV-734958.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":31,"added":"2021-11-15T13:28:24Z","lastUpdated":"2021-11-15T13:34:26Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":"2021-11-15T13:34:16Z","hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:26Z","lastUploaded":"2021-11-15T13:28:24Z","analysisDuration":360,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Cyprodinil/Dithianon SC (A20886E) - Effects on the Reproduction of the Predatory Mite Hypoaspis aculeifer","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-734958","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":true,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"a7f0e789b7d3075fd181c0fe45c01158","filename":"VV-740920.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":44,"added":"2021-11-15T13:28:26Z","lastUpdated":"2021-11-15T13:34:32Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:34:32Z","lastUploaded":"2021-11-15T13:28:26Z","analysisDuration":332,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Mesotrione/S-Metolachlor SE (A12909Q) +\nMesotrione/Nicosulfuron OD (A14351BX) - Acute Toxicity to the\nHoneybee Apis mellifera L. under Laboratory Conditions","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-740920","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"No","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"b3d1a1c211efb8014d573df98235a7ee","filename":"VV-306110.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":8,"added":"2021-11-15T13:28:20Z","lastUpdated":"2021-11-15T13:33:01Z","deleted":null,"lastProcessed":"2021-11-15T13:32:27Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:01Z","lastUploaded":"2021-11-15T13:28:20Z","analysisDuration":63,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Acute oral LD50 in the Japanese quail of C 1414 + CGA 55186 (100+015) ULV 115 (A-6386 A)","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-306110","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"cb16007523bd8c2a1ad77600ba592505","filename":"VV-300093.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":8,"added":"2021-11-15T13:28:18Z","lastUpdated":"2021-11-15T13:32:51Z","deleted":null,"lastProcessed":"2021-11-15T13:32:28Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:32:51Z","lastUploaded":"2021-11-15T13:28:18Z","analysisDuration":176,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"\"8-day-feeding toxicity\" in the Japanese quail of C 2242 + CMPP WP 60 (A-5372 A)","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-300093","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","fileId":"d3ecc6843b712a59e6f5d81dff9d3808","filename":"VV-358220.pdf","status":"APPROVED","lastSuccessfulStatus":"APPROVED","numberOfPages":53,"added":"2021-11-15T13:28:29Z","lastUpdated":"2021-11-15T13:33:08Z","deleted":null,"lastProcessed":"2021-11-15T13:32:28Z","numberOfAnalyses":6,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":33,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":"2021-11-15T13:33:08Z","lastUploaded":"2021-11-15T13:28:29Z","analysisDuration":256,"fileAttributes":{"attributeIdToValue":{"08d6368c-422c-43da-a063-8003f61f3d0a":"Catfish bioaccumulation study following exposure to 14C-metolachlor in a soil / water / fish ecosystem","ed0d5abd-4cbc-45a4-8301-9e3de83faa82":"0","7640f623-6c4b-42b1-b484-ba8344dc7b75":"VV-358220","87ee65a1-91ff-4cd3-84cc-3d5beacbb070":"Yes","4ffb2326-04fe-4fc6-9554-693e9506d513":"1"}},"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":"2021-11-15T13:28:30Z","analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"1dcb49c006aa0652c2447671f0e5c903","filename":"S-Metolachlor_RAR_09_Volume_3CA_B-7_2018-09-06.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":187,"added":"2021-11-15T13:27:58Z","lastUpdated":"2021-11-15T13:30:19Z","deleted":null,"lastProcessed":"2021-11-15T13:30:19Z","numberOfAnalyses":3,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:58Z","analysisDuration":8919,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"220ab22e443c8e32d3778b0937b03170","filename":"S-Metolachlor_RAR_01_Volume_1_2018-09-06.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":221,"added":"2021-11-15T13:28:04Z","lastUpdated":"2021-11-15T13:30:14Z","deleted":null,"lastProcessed":"2021-11-15T13:30:14Z","numberOfAnalyses":4,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:04Z","analysisDuration":3457,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"5ac5c1e82f94fab776fbb6a67dc0efce","filename":"S-Metolachlor_RAR_21_Volume_3CP_A9396G_B-9_2018-09-06.pdf","status":"UNDER_APPROVAL","lastSuccessfulStatus":"UNDER_APPROVAL","numberOfPages":190,"added":"2021-11-15T13:27:58Z","lastUpdated":"2021-11-15T13:31:58Z","deleted":null,"lastProcessed":"2021-11-15T13:30:31Z","numberOfAnalyses":4,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:58Z","analysisDuration":17555,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"a1ac57eab398f23ad8f7ce702ce3935b","filename":"S-Metolachlor_RAR_12_Volume_3CA_B-9_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":499,"added":"2021-11-15T13:28:23Z","lastUpdated":"2021-11-15T13:31:36Z","deleted":null,"lastProcessed":"2021-11-15T13:31:36Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":32,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:23Z","analysisDuration":82288,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"b96a63098e0e63d8ef452a6ee3bea3d1","filename":"S-Metolachlor_RAR_07_Volume_3CA_B-5_2018-09-06.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":94,"added":"2021-11-15T13:27:44Z","lastUpdated":"2021-11-15T13:30:27Z","deleted":null,"lastProcessed":"2021-11-15T13:30:27Z","numberOfAnalyses":3,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:44Z","analysisDuration":8647,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"cca77a1cb4355da3fb9bc7b46cffc228","filename":"S-Metolachlor_RAR_02_Volume_2_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":277,"added":"2021-11-15T13:27:43Z","lastUpdated":"2021-11-15T13:33:29Z","deleted":null,"lastProcessed":"2021-11-15T13:33:29Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:43Z","analysisDuration":182211,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"cd2f7a6770116aa36867fd68245ebfd6","filename":"S-Metolachlor_RAR_08_Volume_3CA_B-6_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":532,"added":"2021-11-15T13:28:26Z","lastUpdated":"2021-11-15T13:32:05Z","deleted":null,"lastProcessed":"2021-11-15T13:32:05Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:26Z","analysisDuration":94404,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","fileId":"d0a46e8329f016f0ac0844f1097f15a5","filename":"S-Metolachlor_RAR_18_Volume_3CP_A9396G_B-6_2018-09-06.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":30,"added":"2021-11-15T13:27:40Z","lastUpdated":"2021-11-15T13:30:55Z","deleted":null,"lastProcessed":"2021-11-15T13:30:55Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":false,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":31,"rulesVersion":1,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:27:40Z","analysisDuration":1637,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"28ba6d7ae90b0f58859659d5fd1f519f","filename":"55 Fludioxonil_RAR_10_Volume_3CA_B-6_Annex2_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":44,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:27Z","deleted":null,"lastProcessed":"2021-11-15T13:31:27Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":1572,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"48178ab64e8fb35943c4f41ed0676b44","filename":"57 Fludioxonil_RAR_14_Volume_3CA_B-9_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":414,"added":"2021-11-15T13:29:32Z","lastUpdated":"2021-11-15T13:32:26Z","deleted":null,"lastProcessed":"2021-11-15T13:32:26Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:32Z","analysisDuration":60828,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"4f3b728a2600c85e50b2350f3e087418","filename":"61 Fludioxonil_RAR_24_Volume_3CP_A8240D_B-2_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":16,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:27Z","deleted":null,"lastProcessed":"2021-11-15T13:31:27Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":942,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"630157aa65fe8171c022fc1cbe508b6b","filename":"63 Fludioxonil_RAR_28_Volume_3CP_A8240D_B-6_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":59,"added":"2021-11-15T13:28:54Z","lastUpdated":"2021-11-15T13:31:29Z","deleted":null,"lastProcessed":"2021-11-15T13:31:29Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:54Z","analysisDuration":1512,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"6a32e3a872f7515ed00f8a2ad61e2a44","filename":"58 Fludioxonil_RAR_16_Volume_3CP_A8207M_B-2_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":18,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:30Z","deleted":null,"lastProcessed":"2021-11-15T13:31:30Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":1160,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"705e93ca3173f44bd28e68a4b5852bb8","filename":"64 Fludioxonil_RAR_30_Volume_3CP_A8240D_B-9_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":122,"added":"2021-11-15T13:29:00Z","lastUpdated":"2021-11-15T13:31:34Z","deleted":null,"lastProcessed":"2021-11-15T13:31:34Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:00Z","analysisDuration":3766,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"83e1e8af2b108f52b9c3d675737323a9","filename":"54 Fludioxonil_RAR_09_Volume_3CA_B-6_Annex1_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":29,"added":"2021-11-15T13:28:49Z","lastUpdated":"2021-11-15T13:31:35Z","deleted":null,"lastProcessed":"2021-11-15T13:31:35Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:49Z","analysisDuration":618,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"987b67e62979568205a30d4256ac2a4d","filename":"51 Fludioxonil_RAR_02_Volume_2_2018-02-21.pdf","status":"UNDER_REVIEW","lastSuccessfulStatus":"UNDER_REVIEW","numberOfPages":220,"added":"2021-11-15T13:29:01Z","lastUpdated":"2021-11-19T09:32:32Z","deleted":null,"lastProcessed":"2021-11-15T13:33:34Z","numberOfAnalyses":3,"currentReviewer":"f8960240-9973-42e9-9b0f-ed096ff5a018","lastReviewer":null,"lastManualRedaction":"2021-11-19T09:32:46Z","hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:01Z","analysisDuration":119242,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":true,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"9b688175babfc73f67511cff52a4647e","filename":"56 Fludioxonil_RAR_12_Volume_3CA_B-7_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":244,"added":"2021-11-15T13:29:22Z","lastUpdated":"2021-11-15T13:31:53Z","deleted":null,"lastProcessed":"2021-11-15T13:31:53Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:22Z","analysisDuration":16704,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"9bf53c727f6324f80ea2525a51ba8105","filename":"52 Fludioxonil_RAR_07_Volume_3CA_B-5_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":180,"added":"2021-11-15T13:29:17Z","lastUpdated":"2021-11-15T13:32:19Z","deleted":null,"lastProcessed":"2021-11-15T13:32:19Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:17Z","analysisDuration":25869,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"af2dc100722060d9744f99648db24c81","filename":"53 Fludioxonil_RAR_08_Volume_3CA_B-6_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":403,"added":"2021-11-15T13:29:36Z","lastUpdated":"2021-11-15T13:32:41Z","deleted":null,"lastProcessed":"2021-11-15T13:32:41Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:36Z","analysisDuration":35160,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"b9c0a97029bc3907c2e23cba0455b5f3","filename":"62 Fludioxonil_RAR_26_Volume_3CP_A8240D_B-4_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":10,"added":"2021-11-15T13:28:48Z","lastUpdated":"2021-11-15T13:32:19Z","deleted":null,"lastProcessed":"2021-11-15T13:32:19Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:48Z","analysisDuration":295,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"dc036e3079144554ebb0f90904d7f459","filename":"59 Fludioxonil_RAR_20_Volume_3CP_A8207M_B-6_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":39,"added":"2021-11-15T13:28:53Z","lastUpdated":"2021-11-15T13:32:20Z","deleted":null,"lastProcessed":"2021-11-15T13:32:20Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":false,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:53Z","analysisDuration":946,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"e08b4f6546a0b2807f6793715bc767ec","filename":"60 Fludioxonil_RAR_22_Volume_3CP_A8207M_B-9_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":89,"added":"2021-11-15T13:28:57Z","lastUpdated":"2021-11-15T13:32:23Z","deleted":null,"lastProcessed":"2021-11-15T13:32:23Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:28:57Z","analysisDuration":2635,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1},{"dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","fileId":"fd951b57da9745c7a0e437775e43c1f7","filename":"50 Fludioxonil_RAR_01_Volume_1_2018-02-21.pdf","status":"UNASSIGNED","lastSuccessfulStatus":"UNASSIGNED","numberOfPages":165,"added":"2021-11-15T13:29:12Z","lastUpdated":"2021-11-15T13:32:28Z","deleted":null,"lastProcessed":"2021-11-15T13:32:28Z","numberOfAnalyses":2,"currentReviewer":null,"lastReviewer":null,"lastManualRedaction":null,"hasRedactions":true,"hasHints":true,"hasSuggestions":false,"hasImages":true,"hasUpdates":true,"uploader":"f8960240-9973-42e9-9b0f-ed096ff5a018","dictionaryVersion":58,"rulesVersion":2,"dossierDictionaryVersion":1,"legalBasisVersion":1,"approvalDate":null,"lastUploaded":"2021-11-15T13:29:12Z","analysisDuration":4765,"fileAttributes":null,"lastOCRTime":null,"hasAnnotationComments":false,"excluded":false,"excludedPages":[],"hardDeletedTime":null,"lastFileAttributeChange":null,"analysisVersion":1}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json deleted file mode 100644 index a72440c7e..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_force_redaction_v3.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "id": "7ea3281320851f12dda397ef35315029", - "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", - "status": "APPROVED", - "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", - "requestDate": "2021-11-15T13:33:53Z", - "processedDate": null, - "softDeletedTime": null, - "fileId": "a7985c094cac62118c9b350461902f95" - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json deleted file mode 100644 index 0637a088a..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_image_recategorization_v3.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json deleted file mode 100644 index a6084e2a3..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_legal_basis_change_v3.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "id": "0284267db2bee9fe21fd8aab681664c5", - "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", - "status": "APPROVED", - "legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)", - "section": "", - "requestDate": "2021-11-15T13:33:41Z", - "processedDate": null, - "softDeletedTime": null, - "fileId": "a7985c094cac62118c9b350461902f95" - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json deleted file mode 100644 index bfdc5ad2b..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_annotations_v5.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "id": "82f1e0aee6c825a0a8519b0f1d812df7", - "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", - "type": "manual", - "value": "Cyprodinil/Dithianon", - "reason": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", - "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", - "section": null, - "positions": [ - { - "topLeft": { - "x": 259.19, - "y": 648.586 - }, - "width": 110.832, - "height": 16.584, - "page": 1 - } - ], - "status": "APPROVED", - "addToDictionary": false, - "addToDossierDictionary": false, - "requestDate": "2021-11-15T13:33:30Z", - "processedDate": "2021-11-15T13:33:30Z", - "softDeletedTime": null, - "fileId": "a7985c094cac62118c9b350461902f95" - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json deleted file mode 100644 index c72c48380..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_comments_v3.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "id": "474c3e04-3ab5-4f05-a80d-168f5c348bf6", - "date": "2021-11-19T09:32:46Z", - "text": "Hi this a comment", - "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", - "softDeletedTime": null, - "fileId": "987b67e62979568205a30d4256ac2a4d", - "annotationId": "dc0a1380cbd6fcff2ceb4a1ccec4a252" - }, - { - "id": "7ff2936f-68ff-4164-a788-ace1f953bb9c", - "date": "2021-11-15T13:33:30Z", - "text": "frgrtgrtgtrgtr", - "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", - "softDeletedTime": null, - "fileId": "a7985c094cac62118c9b350461902f95", - "annotationId": "82f1e0aee6c825a0a8519b0f1d812df7" - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json deleted file mode 100644 index 706e289cb..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/manual_redaction_remove_v2.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "id": "79076b24b707268b3c27874a71494082", - "user": "f8960240-9973-42e9-9b0f-ed096ff5a018", - "status": "APPROVED", - "removeFromDictionary": false, - "requestDate": "2021-11-15T13:34:16Z", - "processedDate": "2021-11-15T13:34:16Z", - "softDeletedTime": null, - "fileId": "a7985c094cac62118c9b350461902f95" - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json deleted file mode 100644 index 0637a088a..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/notification_v1.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json deleted file mode 100644 index 58f7b6ddb..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/report_template_table_v4.json +++ /dev/null @@ -1,98 +0,0 @@ -[ - { - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "templateId": "3faddf0b-5d59-4b2f-b568-458ede09eb9b", - "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Justification Appendix A1.docx", - "fileName": "Justification Appendix A1.docx", - "uploadDate": "2021-11-15T13:27:30Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "templateId": "6964c53b-005f-4731-82a0-84b30210ab33", - "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Excel Report.xlsx", - "fileName": "Excel Report.xlsx", - "uploadDate": "2021-11-15T13:27:30Z", - "multiFileReport": true - }, - { - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "templateId": "7cc992f1-3e46-48fb-8a75-b5b2f33ebe88", - "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Justification Appendix A2.docx", - "fileName": "Justification Appendix A2.docx", - "uploadDate": "2021-11-15T13:27:30Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6", - "templateId": "f74130a9-c875-4926-95c1-405d2e272ada", - "storageId": "6d945ebb-604b-4781-a72b-0f07e8ceb3e6/Excel Report.xlsx", - "fileName": "Excel Report.xlsx", - "uploadDate": "2021-11-15T13:27:30Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "templateId": "75674b0f-7c70-4903-b30a-2a4aa330b6b1", - "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Excel Report.xlsx", - "fileName": "Excel Report.xlsx", - "uploadDate": "2021-11-15T13:26:59Z", - "multiFileReport": true - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "templateId": "87553a68-49e7-4bb6-9af7-263dcb81e964", - "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Justification Appendix A1.docx", - "fileName": "Justification Appendix A1.docx", - "uploadDate": "2021-11-15T13:27:00Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "templateId": "e2eff609-1dbb-4f10-a1a2-de71f03e5875", - "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Excel Report.xlsx", - "fileName": "Excel Report.xlsx", - "uploadDate": "2021-11-15T13:26:59Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "49156a1f-30cc-412f-8778-eb5bd842d709", - "templateId": "e37613cb-e093-49af-ae69-5678148c29b8", - "storageId": "49156a1f-30cc-412f-8778-eb5bd842d709/Justification Appendix A2.docx", - "fileName": "Justification Appendix A2.docx", - "uploadDate": "2021-11-15T13:27:00Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "templateId": "14a73f71-65bc-4fb9-8319-c11ba9d97e47", - "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Justification Appendix A1.docx", - "fileName": "Justification Appendix A1.docx", - "uploadDate": "2021-11-15T13:27:17Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "templateId": "345d8544-cd4e-4321-bd3a-8217d9d2f1b3", - "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Excel Report.xlsx", - "fileName": "Excel Report.xlsx", - "uploadDate": "2021-11-15T13:27:17Z", - "multiFileReport": false - }, - { - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "templateId": "5c78a098-6020-4cf9-b610-5b2422f98d29", - "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Excel Report.xlsx", - "fileName": "Excel Report.xlsx", - "uploadDate": "2021-11-15T13:27:17Z", - "multiFileReport": true - }, - { - "dossierTemplateId": "9b7bd575-4566-4408-984f-b26da1d2616e", - "templateId": "bb18db9e-2730-403c-90c0-d306aac06284", - "storageId": "9b7bd575-4566-4408-984f-b26da1d2616e/Justification Appendix A2.docx", - "fileName": "Justification Appendix A2.docx", - "uploadDate": "2021-11-15T13:27:18Z", - "multiFileReport": false - } -] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json deleted file mode 100644 index 634a48c46..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/version_table_v4.json +++ /dev/null @@ -1 +0,0 @@ -[{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","dossierId":"global","versionType":0,"version":1},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","dossierId":"global","versionType":1,"version":6},{"dossierTemplateId":"6d945ebb-604b-4781-a72b-0f07e8ceb3e6","dossierId":"global","versionType":2,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"48c10c3e-9831-4165-a80e-6e96ba2c3e98","versionType":1,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"b2c9c4e5-5382-4862-9402-5b619c41a68c","versionType":1,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"global","versionType":0,"version":1},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"global","versionType":1,"version":33},{"dossierTemplateId":"49156a1f-30cc-412f-8778-eb5bd842d709","dossierId":"global","versionType":2,"version":1},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"d46267c1-bb19-44ca-8c0c-60fb5d5309c5","versionType":1,"version":1},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"global","versionType":0,"version":2},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"global","versionType":1,"version":58},{"dossierTemplateId":"9b7bd575-4566-4408-984f-b26da1d2616e","dossierId":"global","versionType":2,"version":1}] \ No newline at end of file diff --git a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json b/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json deleted file mode 100644 index 2f2f3434e..000000000 --- a/persistence-service-v1/persistence-service-server-v1/src/test/resources/files/migration/viewed_pages_v2.json +++ /dev/null @@ -1 +0,0 @@ -[{"fileId":"a7985c094cac62118c9b350461902f95","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","page":1},{"fileId":"a7985c094cac62118c9b350461902f95","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","page":5},{"fileId":"a7985c094cac62118c9b350461902f95","userId":"f8960240-9973-42e9-9b0f-ed096ff5a018","page":6}] \ No newline at end of file