From cb0a0704456832ff94b20a5cc3dd45d528babdab Mon Sep 17 00:00:00 2001 From: Stony Date: Sat, 19 Feb 2022 16:36:25 +0800 Subject: [PATCH] add java liberary, referred to the koltin code --- .gitignore | 3 +- java/pom.xml | 65 + .../GoogleVisionLineSegmentationParser.java | 337 + ...oogleVisionLineSegmentationParserTest.java | 118 + java/src/test/resources/S01200HQT173.jpg.json | 38106 ++++++++++++++++ 5 files changed, 38628 insertions(+), 1 deletion(-) create mode 100644 java/pom.xml create mode 100644 java/src/main/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParser.java create mode 100644 java/src/test/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParserTest.java create mode 100644 java/src/test/resources/S01200HQT173.jpg.json diff --git a/.gitignore b/.gitignore index 5945772..bfceb6e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ package-lock\.json test-report\.xml *.iml kotlin/build -kotlin/.gradle \ No newline at end of file +kotlin/.gradle +java/target \ No newline at end of file diff --git a/java/pom.xml b/java/pom.xml new file mode 100644 index 0000000..62acd97 --- /dev/null +++ b/java/pom.xml @@ -0,0 +1,65 @@ + + + 4.0.0 + + com.google.vision.linesegmentation + line-segmentation-algorithm-to-gcp-vision + 1.0 + receipt-service + Demo project for Spring Boot + + 1.8 + + + + + com.google.code.gson + gson + 2.8.6 + + + com.google.cloud + google-cloud-vision + 1.99.3 + + + junit + junit + 4.11 + test + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile + compile + + compile + + + + testCompile + test-compile + + testCompile + + + + + 8 + 8 + + + + + + diff --git a/java/src/main/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParser.java b/java/src/main/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParser.java new file mode 100644 index 0000000..2be93b9 --- /dev/null +++ b/java/src/main/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParser.java @@ -0,0 +1,337 @@ +package com.google.vision.linesegmentation; + + +import com.google.cloud.vision.v1.AnnotateImageResponse; +import com.google.cloud.vision.v1.BoundingPoly; +import com.google.cloud.vision.v1.EntityAnnotation; +import com.google.cloud.vision.v1.Vertex; +import com.google.gson.Gson; + +import java.awt.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; +import java.util.Optional; + +import static java.lang.Math.round; + +/** + * @author Stony on 2/18/22 2:20 PM. + */ +public class GoogleVisionLineSegmentationParser { + List initLineSegmentation(AnnotateImageResponse data) { + int yMax = getYMax(data.getTextAnnotations(0)); + + AnnotateImageResponse newData = invertAxis(data, yMax); + // The first index refers to the auto identified words which belongs to a sings line + List lines = new ArrayList<>(Arrays.asList(newData.getTextAnnotationsList().get(0).getDescription().split("\n"))); + // gcp vision full text + List rawText = new ArrayList<>(deepCopy(newData).getTextAnnotationsList()); + + // reverse to use lifo, because array.shift() will consume 0(n) + Collections.reverse(lines); + Collections.reverse(rawText); +// lines = lines.reversed().toMutableList(); +// rawText = rawText.reversed().toMutableList(); + //to remove the zeroth element which gives the total summary of the text + rawText.remove(rawText.size() - 1); + + List mergedArray = getMergedLines(lines, rawText); + List> entityToMetadata = getBoundingPolygon(mergedArray); + + combineBoundingPolygon(entityToMetadata); + return constructLineWithBoundingPolygon(entityToMetadata); + } + + // TODO implement the line ordering for multiple words + protected List constructLineWithBoundingPolygon(List> entityToMetadata){ + ArrayList finalArray = new ArrayList<>(); + + for (int index = 0; index < entityToMetadata.size(); index++) { + Pair it = entityToMetadata.get(index); + + if (!it.getSecond().matched) { + if (it.getSecond().match.size() == 0) { + finalArray.add(it.getFirst().getDescription()); + } else { + // arrangeWordsInOrder(mergedArray, i); + // let index = mergedArray[i]['match'][0]['matchLineNum']; + // let secondPart = mergedArray[index].description; + // finalArray.push(mergedArray[i].description + ' ' +secondPart); + finalArray.add(arrangeWordsInOrder(entityToMetadata, index)); + } + } + } + return finalArray; + } + + private List getMergedLines(List lines, List rawText) { + ArrayList mergedArray = new ArrayList<>(); + while (lines.size() != 0) { + String l = lines.remove(lines.size() - 1); + String l1 = l; + boolean status = true; + EntityAnnotation mergedElement = null; + + while (true) { + if (rawText.isEmpty()) { + break; + } + EntityAnnotation wElement = rawText.remove(rawText.size() - 1); + String w = wElement.getDescription(); + + int index = l.indexOf(w); + + l = l.substring(index + w.length()); + + if (status) { + status = false; + // set starting coordinates + mergedElement = wElement; + } + if (l.equals("")) { + EntityAnnotation newElement = EntityAnnotation.newBuilder().mergeFrom(mergedElement) + .setDescription(l1) + .setBoundingPoly(BoundingPoly.newBuilder().mergeFrom(mergedElement.getBoundingPoly()).clearVertices() + .addVertices(0, mergedElement.getBoundingPoly().getVerticesList().get(0)) + .addVertices(1, wElement.getBoundingPoly().getVerticesList().get(1)) + .addVertices(2, wElement.getBoundingPoly().getVerticesList().get(2)) + .addVertices(3, mergedElement.getBoundingPoly().getVerticesList().get(3)).build()).build(); + mergedArray.add(newElement); + break; + } + } + } + return mergedArray; + } + + private String arrangeWordsInOrder(List> entityToMetadata, int k) { + String mergedLine = ""; + List line = entityToMetadata.get(k).getSecond().match; + + for (Match it : line) { + int index = it.matchLineNum; + String matchedWordForLine = entityToMetadata.get(index).getFirst().getDescription(); + + int mainX = entityToMetadata.get(k).getFirst().getBoundingPoly().getVerticesList().get(0).getX(); + int compareX = entityToMetadata.get(index).getFirst().getBoundingPoly().getVerticesList().get(0).getX(); + + if (compareX > mainX) { + mergedLine = entityToMetadata.get(k).getFirst().getDescription() + ' ' + matchedWordForLine; + } else { + mergedLine = matchedWordForLine + ' ' + entityToMetadata.get(k).getFirst().getDescription(); + } + } + return mergedLine; + } + + /** + * @Method computes the maximum y coordinate from the identified text blob + * @param data + * @returns {*} + */ + int getYMax(EntityAnnotation data) { + Optional max = data.getBoundingPoly().getVerticesList().stream().max(Comparator.comparingInt(Vertex::getY)); + return max.get().getY(); + } + + /** + * @Method inverts the y axis coordinates for easier computation + * as the google vision starts the y axis from the bottom + * @param data + * @param yMax + * @returns {*} + */ + private AnnotateImageResponse invertAxis(AnnotateImageResponse data, int yMax) { + //TODO Don't think this is needed + //data = fillMissingValues(data); + List newEntities = new ArrayList<>(); + + newEntities.add(data.getTextAnnotations(0)); + for (int i=1;i vertexList = new ArrayList<>(); + data.getTextAnnotations(i).getBoundingPoly().getVerticesList().forEach( it ->{ + vertexList.add(Vertex.newBuilder().mergeFrom(it).clearY().setY(yMax - it.getY()).build()); + }); + + EntityAnnotation.Builder entityBuilder = EntityAnnotation.newBuilder().mergeFrom(data.getTextAnnotations(i)); + entityBuilder.setBoundingPoly( entityBuilder.getBoundingPolyBuilder().clearVertices().addAllVertices(vertexList).build()); + EntityAnnotation newEntity = entityBuilder.build(); + newEntities.add(newEntity); + } + AnnotateImageResponse.Builder responseBuilder = AnnotateImageResponse.newBuilder().mergeFrom(data); + responseBuilder.clearTextAnnotations(); + responseBuilder.addAllTextAnnotations(newEntities); + return responseBuilder.build(); + } + + + /** + * + * @param mergedArray + */ + private List> getBoundingPolygon(List mergedArray) { + List> entityAnnotationToMetadata = new ArrayList<>(); + + for (int index = 0; index < mergedArray.size(); index++) { + EntityAnnotation it = mergedArray.get(index); + ArrayList arr = new ArrayList<>(); + // calculate line height + int h1 = it.getBoundingPoly().getVerticesList().get(0).getY() - it.getBoundingPoly().getVerticesList().get(3).getY(); + int h2 = it.getBoundingPoly().getVerticesList().get(1).getY() - it.getBoundingPoly().getVerticesList().get(2).getY(); + int h = h1; + if (h2 > h1) { + h = h2; + } + double avgHeight = h * 0.6; + + arr.add(it.getBoundingPoly().getVerticesList().get(1)); + arr.add(it.getBoundingPoly().getVerticesList().get(0)); + Rectangle line1 = getRectangle(arr, avgHeight, true); + + arr.clear(); + arr.add(it.getBoundingPoly().getVerticesList().get(2)); + arr.add(it.getBoundingPoly().getVerticesList().get(3)); + Rectangle line2 = getRectangle(arr, avgHeight, false); + + entityAnnotationToMetadata.add(new Pair<>(it, new EntityMetadata(createPolygon(line1, line2), index, new ArrayList<>(), false))); + } + return entityAnnotationToMetadata; + } + + private void combineBoundingPolygon( List> entityToMetadata) { + // select one word from the array + for (int index1 = 0; index1 < entityToMetadata.size(); index1++) { + Pair it = entityToMetadata.get(index1); + + Polygon bigBB = it.getSecond().bigBB; + // iterate through all the array to find the match + for (int index2 = index1; index2 < entityToMetadata.size(); index2++) { + + Pair k = entityToMetadata.get(index2); + // Do not compare with the own bounding box and which was not matched with a line + if (index1 != index2 && !k.getSecond().matched) { + int insideCount = 0; + for (Vertex coordinate : k.getFirst().getBoundingPoly().getVerticesList()) { + if (bigBB.contains(coordinate.getX(), coordinate.getY())) { + insideCount += 1; + } + } + + // all four point were inside the big bb + if (insideCount == 4) { + it.getSecond().match.add(new Match(insideCount, index2)); + k.getSecond().matched = true; + } + + } + } + } + } + + private Rectangle getRectangle(List v, Double avgHeight, Boolean isAdd) { + double firstCandidate; + double secondCandidate; + if (isAdd) { + secondCandidate = v.get(1).getY() + avgHeight; + firstCandidate = v.get(0).getY()+ avgHeight; + } else { + secondCandidate = v.get(1).getY()- avgHeight; + firstCandidate = v.get(0).getY() - avgHeight; + } + + double yDiff = (secondCandidate - firstCandidate); + int xDiff = (v.get(1).getX() - v.get(0).getX()); + + double gradient = yDiff / xDiff; + + int xThreshMin = 1; + int xThreshMax = 2000; + + double yMin; + double yMax; + if (gradient == 0.0) { + // extend the line + yMin = firstCandidate; + yMax = firstCandidate; + } else { + yMin = (firstCandidate) - (gradient * (v.get(0).getX() - xThreshMin)); + yMax = (firstCandidate) + (gradient * (xThreshMax - v.get(0).getX())); + } + + return new Rectangle(xThreshMin, xThreshMax, round(yMin), round(yMax)); + } + + private Polygon createPolygon(Rectangle line1, Rectangle line2) { + Polygon polygon = new Polygon(); + polygon.addPoint(line1.xMin, round(line1.yMin)); + polygon.addPoint(line1.xMax, round(line1.yMax)); + polygon.addPoint(line2.xMax, round(line2.yMax)); + polygon.addPoint(line2.xMin, round(line2.yMin)); + return polygon; + } + + private AnnotateImageResponse deepCopy(AnnotateImageResponse t) { + String serializedObj = new Gson().toJson(t); + return new Gson().fromJson(serializedObj, AnnotateImageResponse.class); + } + + static class Rectangle { + int xMin; + int xMax; + long yMin; + long yMax; + + public Rectangle(int xMin, int xMax, long yMin, long yMax) { + this.xMin = xMin; + this.xMax = xMax; + this.yMin = yMin; + this.yMax = yMax; + } + } + + static class EntityMetadata { + Polygon bigBB; + int lineNum; + List match; + Boolean matched; + + public EntityMetadata(Polygon bigBB, int lineNum, List match, Boolean matched) { + this.bigBB = bigBB; + this.lineNum = lineNum; + this.match = match; + this.matched = matched; + } + } + + static class Match { + int matchCount; + int matchLineNum; + + public Match(int matchCount, int matchLineNum) { + this.matchCount = matchCount; + this.matchLineNum = matchLineNum; + } + } + + static class Pair { + K first; + V second; + + public Pair(K first, V second) { + this.first = first; + this.second = second; + } + + public K getFirst() { + return first; + } + + public V getSecond() { + return second; + } + + } +} diff --git a/java/src/test/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParserTest.java b/java/src/test/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParserTest.java new file mode 100644 index 0000000..827652c --- /dev/null +++ b/java/src/test/java/com/google/vision/linesegmentation/GoogleVisionLineSegmentationParserTest.java @@ -0,0 +1,118 @@ +package com.google.vision.linesegmentation; + +import com.google.common.io.Resources; +import com.google.cloud.vision.v1.AnnotateImageResponse; +import com.google.cloud.vision.v1.BoundingPoly; +import com.google.cloud.vision.v1.EntityAnnotation; +import com.google.cloud.vision.v1.Vertex; +import com.google.gson.FieldNamingPolicy; +import com.google.gson.FieldNamingStrategy; +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import org.junit.Assert; +import org.junit.Test; + +import java.io.IOException; +import java.lang.reflect.Field; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.util.List; + +public class GoogleVisionLineSegmentationParserTest { + @Test + public void happyPathParse() throws IOException { + GoogleVisionLineSegmentationParser googleVisionLineSegmentationParser = new GoogleVisionLineSegmentationParser(); + URL url = this.getClass().getResource("/S01200HQT173.jpg.json"); + String content = Resources.toString(url, StandardCharsets.UTF_8); + AnnotateImageResponse annotateImageResponse = getGson().fromJson(content, AnnotateImageResponse.class); + List mergedArray = googleVisionLineSegmentationParser.initLineSegmentation(annotateImageResponse); + + String[] expected = new String[]{"TESCO", + "eactra", + "CUMBERNAULD 0345 6779808", + + "KITTEN FOOD £3.50", + "DIPPERS £2.50", + "CKN DIPPERS £1.50", + "CRISPS £1.24", + "MINI CHEDDAR £1.00", + "CRISPS £1.24", + "MINI CHEDDAR £1.00", + "T POTATO CAKES eU", + "£0.50 £1.00", + "CKN/MUSH SLICE £1.50", + "CKN FINGERS £2.00", + "TARTS £1.00", + "CKN FINGERS £2.00", + "TARTS £1.00", + "SCONES £1.20", + "BS 4 BURG BUNS 0.70", + "£0.80", + "BIN LINERS x £1.00", + "KM SOFT THICK", + "SWEETS", + "£0.40 0.80", + "GOV BAG CHARGE+x £0.05", + "BISCUITS £1.00", + "£1.29", + "TIMEOUT", + "TOTAL £27.32", + "CASH", + "CHANGE DUE £2.68", + "830.00", + "CLUBCARD STATEMENT", + "CLUBCARD NUMBER xxxxxxxxxxxxxx0582", + "QUALIFVING SPEND £27.27", + "POINTS THIS VISIT 27", + "TOTAL UP TO 07/11/16", + "TESCO", + "Bran", + "Guarantee", + "Today we were", + "E O.35", + "cheaper", + "on your branded basket compared to", + "Asda, Morrisons and Sainsbury's", + "Our Brand Guarantee instantly matches", + "your branded basket so you can always", + "checkout with confi dence", + "Branded grocery basket matched. For full", + "terms visit tesco.com/brandguar antee", + "by telling us about your trip", + "at www.tescoviews.com", + "and collect 25 Clubcard points.", + "Terms and conditions apply"}; + Assert.assertArrayEquals(expected, mergedArray.toArray(new String[0])); + } + + @Test + public void maxYTest() { + GoogleVisionLineSegmentationParser googleVisionLineSegmentationParser = new GoogleVisionLineSegmentationParser(); + EntityAnnotation entityAnnotation = EntityAnnotation.newBuilder().setBoundingPoly(BoundingPoly.newBuilder() + .addVertices(Vertex.newBuilder().setX(262).setY(260).build()) + .addVertices(Vertex.newBuilder().setX(1176).setY(260).build()) + .addVertices(Vertex.newBuilder().setX(1176).setY(3486).build()) + .addVertices(Vertex.newBuilder().setX(262).setY(3486).build()).build()).build(); + Assert.assertEquals(googleVisionLineSegmentationParser.getYMax(entityAnnotation), 3486); + + } + + Gson getGson() { + return new GsonBuilder() + .setFieldNamingStrategy(new PrivateFieldNamingStrategy()) + .setPrettyPrinting().disableHtmlEscaping() + .create(); + } + + class PrivateFieldNamingStrategy implements FieldNamingStrategy { + + @Override + public String translateName(Field f) { + String fieldName = FieldNamingPolicy.IDENTITY.translateName(f); + if (fieldName.endsWith("_")) { + return fieldName.substring(0, fieldName.length() - 1); + } + return fieldName; + } + } +} diff --git a/java/src/test/resources/S01200HQT173.jpg.json b/java/src/test/resources/S01200HQT173.jpg.json new file mode 100644 index 0000000..947b015 --- /dev/null +++ b/java/src/test/resources/S01200HQT173.jpg.json @@ -0,0 +1,38106 @@ +{ + "faceAnnotations": [], + "landmarkAnnotations": [], + "logoAnnotations": [], + "labelAnnotations": [], + "textAnnotations": [ + { + "mid": "", + "locale": "en", + "description": "TESCO\neactra\nCUMBERNAULD 0345 6779808\nKITTEN FOOD\nDIPPERS\nCKN DIPPERS\nCRISPS\nMINI CHEDDAR\nCRISPS\nMINI CHEDDAR\nT POTATO CAKES\n£3.50\n£2.50\n£1.50\n£1.24\n£1.00\n£1.24\n£1.00\neU\n£1.00\n£1.50\n£2.00\n£1.00\n£2.00\n£1.00\n£1.20\n0.70\n£0.80\n£1.00\n£0.50\nCKN/MUSH SLICE\nCKN FINGERS\nTARTS\nCKN FINGERS\nTARTS\nSCONES\nBS 4 BURG BUNS\nKM SOFT THICK\nBIN LINERS x\nSWEETS\n0.80\n£0.05\n£1.00\n£1.29\n£0.40\nGOV BAG CHARGE+x\nTIMEOUT\nBISCUITS\nTOTAL\nCASH\nCHANGE DUE\n£27.32\n830.00\n£2.68\nCLUBCARD STATEMENT\nCLUBCARD NUMBER xxxxxxxxxxxxxx0582\nQUALIFVING SPEND\nPOINTS THIS VISIT\nTOTAL UP TO 07/11/16\n£27.27\n27\nTESCO\nBran\nGuarantee\nToday we were\nE O.35\ncheaper\non your branded basket compared to\nAsda, Morrisons and Sainsbury's\nOur Brand Guarantee instantly matches\nyour branded basket so you can always\ncheckout with confi dence\nBranded grocery basket matched. For full\nterms visit tesco.com/brandguar antee\nby telling us about your trip\nat www.tescoviews.com\nand collect 25 Clubcard points.\nTerms and conditions apply\n", + "description": "TESCO\neactra\nCUMBERNAULD 0345 6779808\nKITTEN FOOD\nDIPPERS\nCKN DIPPERS\nCRISPS\nMINI CHEDDAR\nCRISPS\nMINI CHEDDAR\nT POTATO CAKES\n£3.50\n£2.50\n£1.50\n£1.24\n£1.00\n£1.24\n£1.00\neU\n£1.00\n£1.50\n£2.00\n£1.00\n£2.00\n£1.00\n£1.20\n0.70\n£0.80\n£1.00\n£0.50\nCKN/MUSH SLICE\nCKN FINGERS\nTARTS\nCKN FINGERS\nTARTS\nSCONES\nBS 4 BURG BUNS\nKM SOFT THICK\nBIN LINERS x\nSWEETS\n0.80\n£0.05\n£1.00\n£1.29\n£0.40\nGOV BAG CHARGE+x\nTIMEOUT\nBISCUITS\nTOTAL\nCASH\nCHANGE DUE\n£27.32\n830.00\n£2.68\nCLUBCARD STATEMENT\nCLUBCARD NUMBER xxxxxxxxxxxxxx0582\nQUALIFVING SPEND\nPOINTS THIS VISIT\nTOTAL UP TO 07/11/16\n£27.27\n27\nTESCO\nBran\nGuarantee\nToday we were\nE O.35\ncheaper\non your branded basket compared to\nAsda, Morrisons and Sainsbury's\nOur Brand Guarantee instantly matches\nyour branded basket so you can always\ncheckout with confi dence\nBranded grocery basket matched. For full\nterms visit tesco.com/brandguar antee\nby telling us about your trip\nat www.tescoviews.com\nand collect 25 Clubcard points.\nTerms and conditions apply\n", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 262, + "y": 260 + }, + { + "x": 1176, + "y": 260 + }, + { + "x": 1176, + "y": 3486 + }, + { + "x": 262, + "y": 3486 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TESCO", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 524, + "y": 267 + }, + { + "x": 807, + "y": 260 + }, + { + "x": 808, + "y": 291 + }, + { + "x": 525, + "y": 298 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "eactra", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 546, + "y": 328 + }, + { + "x": 772, + "y": 318 + }, + { + "x": 775, + "y": 387 + }, + { + "x": 549, + "y": 397 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CUMBERNAULD", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 430, + "y": 406 + }, + { + "x": 668, + "y": 399 + }, + { + "x": 669, + "y": 435 + }, + { + "x": 431, + "y": 442 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "0345", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 690, + "y": 399 + }, + { + "x": 774, + "y": 397 + }, + { + "x": 775, + "y": 431 + }, + { + "x": 691, + "y": 433 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "6779808", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 796, + "y": 395 + }, + { + "x": 947, + "y": 391 + }, + { + "x": 948, + "y": 425 + }, + { + "x": 797, + "y": 429 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "KITTEN", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 280, + "y": 496 + }, + { + "x": 405, + "y": 493 + }, + { + "x": 406, + "y": 526 + }, + { + "x": 281, + "y": 529 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "FOOD", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 431, + "y": 493 + }, + { + "x": 512, + "y": 491 + }, + { + "x": 513, + "y": 524 + }, + { + "x": 432, + "y": 526 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "DIPPERS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 279, + "y": 538 + }, + { + "x": 433, + "y": 538 + }, + { + "x": 433, + "y": 576 + }, + { + "x": 279, + "y": 576 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CKN", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 280, + "y": 585 + }, + { + "x": 341, + "y": 585 + }, + { + "x": 341, + "y": 615 + }, + { + "x": 280, + "y": 615 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "DIPPERS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 364, + "y": 580 + }, + { + "x": 516, + "y": 580 + }, + { + "x": 516, + "y": 615 + }, + { + "x": 364, + "y": 615 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CRISPS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 280, + "y": 630 + }, + { + "x": 405, + "y": 625 + }, + { + "x": 406, + "y": 659 + }, + { + "x": 281, + "y": 664 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "MINI", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 280, + "y": 675 + }, + { + "x": 357, + "y": 674 + }, + { + "x": 358, + "y": 707 + }, + { + "x": 281, + "y": 708 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CHEDDAR", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 387, + "y": 671 + }, + { + "x": 536, + "y": 669 + }, + { + "x": 537, + "y": 703 + }, + { + "x": 388, + "y": 705 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CRISPS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 279, + "y": 719 + }, + { + "x": 408, + "y": 714 + }, + { + "x": 409, + "y": 748 + }, + { + "x": 280, + "y": 753 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "MINI", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 280, + "y": 765 + }, + { + "x": 361, + "y": 763 + }, + { + "x": 362, + "y": 796 + }, + { + "x": 281, + "y": 798 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CHEDDAR", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 388, + "y": 764 + }, + { + "x": 537, + "y": 761 + }, + { + "x": 538, + "y": 794 + }, + { + "x": 389, + "y": 797 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "T", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 284, + "y": 808 + }, + { + "x": 298, + "y": 808 + }, + { + "x": 299, + "y": 842 + }, + { + "x": 285, + "y": 842 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "POTATO", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 323, + "y": 808 + }, + { + "x": 453, + "y": 806 + }, + { + "x": 454, + "y": 839 + }, + { + "x": 324, + "y": 841 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CAKES", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 476, + "y": 805 + }, + { + "x": 584, + "y": 803 + }, + { + "x": 585, + "y": 836 + }, + { + "x": 477, + "y": 838 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£3.50", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 950, + "y": 478 + }, + { + "x": 1057, + "y": 478 + }, + { + "x": 1057, + "y": 515 + }, + { + "x": 950, + "y": 515 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£2.50", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 952, + "y": 522 + }, + { + "x": 1057, + "y": 523 + }, + { + "x": 1057, + "y": 559 + }, + { + "x": 952, + "y": 558 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.50", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 950, + "y": 570 + }, + { + "x": 1056, + "y": 561 + }, + { + "x": 1059, + "y": 599 + }, + { + "x": 953, + "y": 608 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.24", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 956, + "y": 615 + }, + { + "x": 1059, + "y": 616 + }, + { + "x": 1059, + "y": 650 + }, + { + "x": 956, + "y": 649 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 957, + "y": 657 + }, + { + "x": 1060, + "y": 658 + }, + { + "x": 1060, + "y": 694 + }, + { + "x": 957, + "y": 693 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.24", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 956, + "y": 704 + }, + { + "x": 1062, + "y": 704 + }, + { + "x": 1062, + "y": 741 + }, + { + "x": 956, + "y": 741 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 959, + "y": 747 + }, + { + "x": 1064, + "y": 747 + }, + { + "x": 1064, + "y": 783 + }, + { + "x": 959, + "y": 783 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "eU", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 606, + "y": 788 + }, + { + "x": 652, + "y": 788 + }, + { + "x": 652, + "y": 822 + }, + { + "x": 606, + "y": 822 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 959, + "y": 836 + }, + { + "x": 1065, + "y": 836 + }, + { + "x": 1065, + "y": 875 + }, + { + "x": 959, + "y": 875 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.50", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 961, + "y": 884 + }, + { + "x": 1067, + "y": 884 + }, + { + "x": 1067, + "y": 921 + }, + { + "x": 961, + "y": 921 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£2.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 962, + "y": 932 + }, + { + "x": 1065, + "y": 928 + }, + { + "x": 1066, + "y": 962 + }, + { + "x": 963, + "y": 966 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 964, + "y": 973 + }, + { + "x": 1067, + "y": 974 + }, + { + "x": 1067, + "y": 1010 + }, + { + "x": 964, + "y": 1009 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£2.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 962, + "y": 1021 + }, + { + "x": 1067, + "y": 1016 + }, + { + "x": 1068, + "y": 1050 + }, + { + "x": 964, + "y": 1055 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 964, + "y": 1065 + }, + { + "x": 1065, + "y": 1062 + }, + { + "x": 1066, + "y": 1096 + }, + { + "x": 965, + "y": 1099 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.20", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 964, + "y": 1111 + }, + { + "x": 1069, + "y": 1106 + }, + { + "x": 1070, + "y": 1140 + }, + { + "x": 966, + "y": 1145 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "0.70", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 978, + "y": 1154 + }, + { + "x": 1062, + "y": 1150 + }, + { + "x": 1064, + "y": 1190 + }, + { + "x": 980, + "y": 1194 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£0.80", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 968, + "y": 1201 + }, + { + "x": 1071, + "y": 1196 + }, + { + "x": 1073, + "y": 1230 + }, + { + "x": 970, + "y": 1235 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 968, + "y": 1245 + }, + { + "x": 1073, + "y": 1240 + }, + { + "x": 1075, + "y": 1276 + }, + { + "x": 970, + "y": 1281 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£0.50", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 699, + "y": 846 + }, + { + "x": 802, + "y": 844 + }, + { + "x": 803, + "y": 878 + }, + { + "x": 700, + "y": 880 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CKN/MUSH", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 284, + "y": 899 + }, + { + "x": 454, + "y": 896 + }, + { + "x": 455, + "y": 929 + }, + { + "x": 285, + "y": 932 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "SLICE", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 479, + "y": 894 + }, + { + "x": 584, + "y": 892 + }, + { + "x": 585, + "y": 926 + }, + { + "x": 480, + "y": 928 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CKN", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 286, + "y": 945 + }, + { + "x": 346, + "y": 944 + }, + { + "x": 347, + "y": 977 + }, + { + "x": 287, + "y": 978 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "FINGERS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 371, + "y": 944 + }, + { + "x": 520, + "y": 941 + }, + { + "x": 521, + "y": 975 + }, + { + "x": 372, + "y": 978 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TARTS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 284, + "y": 988 + }, + { + "x": 391, + "y": 988 + }, + { + "x": 391, + "y": 1022 + }, + { + "x": 284, + "y": 1022 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CKN", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 287, + "y": 1036 + }, + { + "x": 349, + "y": 1035 + }, + { + "x": 350, + "y": 1068 + }, + { + "x": 288, + "y": 1069 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "FINGERS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 373, + "y": 1034 + }, + { + "x": 522, + "y": 1031 + }, + { + "x": 523, + "y": 1063 + }, + { + "x": 374, + "y": 1067 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TARTS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 291, + "y": 1079 + }, + { + "x": 392, + "y": 1076 + }, + { + "x": 393, + "y": 1110 + }, + { + "x": 292, + "y": 1113 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "SCONES", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 289, + "y": 1123 + }, + { + "x": 416, + "y": 1120 + }, + { + "x": 417, + "y": 1154 + }, + { + "x": 290, + "y": 1157 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "BS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 289, + "y": 1170 + }, + { + "x": 329, + "y": 1169 + }, + { + "x": 330, + "y": 1202 + }, + { + "x": 290, + "y": 1203 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "4", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 354, + "y": 1170 + }, + { + "x": 371, + "y": 1170 + }, + { + "x": 372, + "y": 1201 + }, + { + "x": 355, + "y": 1201 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "BURG", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 397, + "y": 1168 + }, + { + "x": 486, + "y": 1166 + }, + { + "x": 487, + "y": 1200 + }, + { + "x": 398, + "y": 1202 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "BUNS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 507, + "y": 1165 + }, + { + "x": 591, + "y": 1163 + }, + { + "x": 592, + "y": 1197 + }, + { + "x": 508, + "y": 1199 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "KM", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 289, + "y": 1211 + }, + { + "x": 330, + "y": 1210 + }, + { + "x": 331, + "y": 1262 + }, + { + "x": 291, + "y": 1263 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "SOFT", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 351, + "y": 1209 + }, + { + "x": 428, + "y": 1207 + }, + { + "x": 429, + "y": 1259 + }, + { + "x": 353, + "y": 1261 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "THICK", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 459, + "y": 1206 + }, + { + "x": 565, + "y": 1203 + }, + { + "x": 566, + "y": 1255 + }, + { + "x": 461, + "y": 1258 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "BIN", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 291, + "y": 1259 + }, + { + "x": 353, + "y": 1258 + }, + { + "x": 353, + "y": 1294 + }, + { + "x": 291, + "y": 1295 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "LINERS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 376, + "y": 1255 + }, + { + "x": 505, + "y": 1253 + }, + { + "x": 505, + "y": 1289 + }, + { + "x": 376, + "y": 1291 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "x", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 618, + "y": 1261 + }, + { + "x": 634, + "y": 1261 + }, + { + "x": 634, + "y": 1278 + }, + { + "x": 618, + "y": 1278 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "SWEETS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 294, + "y": 1305 + }, + { + "x": 421, + "y": 1302 + }, + { + "x": 422, + "y": 1336 + }, + { + "x": 295, + "y": 1339 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "0.80", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 978, + "y": 1333 + }, + { + "x": 1065, + "y": 1333 + }, + { + "x": 1065, + "y": 1370 + }, + { + "x": 978, + "y": 1370 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£0.05", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 969, + "y": 1380 + }, + { + "x": 1072, + "y": 1376 + }, + { + "x": 1073, + "y": 1408 + }, + { + "x": 970, + "y": 1413 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 968, + "y": 1423 + }, + { + "x": 1073, + "y": 1414 + }, + { + "x": 1076, + "y": 1450 + }, + { + "x": 971, + "y": 1459 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£1.29", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 971, + "y": 1466 + }, + { + "x": 1074, + "y": 1465 + }, + { + "x": 1074, + "y": 1498 + }, + { + "x": 971, + "y": 1499 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£0.40", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 707, + "y": 1341 + }, + { + "x": 815, + "y": 1332 + }, + { + "x": 818, + "y": 1371 + }, + { + "x": 710, + "y": 1381 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "GOV", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 296, + "y": 1396 + }, + { + "x": 354, + "y": 1394 + }, + { + "x": 355, + "y": 1425 + }, + { + "x": 297, + "y": 1427 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "BAG", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 382, + "y": 1394 + }, + { + "x": 444, + "y": 1392 + }, + { + "x": 445, + "y": 1423 + }, + { + "x": 383, + "y": 1425 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CHARGE+x", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 469, + "y": 1391 + }, + { + "x": 637, + "y": 1387 + }, + { + "x": 638, + "y": 1420 + }, + { + "x": 470, + "y": 1424 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TIMEOUT", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 296, + "y": 1437 + }, + { + "x": 442, + "y": 1435 + }, + { + "x": 443, + "y": 1469 + }, + { + "x": 297, + "y": 1471 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "BISCUITS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 296, + "y": 1485 + }, + { + "x": 469, + "y": 1477 + }, + { + "x": 470, + "y": 1513 + }, + { + "x": 298, + "y": 1521 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TOTAL", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 301, + "y": 1574 + }, + { + "x": 402, + "y": 1571 + }, + { + "x": 403, + "y": 1607 + }, + { + "x": 302, + "y": 1610 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CASH", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 303, + "y": 1619 + }, + { + "x": 385, + "y": 1619 + }, + { + "x": 385, + "y": 1653 + }, + { + "x": 303, + "y": 1653 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CHANGE", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 303, + "y": 1665 + }, + { + "x": 427, + "y": 1662 + }, + { + "x": 428, + "y": 1695 + }, + { + "x": 304, + "y": 1698 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "DUE", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 452, + "y": 1661 + }, + { + "x": 512, + "y": 1660 + }, + { + "x": 513, + "y": 1693 + }, + { + "x": 453, + "y": 1694 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£27.32", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 952, + "y": 1554 + }, + { + "x": 1079, + "y": 1551 + }, + { + "x": 1080, + "y": 1587 + }, + { + "x": 953, + "y": 1590 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "830.00", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 952, + "y": 1602 + }, + { + "x": 1079, + "y": 1596 + }, + { + "x": 1080, + "y": 1630 + }, + { + "x": 954, + "y": 1636 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£2.68", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 973, + "y": 1646 + }, + { + "x": 1078, + "y": 1641 + }, + { + "x": 1080, + "y": 1675 + }, + { + "x": 975, + "y": 1680 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CLUBCARD", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 526, + "y": 1751 + }, + { + "x": 696, + "y": 1746 + }, + { + "x": 697, + "y": 1780 + }, + { + "x": 527, + "y": 1785 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "STATEMENT", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 719, + "y": 1744 + }, + { + "x": 909, + "y": 1738 + }, + { + "x": 910, + "y": 1772 + }, + { + "x": 720, + "y": 1778 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "CLUBCARD", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 262, + "y": 1800 + }, + { + "x": 432, + "y": 1795 + }, + { + "x": 433, + "y": 1828 + }, + { + "x": 263, + "y": 1833 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "NUMBER", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 455, + "y": 1797 + }, + { + "x": 582, + "y": 1793 + }, + { + "x": 583, + "y": 1826 + }, + { + "x": 456, + "y": 1830 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "xxxxxxxxxxxxxx0582", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 608, + "y": 1792 + }, + { + "x": 997, + "y": 1780 + }, + { + "x": 998, + "y": 1813 + }, + { + "x": 609, + "y": 1825 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "QUALIFVING", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 263, + "y": 1845 + }, + { + "x": 474, + "y": 1840 + }, + { + "x": 475, + "y": 1874 + }, + { + "x": 264, + "y": 1879 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "SPEND", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 500, + "y": 1838 + }, + { + "x": 606, + "y": 1835 + }, + { + "x": 607, + "y": 1869 + }, + { + "x": 501, + "y": 1872 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "POINTS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 262, + "y": 1891 + }, + { + "x": 389, + "y": 1889 + }, + { + "x": 390, + "y": 1922 + }, + { + "x": 263, + "y": 1924 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "THIS", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 412, + "y": 1888 + }, + { + "x": 498, + "y": 1886 + }, + { + "x": 499, + "y": 1919 + }, + { + "x": 413, + "y": 1921 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "VISIT", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 522, + "y": 1883 + }, + { + "x": 625, + "y": 1881 + }, + { + "x": 626, + "y": 1915 + }, + { + "x": 523, + "y": 1917 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TOTAL", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 265, + "y": 1936 + }, + { + "x": 366, + "y": 1934 + }, + { + "x": 367, + "y": 1968 + }, + { + "x": 266, + "y": 1970 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "UP", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 394, + "y": 1932 + }, + { + "x": 434, + "y": 1931 + }, + { + "x": 435, + "y": 1965 + }, + { + "x": 395, + "y": 1966 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TO", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 459, + "y": 1932 + }, + { + "x": 502, + "y": 1931 + }, + { + "x": 503, + "y": 1965 + }, + { + "x": 460, + "y": 1966 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "07/11/16", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 524, + "y": 1929 + }, + { + "x": 696, + "y": 1926 + }, + { + "x": 697, + "y": 1962 + }, + { + "x": 525, + "y": 1965 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "£27.27", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 957, + "y": 1826 + }, + { + "x": 1081, + "y": 1821 + }, + { + "x": 1082, + "y": 1857 + }, + { + "x": 958, + "y": 1862 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "27", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 1046, + "y": 1869 + }, + { + "x": 1085, + "y": 1869 + }, + { + "x": 1085, + "y": 1906 + }, + { + "x": 1046, + "y": 1906 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "TESCO", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 639, + "y": 2092 + }, + { + "x": 774, + "y": 2092 + }, + { + "x": 774, + "y": 2121 + }, + { + "x": 639, + "y": 2121 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Bran", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 632, + "y": 2162 + }, + { + "x": 756, + "y": 2167 + }, + { + "x": 754, + "y": 2213 + }, + { + "x": 630, + "y": 2208 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Guarantee", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 568, + "y": 2220 + }, + { + "x": 851, + "y": 2208 + }, + { + "x": 853, + "y": 2258 + }, + { + "x": 570, + "y": 2270 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Today", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 447, + "y": 2474 + }, + { + "x": 655, + "y": 2468 + }, + { + "x": 656, + "y": 2506 + }, + { + "x": 448, + "y": 2512 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "we", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 705, + "y": 2475 + }, + { + "x": 784, + "y": 2473 + }, + { + "x": 785, + "y": 2497 + }, + { + "x": 706, + "y": 2499 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "were", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 836, + "y": 2472 + }, + { + "x": 1004, + "y": 2467 + }, + { + "x": 1005, + "y": 2493 + }, + { + "x": 837, + "y": 2498 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "E", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 603, + "y": 2513 + }, + { + "x": 637, + "y": 2512 + }, + { + "x": 638, + "y": 2546 + }, + { + "x": 604, + "y": 2547 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "O.35", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 685, + "y": 2511 + }, + { + "x": 853, + "y": 2505 + }, + { + "x": 854, + "y": 2539 + }, + { + "x": 686, + "y": 2545 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "cheaper", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 582, + "y": 2561 + }, + { + "x": 873, + "y": 2554 + }, + { + "x": 874, + "y": 2587 + }, + { + "x": 583, + "y": 2594 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "on", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 380, + "y": 2667 + }, + { + "x": 414, + "y": 2666 + }, + { + "x": 415, + "y": 2688 + }, + { + "x": 381, + "y": 2689 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "your", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 440, + "y": 2664 + }, + { + "x": 521, + "y": 2662 + }, + { + "x": 522, + "y": 2691 + }, + { + "x": 441, + "y": 2693 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "branded", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 548, + "y": 2652 + }, + { + "x": 696, + "y": 2648 + }, + { + "x": 697, + "y": 2679 + }, + { + "x": 549, + "y": 2683 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "basket", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 721, + "y": 2648 + }, + { + "x": 845, + "y": 2645 + }, + { + "x": 846, + "y": 2676 + }, + { + "x": 722, + "y": 2679 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "compared", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 872, + "y": 2645 + }, + { + "x": 1040, + "y": 2641 + }, + { + "x": 1041, + "y": 2675 + }, + { + "x": 873, + "y": 2679 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "to", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 1067, + "y": 2643 + }, + { + "x": 1103, + "y": 2642 + }, + { + "x": 1104, + "y": 2670 + }, + { + "x": 1068, + "y": 2671 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Asda,", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 404, + "y": 2703 + }, + { + "x": 497, + "y": 2700 + }, + { + "x": 498, + "y": 2736 + }, + { + "x": 405, + "y": 2739 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Morrisons", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 529, + "y": 2696 + }, + { + "x": 719, + "y": 2690 + }, + { + "x": 720, + "y": 2724 + }, + { + "x": 530, + "y": 2730 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "and", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 745, + "y": 2693 + }, + { + "x": 807, + "y": 2691 + }, + { + "x": 808, + "y": 2722 + }, + { + "x": 746, + "y": 2724 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Sainsbury's", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 832, + "y": 2688 + }, + { + "x": 1064, + "y": 2681 + }, + { + "x": 1065, + "y": 2719 + }, + { + "x": 833, + "y": 2726 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Our", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 351, + "y": 2792 + }, + { + "x": 409, + "y": 2790 + }, + { + "x": 410, + "y": 2821 + }, + { + "x": 352, + "y": 2823 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Brand", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 435, + "y": 2789 + }, + { + "x": 540, + "y": 2786 + }, + { + "x": 541, + "y": 2819 + }, + { + "x": 436, + "y": 2822 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Guarantee", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 563, + "y": 2785 + }, + { + "x": 753, + "y": 2780 + }, + { + "x": 754, + "y": 2811 + }, + { + "x": 564, + "y": 2816 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "instantly", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 783, + "y": 2779 + }, + { + "x": 970, + "y": 2774 + }, + { + "x": 971, + "y": 2810 + }, + { + "x": 784, + "y": 2815 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "matches", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 992, + "y": 2773 + }, + { + "x": 1138, + "y": 2769 + }, + { + "x": 1139, + "y": 2800 + }, + { + "x": 993, + "y": 2804 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "your", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 354, + "y": 2845 + }, + { + "x": 435, + "y": 2843 + }, + { + "x": 436, + "y": 2871 + }, + { + "x": 355, + "y": 2873 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "branded", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 457, + "y": 2832 + }, + { + "x": 606, + "y": 2828 + }, + { + "x": 607, + "y": 2864 + }, + { + "x": 458, + "y": 2868 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "basket", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 627, + "y": 2828 + }, + { + "x": 754, + "y": 2825 + }, + { + "x": 755, + "y": 2858 + }, + { + "x": 628, + "y": 2861 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "so", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 779, + "y": 2832 + }, + { + "x": 822, + "y": 2831 + }, + { + "x": 823, + "y": 2857 + }, + { + "x": 780, + "y": 2858 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "you", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 846, + "y": 2832 + }, + { + "x": 906, + "y": 2831 + }, + { + "x": 907, + "y": 2859 + }, + { + "x": 847, + "y": 2860 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "can", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 930, + "y": 2830 + }, + { + "x": 992, + "y": 2828 + }, + { + "x": 993, + "y": 2852 + }, + { + "x": 931, + "y": 2854 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "always", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 1016, + "y": 2816 + }, + { + "x": 1145, + "y": 2813 + }, + { + "x": 1146, + "y": 2849 + }, + { + "x": 1017, + "y": 2852 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "checkout", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 481, + "y": 2876 + }, + { + "x": 647, + "y": 2871 + }, + { + "x": 648, + "y": 2904 + }, + { + "x": 482, + "y": 2909 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "with", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 673, + "y": 2871 + }, + { + "x": 759, + "y": 2869 + }, + { + "x": 760, + "y": 2902 + }, + { + "x": 674, + "y": 2904 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "confi", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 781, + "y": 2868 + }, + { + "x": 881, + "y": 2865 + }, + { + "x": 882, + "y": 2899 + }, + { + "x": 782, + "y": 2902 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "dence", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 890, + "y": 2866 + }, + { + "x": 993, + "y": 2863 + }, + { + "x": 994, + "y": 2896 + }, + { + "x": 891, + "y": 2899 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Branded", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 323, + "y": 3060 + }, + { + "x": 472, + "y": 3056 + }, + { + "x": 473, + "y": 3090 + }, + { + "x": 324, + "y": 3094 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "grocery", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 495, + "y": 3065 + }, + { + "x": 644, + "y": 3061 + }, + { + "x": 645, + "y": 3092 + }, + { + "x": 496, + "y": 3096 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "basket", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 664, + "y": 3051 + }, + { + "x": 793, + "y": 3048 + }, + { + "x": 794, + "y": 3082 + }, + { + "x": 665, + "y": 3085 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "matched.", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 817, + "y": 3049 + }, + { + "x": 982, + "y": 3045 + }, + { + "x": 983, + "y": 3079 + }, + { + "x": 818, + "y": 3083 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "For", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 1009, + "y": 3042 + }, + { + "x": 1074, + "y": 3040 + }, + { + "x": 1075, + "y": 3073 + }, + { + "x": 1010, + "y": 3075 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "full", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 1098, + "y": 3041 + }, + { + "x": 1175, + "y": 3039 + }, + { + "x": 1176, + "y": 3072 + }, + { + "x": 1099, + "y": 3074 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "terms", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 366, + "y": 3111 + }, + { + "x": 471, + "y": 3108 + }, + { + "x": 472, + "y": 3134 + }, + { + "x": 367, + "y": 3137 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "visit", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 496, + "y": 3101 + }, + { + "x": 597, + "y": 3099 + }, + { + "x": 598, + "y": 3133 + }, + { + "x": 497, + "y": 3135 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "tesco.com/brandguar", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 623, + "y": 3099 + }, + { + "x": 1029, + "y": 3089 + }, + { + "x": 1030, + "y": 3125 + }, + { + "x": 624, + "y": 3135 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "antee", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 1033, + "y": 3090 + }, + { + "x": 1139, + "y": 3087 + }, + { + "x": 1140, + "y": 3116 + }, + { + "x": 1034, + "y": 3119 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "by", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 447, + "y": 3318 + }, + { + "x": 487, + "y": 3317 + }, + { + "x": 488, + "y": 3353 + }, + { + "x": 448, + "y": 3354 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "telling", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 510, + "y": 3315 + }, + { + "x": 658, + "y": 3311 + }, + { + "x": 659, + "y": 3351 + }, + { + "x": 511, + "y": 3355 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "us", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 681, + "y": 3320 + }, + { + "x": 722, + "y": 3319 + }, + { + "x": 723, + "y": 3343 + }, + { + "x": 682, + "y": 3344 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "about", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 748, + "y": 3313 + }, + { + "x": 851, + "y": 3310 + }, + { + "x": 852, + "y": 3341 + }, + { + "x": 749, + "y": 3344 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "your", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 877, + "y": 3315 + }, + { + "x": 959, + "y": 3313 + }, + { + "x": 960, + "y": 3342 + }, + { + "x": 878, + "y": 3344 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "trip", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 986, + "y": 3305 + }, + { + "x": 1068, + "y": 3303 + }, + { + "x": 1069, + "y": 3339 + }, + { + "x": 987, + "y": 3341 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "at", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 532, + "y": 3365 + }, + { + "x": 585, + "y": 3364 + }, + { + "x": 586, + "y": 3395 + }, + { + "x": 533, + "y": 3396 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "www.tescoviews.com", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 596, + "y": 3361 + }, + { + "x": 983, + "y": 3350 + }, + { + "x": 984, + "y": 3383 + }, + { + "x": 597, + "y": 3394 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "and", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 428, + "y": 3409 + }, + { + "x": 488, + "y": 3407 + }, + { + "x": 489, + "y": 3440 + }, + { + "x": 429, + "y": 3442 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "collect", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 510, + "y": 3406 + }, + { + "x": 658, + "y": 3402 + }, + { + "x": 659, + "y": 3436 + }, + { + "x": 511, + "y": 3440 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "25", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 685, + "y": 3402 + }, + { + "x": 726, + "y": 3401 + }, + { + "x": 727, + "y": 3434 + }, + { + "x": 686, + "y": 3435 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Clubcard", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 750, + "y": 3401 + }, + { + "x": 920, + "y": 3397 + }, + { + "x": 921, + "y": 3431 + }, + { + "x": 751, + "y": 3435 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "points.", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 944, + "y": 3395 + }, + { + "x": 1086, + "y": 3391 + }, + { + "x": 1087, + "y": 3429 + }, + { + "x": 945, + "y": 3433 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "Terms", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 471, + "y": 3452 + }, + { + "x": 574, + "y": 3450 + }, + { + "x": 575, + "y": 3483 + }, + { + "x": 472, + "y": 3485 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "and", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 599, + "y": 3454 + }, + { + "x": 661, + "y": 3453 + }, + { + "x": 662, + "y": 3484 + }, + { + "x": 600, + "y": 3485 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "conditions", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 687, + "y": 3449 + }, + { + "x": 900, + "y": 3445 + }, + { + "x": 901, + "y": 3478 + }, + { + "x": 688, + "y": 3482 + } + ] + }, + "locations": [], + "properties": [] + }, + { + "mid": "", + "locale": "", + "description": "apply", + "score": 0, + "confidence": 0, + "topicality": 0, + "boundingPoly": { + "vertices": [ + { + "x": 926, + "y": 3445 + }, + { + "x": 1029, + "y": 3443 + }, + { + "x": 1030, + "y": 3477 + }, + { + "x": 927, + "y": 3479 + } + ] + }, + "locations": [], + "properties": [] + } + ], + "fullTextAnnotation": { + "pages": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "width": 1564, + "height": 3509, + "blocks": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 260 + }, + { + "x": 808, + "y": 260 + }, + { + "x": 808, + "y": 299 + }, + { + "x": 524, + "y": 299 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 260 + }, + { + "x": 808, + "y": 260 + }, + { + "x": 808, + "y": 299 + }, + { + "x": 524, + "y": 299 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 267 + }, + { + "x": 807, + "y": 260 + }, + { + "x": 808, + "y": 291 + }, + { + "x": 525, + "y": 298 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 269 + }, + { + "x": 579, + "y": 268 + }, + { + "x": 580, + "y": 297 + }, + { + "x": 525, + "y": 298 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 587, + "y": 267 + }, + { + "x": 630, + "y": 266 + }, + { + "x": 631, + "y": 295 + }, + { + "x": 588, + "y": 296 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 637, + "y": 265 + }, + { + "x": 683, + "y": 264 + }, + { + "x": 684, + "y": 293 + }, + { + "x": 638, + "y": 294 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 690, + "y": 263 + }, + { + "x": 740, + "y": 262 + }, + { + "x": 741, + "y": 293 + }, + { + "x": 691, + "y": 294 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 745, + "y": 262 + }, + { + "x": 807, + "y": 260 + }, + { + "x": 808, + "y": 291 + }, + { + "x": 746, + "y": 293 + } + ] + }, + "text": "O" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 546, + "y": 318 + }, + { + "x": 777, + "y": 318 + }, + { + "x": 777, + "y": 398 + }, + { + "x": 546, + "y": 398 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 546, + "y": 318 + }, + { + "x": 777, + "y": 318 + }, + { + "x": 777, + "y": 398 + }, + { + "x": 546, + "y": 398 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 546, + "y": 328 + }, + { + "x": 772, + "y": 318 + }, + { + "x": 775, + "y": 387 + }, + { + "x": 549, + "y": 397 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 546, + "y": 328 + }, + { + "x": 577, + "y": 327 + }, + { + "x": 580, + "y": 396 + }, + { + "x": 549, + "y": 397 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 580, + "y": 327 + }, + { + "x": 625, + "y": 325 + }, + { + "x": 628, + "y": 394 + }, + { + "x": 583, + "y": 396 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 628, + "y": 325 + }, + { + "x": 650, + "y": 324 + }, + { + "x": 653, + "y": 393 + }, + { + "x": 631, + "y": 394 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 654, + "y": 323 + }, + { + "x": 687, + "y": 322 + }, + { + "x": 690, + "y": 390 + }, + { + "x": 657, + "y": 392 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 690, + "y": 322 + }, + { + "x": 724, + "y": 321 + }, + { + "x": 727, + "y": 389 + }, + { + "x": 693, + "y": 391 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 728, + "y": 320 + }, + { + "x": 773, + "y": 318 + }, + { + "x": 776, + "y": 387 + }, + { + "x": 731, + "y": 389 + } + ] + }, + "text": "a" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "az", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 430, + "y": 392 + }, + { + "x": 950, + "y": 392 + }, + { + "x": 950, + "y": 443 + }, + { + "x": 430, + "y": 443 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "az", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 430, + "y": 392 + }, + { + "x": 950, + "y": 392 + }, + { + "x": 950, + "y": 443 + }, + { + "x": 430, + "y": 443 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "az", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 430, + "y": 406 + }, + { + "x": 668, + "y": 399 + }, + { + "x": 669, + "y": 435 + }, + { + "x": 431, + "y": 442 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 430, + "y": 406 + }, + { + "x": 449, + "y": 405 + }, + { + "x": 450, + "y": 438 + }, + { + "x": 431, + "y": 439 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 406 + }, + { + "x": 471, + "y": 405 + }, + { + "x": 472, + "y": 438 + }, + { + "x": 453, + "y": 439 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 472, + "y": 404 + }, + { + "x": 491, + "y": 403 + }, + { + "x": 492, + "y": 434 + }, + { + "x": 473, + "y": 435 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 495, + "y": 404 + }, + { + "x": 514, + "y": 403 + }, + { + "x": 515, + "y": 434 + }, + { + "x": 496, + "y": 435 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 515, + "y": 404 + }, + { + "x": 534, + "y": 403 + }, + { + "x": 535, + "y": 436 + }, + { + "x": 516, + "y": 437 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 536, + "y": 402 + }, + { + "x": 557, + "y": 401 + }, + { + "x": 558, + "y": 434 + }, + { + "x": 537, + "y": 435 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 558, + "y": 404 + }, + { + "x": 579, + "y": 403 + }, + { + "x": 580, + "y": 434 + }, + { + "x": 559, + "y": 435 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 580, + "y": 402 + }, + { + "x": 599, + "y": 401 + }, + { + "x": 600, + "y": 434 + }, + { + "x": 581, + "y": 435 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 603, + "y": 402 + }, + { + "x": 622, + "y": 401 + }, + { + "x": 623, + "y": 434 + }, + { + "x": 604, + "y": 435 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 623, + "y": 402 + }, + { + "x": 642, + "y": 401 + }, + { + "x": 643, + "y": 435 + }, + { + "x": 624, + "y": 436 + } + ] + }, + "text": "L" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 645, + "y": 400 + }, + { + "x": 667, + "y": 399 + }, + { + "x": 668, + "y": 432 + }, + { + "x": 646, + "y": 433 + } + ] + }, + "text": "D" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 690, + "y": 399 + }, + { + "x": 774, + "y": 397 + }, + { + "x": 775, + "y": 431 + }, + { + "x": 691, + "y": 433 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 690, + "y": 400 + }, + { + "x": 709, + "y": 399 + }, + { + "x": 710, + "y": 432 + }, + { + "x": 691, + "y": 433 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 712, + "y": 399 + }, + { + "x": 729, + "y": 399 + }, + { + "x": 730, + "y": 432 + }, + { + "x": 713, + "y": 432 + } + ] + }, + "text": "3" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 733, + "y": 397 + }, + { + "x": 752, + "y": 396 + }, + { + "x": 753, + "y": 429 + }, + { + "x": 734, + "y": 430 + } + ] + }, + "text": "4" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 755, + "y": 397 + }, + { + "x": 774, + "y": 396 + }, + { + "x": 775, + "y": 429 + }, + { + "x": 756, + "y": 430 + } + ] + }, + "text": "5" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 796, + "y": 395 + }, + { + "x": 947, + "y": 391 + }, + { + "x": 948, + "y": 425 + }, + { + "x": 797, + "y": 429 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 796, + "y": 397 + }, + { + "x": 817, + "y": 396 + }, + { + "x": 818, + "y": 429 + }, + { + "x": 797, + "y": 430 + } + ] + }, + "text": "6" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 818, + "y": 395 + }, + { + "x": 840, + "y": 394 + }, + { + "x": 841, + "y": 428 + }, + { + "x": 819, + "y": 429 + } + ] + }, + "text": "7" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 842, + "y": 394 + }, + { + "x": 861, + "y": 393 + }, + { + "x": 862, + "y": 427 + }, + { + "x": 843, + "y": 428 + } + ] + }, + "text": "7" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 863, + "y": 395 + }, + { + "x": 882, + "y": 394 + }, + { + "x": 883, + "y": 427 + }, + { + "x": 864, + "y": 428 + } + ] + }, + "text": "9" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 885, + "y": 394 + }, + { + "x": 902, + "y": 394 + }, + { + "x": 903, + "y": 427 + }, + { + "x": 886, + "y": 427 + } + ] + }, + "text": "8" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 906, + "y": 392 + }, + { + "x": 925, + "y": 391 + }, + { + "x": 926, + "y": 425 + }, + { + "x": 907, + "y": 426 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 928, + "y": 392 + }, + { + "x": 947, + "y": 391 + }, + { + "x": 948, + "y": 425 + }, + { + "x": 929, + "y": 426 + } + ] + }, + "text": "8" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 279, + "y": 491 + }, + { + "x": 585, + "y": 491 + }, + { + "x": 585, + "y": 843 + }, + { + "x": 279, + "y": 843 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 279, + "y": 491 + }, + { + "x": 585, + "y": 491 + }, + { + "x": 585, + "y": 843 + }, + { + "x": 279, + "y": 843 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 496 + }, + { + "x": 405, + "y": 493 + }, + { + "x": 406, + "y": 526 + }, + { + "x": 281, + "y": 529 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 498 + }, + { + "x": 294, + "y": 498 + }, + { + "x": 295, + "y": 529 + }, + { + "x": 281, + "y": 529 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 496 + }, + { + "x": 317, + "y": 496 + }, + { + "x": 318, + "y": 529 + }, + { + "x": 302, + "y": 529 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 320, + "y": 495 + }, + { + "x": 337, + "y": 495 + }, + { + "x": 338, + "y": 528 + }, + { + "x": 321, + "y": 528 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 344, + "y": 495 + }, + { + "x": 360, + "y": 495 + }, + { + "x": 361, + "y": 526 + }, + { + "x": 345, + "y": 526 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 495 + }, + { + "x": 383, + "y": 495 + }, + { + "x": 384, + "y": 528 + }, + { + "x": 367, + "y": 528 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 496 + }, + { + "x": 406, + "y": 496 + }, + { + "x": 407, + "y": 525 + }, + { + "x": 388, + "y": 525 + } + ] + }, + "text": "N" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 431, + "y": 493 + }, + { + "x": 512, + "y": 491 + }, + { + "x": 513, + "y": 524 + }, + { + "x": 432, + "y": 526 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 431, + "y": 493 + }, + { + "x": 448, + "y": 493 + }, + { + "x": 449, + "y": 524 + }, + { + "x": 432, + "y": 524 + } + ] + }, + "text": "F" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 493 + }, + { + "x": 471, + "y": 493 + }, + { + "x": 472, + "y": 524 + }, + { + "x": 453, + "y": 524 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 472, + "y": 493 + }, + { + "x": 491, + "y": 493 + }, + { + "x": 492, + "y": 524 + }, + { + "x": 473, + "y": 524 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 493, + "y": 491 + }, + { + "x": 512, + "y": 491 + }, + { + "x": 513, + "y": 524 + }, + { + "x": 494, + "y": 524 + } + ] + }, + "text": "D" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "ms", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 279, + "y": 538 + }, + { + "x": 433, + "y": 538 + }, + { + "x": 433, + "y": 576 + }, + { + "x": 279, + "y": 576 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 279, + "y": 539 + }, + { + "x": 296, + "y": 539 + }, + { + "x": 296, + "y": 575 + }, + { + "x": 279, + "y": 575 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 299, + "y": 539 + }, + { + "x": 318, + "y": 539 + }, + { + "x": 318, + "y": 575 + }, + { + "x": 299, + "y": 575 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 322, + "y": 539 + }, + { + "x": 341, + "y": 539 + }, + { + "x": 341, + "y": 572 + }, + { + "x": 322, + "y": 572 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 344, + "y": 539 + }, + { + "x": 363, + "y": 539 + }, + { + "x": 363, + "y": 572 + }, + { + "x": 344, + "y": 572 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 538 + }, + { + "x": 385, + "y": 538 + }, + { + "x": 385, + "y": 572 + }, + { + "x": 366, + "y": 572 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 538 + }, + { + "x": 408, + "y": 538 + }, + { + "x": 408, + "y": 571 + }, + { + "x": 387, + "y": 571 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 411, + "y": 538 + }, + { + "x": 433, + "y": 538 + }, + { + "x": 433, + "y": 571 + }, + { + "x": 411, + "y": 571 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "fi", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 585 + }, + { + "x": 341, + "y": 585 + }, + { + "x": 341, + "y": 615 + }, + { + "x": 280, + "y": 615 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 585 + }, + { + "x": 298, + "y": 585 + }, + { + "x": 298, + "y": 615 + }, + { + "x": 280, + "y": 615 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 585 + }, + { + "x": 319, + "y": 585 + }, + { + "x": 319, + "y": 615 + }, + { + "x": 301, + "y": 615 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 585 + }, + { + "x": 341, + "y": 585 + }, + { + "x": 341, + "y": 615 + }, + { + "x": 323, + "y": 615 + } + ] + }, + "text": "N" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "ms", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 364, + "y": 580 + }, + { + "x": 516, + "y": 580 + }, + { + "x": 516, + "y": 615 + }, + { + "x": 364, + "y": 615 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 364, + "y": 582 + }, + { + "x": 386, + "y": 582 + }, + { + "x": 386, + "y": 616 + }, + { + "x": 364, + "y": 616 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 388, + "y": 580 + }, + { + "x": 406, + "y": 580 + }, + { + "x": 406, + "y": 615 + }, + { + "x": 388, + "y": 615 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 409, + "y": 580 + }, + { + "x": 427, + "y": 580 + }, + { + "x": 427, + "y": 615 + }, + { + "x": 409, + "y": 615 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 430, + "y": 580 + }, + { + "x": 450, + "y": 580 + }, + { + "x": 450, + "y": 614 + }, + { + "x": 430, + "y": 614 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 580 + }, + { + "x": 472, + "y": 580 + }, + { + "x": 472, + "y": 614 + }, + { + "x": 452, + "y": 614 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 472, + "y": 580 + }, + { + "x": 494, + "y": 580 + }, + { + "x": 494, + "y": 614 + }, + { + "x": 472, + "y": 614 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 496, + "y": 580 + }, + { + "x": 516, + "y": 580 + }, + { + "x": 516, + "y": 614 + }, + { + "x": 496, + "y": 614 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "la", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 630 + }, + { + "x": 405, + "y": 625 + }, + { + "x": 406, + "y": 659 + }, + { + "x": 281, + "y": 664 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 630 + }, + { + "x": 296, + "y": 629 + }, + { + "x": 297, + "y": 662 + }, + { + "x": 281, + "y": 663 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 630 + }, + { + "x": 318, + "y": 629 + }, + { + "x": 319, + "y": 663 + }, + { + "x": 302, + "y": 664 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 322, + "y": 628 + }, + { + "x": 339, + "y": 627 + }, + { + "x": 340, + "y": 661 + }, + { + "x": 323, + "y": 662 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 344, + "y": 630 + }, + { + "x": 361, + "y": 629 + }, + { + "x": 362, + "y": 662 + }, + { + "x": 345, + "y": 663 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 364, + "y": 628 + }, + { + "x": 383, + "y": 627 + }, + { + "x": 384, + "y": 660 + }, + { + "x": 365, + "y": 661 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 628 + }, + { + "x": 406, + "y": 627 + }, + { + "x": 407, + "y": 660 + }, + { + "x": 388, + "y": 661 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 675 + }, + { + "x": 357, + "y": 674 + }, + { + "x": 358, + "y": 707 + }, + { + "x": 281, + "y": 708 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 675 + }, + { + "x": 296, + "y": 675 + }, + { + "x": 297, + "y": 708 + }, + { + "x": 281, + "y": 708 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 299, + "y": 675 + }, + { + "x": 316, + "y": 675 + }, + { + "x": 317, + "y": 708 + }, + { + "x": 300, + "y": 708 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 322, + "y": 676 + }, + { + "x": 339, + "y": 676 + }, + { + "x": 339, + "y": 705 + }, + { + "x": 322, + "y": 705 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 344, + "y": 673 + }, + { + "x": 358, + "y": 673 + }, + { + "x": 359, + "y": 706 + }, + { + "x": 345, + "y": 706 + } + ] + }, + "text": "I" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "de", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 671 + }, + { + "x": 536, + "y": 669 + }, + { + "x": 537, + "y": 703 + }, + { + "x": 388, + "y": 705 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 673 + }, + { + "x": 406, + "y": 673 + }, + { + "x": 407, + "y": 704 + }, + { + "x": 388, + "y": 704 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 409, + "y": 673 + }, + { + "x": 426, + "y": 673 + }, + { + "x": 427, + "y": 704 + }, + { + "x": 410, + "y": 704 + } + ] + }, + "text": "H" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 431, + "y": 671 + }, + { + "x": 448, + "y": 671 + }, + { + "x": 449, + "y": 705 + }, + { + "x": 432, + "y": 705 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 671 + }, + { + "x": 471, + "y": 671 + }, + { + "x": 472, + "y": 704 + }, + { + "x": 453, + "y": 704 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 474, + "y": 671 + }, + { + "x": 491, + "y": 671 + }, + { + "x": 492, + "y": 704 + }, + { + "x": 475, + "y": 704 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 495, + "y": 671 + }, + { + "x": 512, + "y": 671 + }, + { + "x": 513, + "y": 704 + }, + { + "x": 496, + "y": 704 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 517, + "y": 671 + }, + { + "x": 536, + "y": 671 + }, + { + "x": 537, + "y": 702 + }, + { + "x": 518, + "y": 702 + } + ] + }, + "text": "R" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "la", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 279, + "y": 719 + }, + { + "x": 408, + "y": 714 + }, + { + "x": 409, + "y": 748 + }, + { + "x": 280, + "y": 753 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 279, + "y": 719 + }, + { + "x": 298, + "y": 718 + }, + { + "x": 299, + "y": 751 + }, + { + "x": 280, + "y": 752 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 717 + }, + { + "x": 320, + "y": 716 + }, + { + "x": 321, + "y": 749 + }, + { + "x": 302, + "y": 750 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 717 + }, + { + "x": 339, + "y": 716 + }, + { + "x": 340, + "y": 750 + }, + { + "x": 324, + "y": 751 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 346, + "y": 717 + }, + { + "x": 363, + "y": 716 + }, + { + "x": 364, + "y": 749 + }, + { + "x": 347, + "y": 750 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 717 + }, + { + "x": 383, + "y": 716 + }, + { + "x": 384, + "y": 749 + }, + { + "x": 367, + "y": 750 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 717 + }, + { + "x": 408, + "y": 716 + }, + { + "x": 409, + "y": 749 + }, + { + "x": 388, + "y": 750 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 765 + }, + { + "x": 361, + "y": 763 + }, + { + "x": 362, + "y": 796 + }, + { + "x": 281, + "y": 798 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 280, + "y": 765 + }, + { + "x": 296, + "y": 765 + }, + { + "x": 297, + "y": 796 + }, + { + "x": 281, + "y": 796 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 299, + "y": 765 + }, + { + "x": 316, + "y": 765 + }, + { + "x": 317, + "y": 796 + }, + { + "x": 300, + "y": 796 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 765 + }, + { + "x": 340, + "y": 765 + }, + { + "x": 341, + "y": 794 + }, + { + "x": 324, + "y": 794 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 346, + "y": 764 + }, + { + "x": 362, + "y": 764 + }, + { + "x": 363, + "y": 797 + }, + { + "x": 347, + "y": 797 + } + ] + }, + "text": "I" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "de", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 388, + "y": 764 + }, + { + "x": 537, + "y": 761 + }, + { + "x": 538, + "y": 794 + }, + { + "x": 389, + "y": 797 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 388, + "y": 764 + }, + { + "x": 407, + "y": 764 + }, + { + "x": 408, + "y": 795 + }, + { + "x": 389, + "y": 795 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 411, + "y": 762 + }, + { + "x": 430, + "y": 762 + }, + { + "x": 431, + "y": 793 + }, + { + "x": 412, + "y": 793 + } + ] + }, + "text": "H" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 433, + "y": 762 + }, + { + "x": 450, + "y": 762 + }, + { + "x": 451, + "y": 793 + }, + { + "x": 434, + "y": 793 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 455, + "y": 762 + }, + { + "x": 472, + "y": 762 + }, + { + "x": 473, + "y": 795 + }, + { + "x": 456, + "y": 795 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 476, + "y": 760 + }, + { + "x": 495, + "y": 760 + }, + { + "x": 496, + "y": 791 + }, + { + "x": 477, + "y": 791 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 498, + "y": 760 + }, + { + "x": 515, + "y": 760 + }, + { + "x": 516, + "y": 791 + }, + { + "x": 499, + "y": 791 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 520, + "y": 760 + }, + { + "x": 537, + "y": 760 + }, + { + "x": 538, + "y": 791 + }, + { + "x": 521, + "y": 791 + } + ] + }, + "text": "R" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 808 + }, + { + "x": 298, + "y": 808 + }, + { + "x": 299, + "y": 842 + }, + { + "x": 285, + "y": 842 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 808 + }, + { + "x": 298, + "y": 808 + }, + { + "x": 299, + "y": 842 + }, + { + "x": 285, + "y": 842 + } + ] + }, + "text": "T" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 808 + }, + { + "x": 453, + "y": 806 + }, + { + "x": 454, + "y": 839 + }, + { + "x": 324, + "y": 841 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 808 + }, + { + "x": 342, + "y": 808 + }, + { + "x": 343, + "y": 841 + }, + { + "x": 324, + "y": 841 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 346, + "y": 807 + }, + { + "x": 367, + "y": 807 + }, + { + "x": 368, + "y": 840 + }, + { + "x": 347, + "y": 840 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 368, + "y": 807 + }, + { + "x": 387, + "y": 807 + }, + { + "x": 388, + "y": 840 + }, + { + "x": 369, + "y": 840 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 390, + "y": 807 + }, + { + "x": 409, + "y": 807 + }, + { + "x": 410, + "y": 840 + }, + { + "x": 391, + "y": 840 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 412, + "y": 807 + }, + { + "x": 429, + "y": 807 + }, + { + "x": 430, + "y": 840 + }, + { + "x": 413, + "y": 840 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 433, + "y": 805 + }, + { + "x": 454, + "y": 805 + }, + { + "x": 455, + "y": 838 + }, + { + "x": 434, + "y": 838 + } + ] + }, + "text": "O" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "tr", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 476, + "y": 805 + }, + { + "x": 584, + "y": 803 + }, + { + "x": 585, + "y": 836 + }, + { + "x": 477, + "y": 838 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 476, + "y": 805 + }, + { + "x": 495, + "y": 805 + }, + { + "x": 496, + "y": 838 + }, + { + "x": 477, + "y": 838 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 498, + "y": 805 + }, + { + "x": 519, + "y": 805 + }, + { + "x": 520, + "y": 838 + }, + { + "x": 499, + "y": 838 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 520, + "y": 805 + }, + { + "x": 539, + "y": 805 + }, + { + "x": 540, + "y": 838 + }, + { + "x": 521, + "y": 838 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 543, + "y": 803 + }, + { + "x": 560, + "y": 803 + }, + { + "x": 561, + "y": 836 + }, + { + "x": 544, + "y": 836 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 563, + "y": 803 + }, + { + "x": 584, + "y": 803 + }, + { + "x": 585, + "y": 836 + }, + { + "x": 564, + "y": 836 + } + ] + }, + "text": "S" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 950, + "y": 478 + }, + { + "x": 1064, + "y": 478 + }, + { + "x": 1064, + "y": 784 + }, + { + "x": 950, + "y": 784 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 950, + "y": 478 + }, + { + "x": 1064, + "y": 478 + }, + { + "x": 1064, + "y": 784 + }, + { + "x": 950, + "y": 784 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 950, + "y": 478 + }, + { + "x": 1057, + "y": 478 + }, + { + "x": 1057, + "y": 515 + }, + { + "x": 950, + "y": 515 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 950, + "y": 481 + }, + { + "x": 968, + "y": 481 + }, + { + "x": 968, + "y": 515 + }, + { + "x": 950, + "y": 515 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 971, + "y": 479 + }, + { + "x": 991, + "y": 479 + }, + { + "x": 991, + "y": 513 + }, + { + "x": 971, + "y": 513 + } + ] + }, + "text": "3" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1000, + "y": 478 + }, + { + "x": 1017, + "y": 478 + }, + { + "x": 1017, + "y": 513 + }, + { + "x": 1000, + "y": 513 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1019, + "y": 478 + }, + { + "x": 1034, + "y": 478 + }, + { + "x": 1034, + "y": 513 + }, + { + "x": 1019, + "y": 513 + } + ] + }, + "text": "5" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1036, + "y": 478 + }, + { + "x": 1058, + "y": 478 + }, + { + "x": 1058, + "y": 512 + }, + { + "x": 1036, + "y": 512 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 522 + }, + { + "x": 1057, + "y": 523 + }, + { + "x": 1057, + "y": 559 + }, + { + "x": 952, + "y": 558 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 526 + }, + { + "x": 968, + "y": 526 + }, + { + "x": 968, + "y": 559 + }, + { + "x": 952, + "y": 559 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 973, + "y": 526 + }, + { + "x": 987, + "y": 526 + }, + { + "x": 987, + "y": 559 + }, + { + "x": 973, + "y": 559 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 992, + "y": 526 + }, + { + "x": 1008, + "y": 526 + }, + { + "x": 1008, + "y": 559 + }, + { + "x": 992, + "y": 559 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1016, + "y": 522 + }, + { + "x": 1035, + "y": 522 + }, + { + "x": 1035, + "y": 556 + }, + { + "x": 1016, + "y": 556 + } + ] + }, + "text": "5" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1038, + "y": 522 + }, + { + "x": 1057, + "y": 522 + }, + { + "x": 1057, + "y": 555 + }, + { + "x": 1038, + "y": 555 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 950, + "y": 570 + }, + { + "x": 1056, + "y": 561 + }, + { + "x": 1059, + "y": 599 + }, + { + "x": 953, + "y": 608 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 950, + "y": 570 + }, + { + "x": 969, + "y": 568 + }, + { + "x": 972, + "y": 601 + }, + { + "x": 953, + "y": 603 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 974, + "y": 568 + }, + { + "x": 986, + "y": 567 + }, + { + "x": 989, + "y": 603 + }, + { + "x": 977, + "y": 604 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 990, + "y": 567 + }, + { + "x": 1004, + "y": 566 + }, + { + "x": 1007, + "y": 602 + }, + { + "x": 993, + "y": 603 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1016, + "y": 567 + }, + { + "x": 1035, + "y": 565 + }, + { + "x": 1038, + "y": 599 + }, + { + "x": 1019, + "y": 601 + } + ] + }, + "text": "5" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1036, + "y": 567 + }, + { + "x": 1057, + "y": 565 + }, + { + "x": 1060, + "y": 599 + }, + { + "x": 1039, + "y": 601 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 956, + "y": 615 + }, + { + "x": 1059, + "y": 616 + }, + { + "x": 1059, + "y": 650 + }, + { + "x": 956, + "y": 649 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 956, + "y": 616 + }, + { + "x": 972, + "y": 616 + }, + { + "x": 972, + "y": 649 + }, + { + "x": 956, + "y": 649 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 616 + }, + { + "x": 992, + "y": 616 + }, + { + "x": 992, + "y": 649 + }, + { + "x": 978, + "y": 649 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 995, + "y": 616 + }, + { + "x": 1009, + "y": 616 + }, + { + "x": 1009, + "y": 649 + }, + { + "x": 995, + "y": 649 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1019, + "y": 615 + }, + { + "x": 1036, + "y": 615 + }, + { + "x": 1036, + "y": 648 + }, + { + "x": 1019, + "y": 648 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1041, + "y": 615 + }, + { + "x": 1058, + "y": 615 + }, + { + "x": 1058, + "y": 646 + }, + { + "x": 1041, + "y": 646 + } + ] + }, + "text": "4" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 957, + "y": 657 + }, + { + "x": 1060, + "y": 658 + }, + { + "x": 1060, + "y": 694 + }, + { + "x": 957, + "y": 693 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 957, + "y": 661 + }, + { + "x": 973, + "y": 661 + }, + { + "x": 973, + "y": 694 + }, + { + "x": 957, + "y": 694 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 661 + }, + { + "x": 992, + "y": 661 + }, + { + "x": 992, + "y": 694 + }, + { + "x": 978, + "y": 694 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 995, + "y": 661 + }, + { + "x": 1009, + "y": 661 + }, + { + "x": 1009, + "y": 694 + }, + { + "x": 995, + "y": 694 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1019, + "y": 659 + }, + { + "x": 1038, + "y": 659 + }, + { + "x": 1038, + "y": 692 + }, + { + "x": 1019, + "y": 692 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1041, + "y": 657 + }, + { + "x": 1060, + "y": 657 + }, + { + "x": 1060, + "y": 691 + }, + { + "x": 1041, + "y": 691 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 956, + "y": 704 + }, + { + "x": 1062, + "y": 704 + }, + { + "x": 1062, + "y": 741 + }, + { + "x": 956, + "y": 741 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 956, + "y": 705 + }, + { + "x": 974, + "y": 705 + }, + { + "x": 974, + "y": 740 + }, + { + "x": 956, + "y": 740 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 705 + }, + { + "x": 995, + "y": 705 + }, + { + "x": 995, + "y": 740 + }, + { + "x": 978, + "y": 740 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 997, + "y": 705 + }, + { + "x": 1012, + "y": 705 + }, + { + "x": 1012, + "y": 740 + }, + { + "x": 997, + "y": 740 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1021, + "y": 704 + }, + { + "x": 1039, + "y": 704 + }, + { + "x": 1039, + "y": 739 + }, + { + "x": 1021, + "y": 739 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1043, + "y": 705 + }, + { + "x": 1061, + "y": 705 + }, + { + "x": 1061, + "y": 737 + }, + { + "x": 1043, + "y": 737 + } + ] + }, + "text": "4" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 747 + }, + { + "x": 1064, + "y": 747 + }, + { + "x": 1064, + "y": 783 + }, + { + "x": 959, + "y": 783 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 748 + }, + { + "x": 975, + "y": 748 + }, + { + "x": 975, + "y": 782 + }, + { + "x": 959, + "y": 782 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 750 + }, + { + "x": 995, + "y": 750 + }, + { + "x": 995, + "y": 784 + }, + { + "x": 978, + "y": 784 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1007, + "y": 774 + }, + { + "x": 1014, + "y": 774 + }, + { + "x": 1014, + "y": 781 + }, + { + "x": 1007, + "y": 781 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1022, + "y": 747 + }, + { + "x": 1041, + "y": 747 + }, + { + "x": 1041, + "y": 780 + }, + { + "x": 1022, + "y": 780 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1043, + "y": 747 + }, + { + "x": 1064, + "y": 747 + }, + { + "x": 1064, + "y": 780 + }, + { + "x": 1043, + "y": 780 + } + ] + }, + "text": "0" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "cy", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 606, + "y": 788 + }, + { + "x": 652, + "y": 788 + }, + { + "x": 652, + "y": 822 + }, + { + "x": 606, + "y": 822 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "cy", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 606, + "y": 788 + }, + { + "x": 652, + "y": 788 + }, + { + "x": 652, + "y": 822 + }, + { + "x": 606, + "y": 822 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "cy", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 606, + "y": 788 + }, + { + "x": 652, + "y": 788 + }, + { + "x": 652, + "y": 822 + }, + { + "x": 606, + "y": 822 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 606, + "y": 788 + }, + { + "x": 628, + "y": 788 + }, + { + "x": 628, + "y": 822 + }, + { + "x": 606, + "y": 822 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 630, + "y": 788 + }, + { + "x": 652, + "y": 788 + }, + { + "x": 652, + "y": 822 + }, + { + "x": 630, + "y": 822 + } + ] + }, + "text": "U" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 836 + }, + { + "x": 1075, + "y": 836 + }, + { + "x": 1075, + "y": 1283 + }, + { + "x": 959, + "y": 1283 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 836 + }, + { + "x": 1075, + "y": 836 + }, + { + "x": 1075, + "y": 1283 + }, + { + "x": 959, + "y": 1283 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 836 + }, + { + "x": 1065, + "y": 836 + }, + { + "x": 1065, + "y": 875 + }, + { + "x": 959, + "y": 875 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 839 + }, + { + "x": 977, + "y": 839 + }, + { + "x": 977, + "y": 873 + }, + { + "x": 959, + "y": 873 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 980, + "y": 839 + }, + { + "x": 998, + "y": 839 + }, + { + "x": 998, + "y": 874 + }, + { + "x": 980, + "y": 874 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1007, + "y": 837 + }, + { + "x": 1024, + "y": 837 + }, + { + "x": 1024, + "y": 872 + }, + { + "x": 1007, + "y": 872 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1026, + "y": 837 + }, + { + "x": 1044, + "y": 837 + }, + { + "x": 1044, + "y": 872 + }, + { + "x": 1026, + "y": 872 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1045, + "y": 836 + }, + { + "x": 1065, + "y": 836 + }, + { + "x": 1065, + "y": 871 + }, + { + "x": 1045, + "y": 871 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 961, + "y": 884 + }, + { + "x": 1067, + "y": 884 + }, + { + "x": 1067, + "y": 921 + }, + { + "x": 961, + "y": 921 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 885 + }, + { + "x": 977, + "y": 885 + }, + { + "x": 977, + "y": 920 + }, + { + "x": 959, + "y": 920 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 981, + "y": 885 + }, + { + "x": 998, + "y": 885 + }, + { + "x": 998, + "y": 920 + }, + { + "x": 981, + "y": 920 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1009, + "y": 884 + }, + { + "x": 1026, + "y": 884 + }, + { + "x": 1026, + "y": 919 + }, + { + "x": 1009, + "y": 919 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1028, + "y": 884 + }, + { + "x": 1045, + "y": 884 + }, + { + "x": 1045, + "y": 919 + }, + { + "x": 1028, + "y": 919 + } + ] + }, + "text": "5" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1046, + "y": 884 + }, + { + "x": 1066, + "y": 884 + }, + { + "x": 1066, + "y": 918 + }, + { + "x": 1046, + "y": 918 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 962, + "y": 932 + }, + { + "x": 1065, + "y": 928 + }, + { + "x": 1066, + "y": 962 + }, + { + "x": 963, + "y": 966 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 962, + "y": 932 + }, + { + "x": 978, + "y": 931 + }, + { + "x": 979, + "y": 965 + }, + { + "x": 963, + "y": 966 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 981, + "y": 932 + }, + { + "x": 1000, + "y": 931 + }, + { + "x": 1001, + "y": 965 + }, + { + "x": 982, + "y": 966 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1010, + "y": 957 + }, + { + "x": 1017, + "y": 957 + }, + { + "x": 1017, + "y": 964 + }, + { + "x": 1010, + "y": 964 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1024, + "y": 930 + }, + { + "x": 1043, + "y": 929 + }, + { + "x": 1044, + "y": 963 + }, + { + "x": 1025, + "y": 964 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1045, + "y": 928 + }, + { + "x": 1066, + "y": 927 + }, + { + "x": 1067, + "y": 961 + }, + { + "x": 1046, + "y": 962 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 973 + }, + { + "x": 1067, + "y": 974 + }, + { + "x": 1067, + "y": 1010 + }, + { + "x": 964, + "y": 1009 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 976 + }, + { + "x": 980, + "y": 976 + }, + { + "x": 980, + "y": 1009 + }, + { + "x": 964, + "y": 1009 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 985, + "y": 976 + }, + { + "x": 999, + "y": 976 + }, + { + "x": 999, + "y": 1009 + }, + { + "x": 985, + "y": 1009 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1012, + "y": 1002 + }, + { + "x": 1016, + "y": 1002 + }, + { + "x": 1016, + "y": 1007 + }, + { + "x": 1012, + "y": 1007 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1026, + "y": 974 + }, + { + "x": 1045, + "y": 974 + }, + { + "x": 1045, + "y": 1007 + }, + { + "x": 1026, + "y": 1007 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1048, + "y": 973 + }, + { + "x": 1067, + "y": 973 + }, + { + "x": 1067, + "y": 1007 + }, + { + "x": 1048, + "y": 1007 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 962, + "y": 1021 + }, + { + "x": 1067, + "y": 1016 + }, + { + "x": 1068, + "y": 1050 + }, + { + "x": 964, + "y": 1055 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 962, + "y": 1021 + }, + { + "x": 979, + "y": 1020 + }, + { + "x": 981, + "y": 1053 + }, + { + "x": 964, + "y": 1054 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 985, + "y": 1021 + }, + { + "x": 1001, + "y": 1020 + }, + { + "x": 1003, + "y": 1053 + }, + { + "x": 987, + "y": 1054 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1012, + "y": 1048 + }, + { + "x": 1016, + "y": 1048 + }, + { + "x": 1016, + "y": 1053 + }, + { + "x": 1012, + "y": 1053 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1026, + "y": 1019 + }, + { + "x": 1043, + "y": 1018 + }, + { + "x": 1045, + "y": 1051 + }, + { + "x": 1028, + "y": 1052 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1046, + "y": 1019 + }, + { + "x": 1067, + "y": 1018 + }, + { + "x": 1069, + "y": 1051 + }, + { + "x": 1048, + "y": 1052 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 1065 + }, + { + "x": 1065, + "y": 1062 + }, + { + "x": 1066, + "y": 1096 + }, + { + "x": 965, + "y": 1099 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 1065 + }, + { + "x": 978, + "y": 1065 + }, + { + "x": 979, + "y": 1098 + }, + { + "x": 965, + "y": 1098 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 986, + "y": 1067 + }, + { + "x": 998, + "y": 1067 + }, + { + "x": 999, + "y": 1098 + }, + { + "x": 987, + "y": 1098 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1012, + "y": 1091 + }, + { + "x": 1017, + "y": 1091 + }, + { + "x": 1017, + "y": 1096 + }, + { + "x": 1012, + "y": 1096 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1026, + "y": 1064 + }, + { + "x": 1045, + "y": 1063 + }, + { + "x": 1046, + "y": 1096 + }, + { + "x": 1027, + "y": 1097 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1048, + "y": 1062 + }, + { + "x": 1065, + "y": 1061 + }, + { + "x": 1066, + "y": 1095 + }, + { + "x": 1049, + "y": 1096 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 1111 + }, + { + "x": 1069, + "y": 1106 + }, + { + "x": 1070, + "y": 1140 + }, + { + "x": 966, + "y": 1145 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 1111 + }, + { + "x": 981, + "y": 1110 + }, + { + "x": 982, + "y": 1143 + }, + { + "x": 965, + "y": 1144 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 988, + "y": 1111 + }, + { + "x": 1000, + "y": 1110 + }, + { + "x": 1001, + "y": 1143 + }, + { + "x": 989, + "y": 1144 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1012, + "y": 1111 + }, + { + "x": 1028, + "y": 1110 + }, + { + "x": 1029, + "y": 1143 + }, + { + "x": 1013, + "y": 1144 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1031, + "y": 1110 + }, + { + "x": 1047, + "y": 1109 + }, + { + "x": 1048, + "y": 1142 + }, + { + "x": 1032, + "y": 1143 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1050, + "y": 1110 + }, + { + "x": 1069, + "y": 1109 + }, + { + "x": 1070, + "y": 1142 + }, + { + "x": 1051, + "y": 1143 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 1154 + }, + { + "x": 1062, + "y": 1150 + }, + { + "x": 1064, + "y": 1190 + }, + { + "x": 980, + "y": 1194 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 1154 + }, + { + "x": 999, + "y": 1153 + }, + { + "x": 1001, + "y": 1193 + }, + { + "x": 980, + "y": 1194 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1002, + "y": 1153 + }, + { + "x": 1019, + "y": 1152 + }, + { + "x": 1021, + "y": 1192 + }, + { + "x": 1004, + "y": 1193 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1022, + "y": 1151 + }, + { + "x": 1041, + "y": 1150 + }, + { + "x": 1043, + "y": 1190 + }, + { + "x": 1024, + "y": 1191 + } + ] + }, + "text": "7" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1045, + "y": 1151 + }, + { + "x": 1062, + "y": 1150 + }, + { + "x": 1064, + "y": 1190 + }, + { + "x": 1047, + "y": 1191 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1201 + }, + { + "x": 1071, + "y": 1196 + }, + { + "x": 1073, + "y": 1230 + }, + { + "x": 970, + "y": 1235 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1201 + }, + { + "x": 984, + "y": 1200 + }, + { + "x": 986, + "y": 1233 + }, + { + "x": 970, + "y": 1234 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 988, + "y": 1199 + }, + { + "x": 1005, + "y": 1198 + }, + { + "x": 1007, + "y": 1231 + }, + { + "x": 990, + "y": 1232 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1017, + "y": 1226 + }, + { + "x": 1021, + "y": 1226 + }, + { + "x": 1021, + "y": 1231 + }, + { + "x": 1017, + "y": 1231 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1029, + "y": 1199 + }, + { + "x": 1048, + "y": 1198 + }, + { + "x": 1050, + "y": 1231 + }, + { + "x": 1031, + "y": 1232 + } + ] + }, + "text": "8" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1052, + "y": 1199 + }, + { + "x": 1071, + "y": 1198 + }, + { + "x": 1073, + "y": 1231 + }, + { + "x": 1054, + "y": 1232 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1245 + }, + { + "x": 1073, + "y": 1240 + }, + { + "x": 1075, + "y": 1276 + }, + { + "x": 970, + "y": 1281 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1245 + }, + { + "x": 985, + "y": 1244 + }, + { + "x": 986, + "y": 1277 + }, + { + "x": 970, + "y": 1278 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 990, + "y": 1245 + }, + { + "x": 1006, + "y": 1244 + }, + { + "x": 1007, + "y": 1277 + }, + { + "x": 992, + "y": 1278 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1016, + "y": 1271 + }, + { + "x": 1025, + "y": 1271 + }, + { + "x": 1025, + "y": 1278 + }, + { + "x": 1016, + "y": 1278 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1029, + "y": 1243 + }, + { + "x": 1048, + "y": 1242 + }, + { + "x": 1049, + "y": 1275 + }, + { + "x": 1031, + "y": 1276 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1050, + "y": 1243 + }, + { + "x": 1071, + "y": 1242 + }, + { + "x": 1073, + "y": 1276 + }, + { + "x": 1052, + "y": 1277 + } + ] + }, + "text": "0" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 699, + "y": 844 + }, + { + "x": 803, + "y": 844 + }, + { + "x": 803, + "y": 881 + }, + { + "x": 699, + "y": 881 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 699, + "y": 844 + }, + { + "x": 803, + "y": 844 + }, + { + "x": 803, + "y": 881 + }, + { + "x": 699, + "y": 881 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 699, + "y": 846 + }, + { + "x": 802, + "y": 844 + }, + { + "x": 803, + "y": 878 + }, + { + "x": 700, + "y": 880 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 699, + "y": 846 + }, + { + "x": 716, + "y": 846 + }, + { + "x": 717, + "y": 879 + }, + { + "x": 700, + "y": 879 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 719, + "y": 846 + }, + { + "x": 736, + "y": 846 + }, + { + "x": 737, + "y": 879 + }, + { + "x": 720, + "y": 879 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 747, + "y": 872 + }, + { + "x": 752, + "y": 872 + }, + { + "x": 752, + "y": 877 + }, + { + "x": 747, + "y": 877 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 762, + "y": 844 + }, + { + "x": 781, + "y": 844 + }, + { + "x": 782, + "y": 877 + }, + { + "x": 763, + "y": 877 + } + ] + }, + "text": "5" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 784, + "y": 844 + }, + { + "x": 801, + "y": 844 + }, + { + "x": 802, + "y": 878 + }, + { + "x": 785, + "y": 878 + } + ] + }, + "text": "0" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 892 + }, + { + "x": 592, + "y": 892 + }, + { + "x": 592, + "y": 1203 + }, + { + "x": 284, + "y": 1203 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 892 + }, + { + "x": 592, + "y": 892 + }, + { + "x": 592, + "y": 1203 + }, + { + "x": 284, + "y": 1203 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 899 + }, + { + "x": 454, + "y": 896 + }, + { + "x": 455, + "y": 929 + }, + { + "x": 285, + "y": 932 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 899 + }, + { + "x": 300, + "y": 899 + }, + { + "x": 301, + "y": 932 + }, + { + "x": 285, + "y": 932 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 304, + "y": 899 + }, + { + "x": 323, + "y": 899 + }, + { + "x": 324, + "y": 932 + }, + { + "x": 305, + "y": 932 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 327, + "y": 899 + }, + { + "x": 344, + "y": 899 + }, + { + "x": 345, + "y": 932 + }, + { + "x": 328, + "y": 932 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 349, + "y": 899 + }, + { + "x": 365, + "y": 899 + }, + { + "x": 366, + "y": 930 + }, + { + "x": 350, + "y": 930 + } + ] + }, + "text": "/" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 370, + "y": 897 + }, + { + "x": 389, + "y": 897 + }, + { + "x": 390, + "y": 930 + }, + { + "x": 371, + "y": 930 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 392, + "y": 897 + }, + { + "x": 411, + "y": 897 + }, + { + "x": 412, + "y": 930 + }, + { + "x": 393, + "y": 930 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 414, + "y": 897 + }, + { + "x": 433, + "y": 897 + }, + { + "x": 434, + "y": 930 + }, + { + "x": 415, + "y": 930 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 436, + "y": 896 + }, + { + "x": 453, + "y": 896 + }, + { + "x": 454, + "y": 929 + }, + { + "x": 437, + "y": 929 + } + ] + }, + "text": "H" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "hr", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 479, + "y": 894 + }, + { + "x": 584, + "y": 892 + }, + { + "x": 585, + "y": 926 + }, + { + "x": 480, + "y": 928 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 479, + "y": 896 + }, + { + "x": 496, + "y": 896 + }, + { + "x": 497, + "y": 929 + }, + { + "x": 480, + "y": 929 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 500, + "y": 896 + }, + { + "x": 519, + "y": 896 + }, + { + "x": 520, + "y": 929 + }, + { + "x": 501, + "y": 929 + } + ] + }, + "text": "L" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 522, + "y": 894 + }, + { + "x": 541, + "y": 894 + }, + { + "x": 542, + "y": 927 + }, + { + "x": 523, + "y": 927 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 544, + "y": 894 + }, + { + "x": 561, + "y": 894 + }, + { + "x": 562, + "y": 927 + }, + { + "x": 545, + "y": 927 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 565, + "y": 892 + }, + { + "x": 584, + "y": 892 + }, + { + "x": 585, + "y": 926 + }, + { + "x": 566, + "y": 926 + } + ] + }, + "text": "E" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "fi", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 286, + "y": 945 + }, + { + "x": 346, + "y": 944 + }, + { + "x": 347, + "y": 977 + }, + { + "x": 287, + "y": 978 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 286, + "y": 945 + }, + { + "x": 303, + "y": 945 + }, + { + "x": 304, + "y": 978 + }, + { + "x": 287, + "y": 978 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 306, + "y": 945 + }, + { + "x": 325, + "y": 945 + }, + { + "x": 326, + "y": 978 + }, + { + "x": 307, + "y": 978 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 328, + "y": 944 + }, + { + "x": 345, + "y": 944 + }, + { + "x": 346, + "y": 977 + }, + { + "x": 329, + "y": 977 + } + ] + }, + "text": "N" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 371, + "y": 944 + }, + { + "x": 520, + "y": 941 + }, + { + "x": 521, + "y": 975 + }, + { + "x": 372, + "y": 978 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 371, + "y": 944 + }, + { + "x": 388, + "y": 944 + }, + { + "x": 389, + "y": 977 + }, + { + "x": 372, + "y": 977 + } + ] + }, + "text": "F" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 394, + "y": 944 + }, + { + "x": 413, + "y": 944 + }, + { + "x": 414, + "y": 978 + }, + { + "x": 395, + "y": 978 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 416, + "y": 942 + }, + { + "x": 433, + "y": 942 + }, + { + "x": 434, + "y": 976 + }, + { + "x": 417, + "y": 976 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 438, + "y": 942 + }, + { + "x": 455, + "y": 942 + }, + { + "x": 456, + "y": 975 + }, + { + "x": 439, + "y": 975 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 459, + "y": 942 + }, + { + "x": 478, + "y": 942 + }, + { + "x": 479, + "y": 975 + }, + { + "x": 460, + "y": 975 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 481, + "y": 942 + }, + { + "x": 498, + "y": 942 + }, + { + "x": 499, + "y": 975 + }, + { + "x": 482, + "y": 975 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 502, + "y": 940 + }, + { + "x": 521, + "y": 940 + }, + { + "x": 522, + "y": 973 + }, + { + "x": 503, + "y": 973 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "eu", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 988 + }, + { + "x": 391, + "y": 988 + }, + { + "x": 391, + "y": 1022 + }, + { + "x": 284, + "y": 1022 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 988 + }, + { + "x": 301, + "y": 988 + }, + { + "x": 301, + "y": 1022 + }, + { + "x": 284, + "y": 1022 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 308, + "y": 988 + }, + { + "x": 326, + "y": 988 + }, + { + "x": 326, + "y": 1022 + }, + { + "x": 308, + "y": 1022 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 328, + "y": 988 + }, + { + "x": 346, + "y": 988 + }, + { + "x": 346, + "y": 1022 + }, + { + "x": 328, + "y": 1022 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 349, + "y": 988 + }, + { + "x": 366, + "y": 988 + }, + { + "x": 366, + "y": 1022 + }, + { + "x": 349, + "y": 1022 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 373, + "y": 988 + }, + { + "x": 391, + "y": 988 + }, + { + "x": 391, + "y": 1020 + }, + { + "x": 373, + "y": 1020 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "fi", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 287, + "y": 1036 + }, + { + "x": 349, + "y": 1035 + }, + { + "x": 350, + "y": 1068 + }, + { + "x": 288, + "y": 1069 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 287, + "y": 1036 + }, + { + "x": 304, + "y": 1036 + }, + { + "x": 305, + "y": 1069 + }, + { + "x": 288, + "y": 1069 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 308, + "y": 1036 + }, + { + "x": 325, + "y": 1036 + }, + { + "x": 326, + "y": 1069 + }, + { + "x": 309, + "y": 1069 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 330, + "y": 1034 + }, + { + "x": 349, + "y": 1034 + }, + { + "x": 350, + "y": 1067 + }, + { + "x": 331, + "y": 1067 + } + ] + }, + "text": "N" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 373, + "y": 1034 + }, + { + "x": 522, + "y": 1031 + }, + { + "x": 523, + "y": 1063 + }, + { + "x": 374, + "y": 1067 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 373, + "y": 1034 + }, + { + "x": 390, + "y": 1034 + }, + { + "x": 391, + "y": 1067 + }, + { + "x": 374, + "y": 1067 + } + ] + }, + "text": "F" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 397, + "y": 1033 + }, + { + "x": 414, + "y": 1033 + }, + { + "x": 415, + "y": 1066 + }, + { + "x": 398, + "y": 1066 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 418, + "y": 1033 + }, + { + "x": 437, + "y": 1033 + }, + { + "x": 438, + "y": 1066 + }, + { + "x": 419, + "y": 1066 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 440, + "y": 1033 + }, + { + "x": 459, + "y": 1033 + }, + { + "x": 460, + "y": 1066 + }, + { + "x": 441, + "y": 1066 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 462, + "y": 1033 + }, + { + "x": 479, + "y": 1033 + }, + { + "x": 480, + "y": 1066 + }, + { + "x": 463, + "y": 1066 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 483, + "y": 1031 + }, + { + "x": 500, + "y": 1031 + }, + { + "x": 501, + "y": 1064 + }, + { + "x": 484, + "y": 1064 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 503, + "y": 1031 + }, + { + "x": 522, + "y": 1031 + }, + { + "x": 523, + "y": 1064 + }, + { + "x": 504, + "y": 1064 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "eu", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 291, + "y": 1079 + }, + { + "x": 392, + "y": 1076 + }, + { + "x": 393, + "y": 1110 + }, + { + "x": 292, + "y": 1113 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 291, + "y": 1079 + }, + { + "x": 308, + "y": 1079 + }, + { + "x": 309, + "y": 1113 + }, + { + "x": 292, + "y": 1113 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 311, + "y": 1079 + }, + { + "x": 327, + "y": 1079 + }, + { + "x": 328, + "y": 1113 + }, + { + "x": 312, + "y": 1113 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 330, + "y": 1079 + }, + { + "x": 349, + "y": 1078 + }, + { + "x": 350, + "y": 1109 + }, + { + "x": 331, + "y": 1110 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 352, + "y": 1077 + }, + { + "x": 371, + "y": 1076 + }, + { + "x": 372, + "y": 1110 + }, + { + "x": 353, + "y": 1111 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 375, + "y": 1077 + }, + { + "x": 392, + "y": 1077 + }, + { + "x": 393, + "y": 1111 + }, + { + "x": 376, + "y": 1111 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "es", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1123 + }, + { + "x": 416, + "y": 1120 + }, + { + "x": 417, + "y": 1154 + }, + { + "x": 290, + "y": 1157 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1125 + }, + { + "x": 306, + "y": 1125 + }, + { + "x": 307, + "y": 1158 + }, + { + "x": 290, + "y": 1158 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 310, + "y": 1125 + }, + { + "x": 329, + "y": 1125 + }, + { + "x": 330, + "y": 1158 + }, + { + "x": 311, + "y": 1158 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 330, + "y": 1123 + }, + { + "x": 351, + "y": 1122 + }, + { + "x": 352, + "y": 1155 + }, + { + "x": 331, + "y": 1156 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 352, + "y": 1123 + }, + { + "x": 373, + "y": 1122 + }, + { + "x": 374, + "y": 1155 + }, + { + "x": 353, + "y": 1156 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 376, + "y": 1122 + }, + { + "x": 393, + "y": 1122 + }, + { + "x": 394, + "y": 1156 + }, + { + "x": 377, + "y": 1156 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 397, + "y": 1120 + }, + { + "x": 416, + "y": 1120 + }, + { + "x": 417, + "y": 1154 + }, + { + "x": 398, + "y": 1154 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "mi", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1170 + }, + { + "x": 329, + "y": 1169 + }, + { + "x": 330, + "y": 1202 + }, + { + "x": 290, + "y": 1203 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1170 + }, + { + "x": 306, + "y": 1170 + }, + { + "x": 307, + "y": 1203 + }, + { + "x": 290, + "y": 1203 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 310, + "y": 1170 + }, + { + "x": 329, + "y": 1170 + }, + { + "x": 330, + "y": 1203 + }, + { + "x": 311, + "y": 1203 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 354, + "y": 1170 + }, + { + "x": 371, + "y": 1170 + }, + { + "x": 372, + "y": 1201 + }, + { + "x": 355, + "y": 1201 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 354, + "y": 1170 + }, + { + "x": 371, + "y": 1170 + }, + { + "x": 372, + "y": 1201 + }, + { + "x": 355, + "y": 1201 + } + ] + }, + "text": "4" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "lb", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 397, + "y": 1168 + }, + { + "x": 486, + "y": 1166 + }, + { + "x": 487, + "y": 1200 + }, + { + "x": 398, + "y": 1202 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 397, + "y": 1168 + }, + { + "x": 416, + "y": 1168 + }, + { + "x": 417, + "y": 1202 + }, + { + "x": 398, + "y": 1202 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 419, + "y": 1166 + }, + { + "x": 438, + "y": 1166 + }, + { + "x": 439, + "y": 1200 + }, + { + "x": 420, + "y": 1200 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 442, + "y": 1166 + }, + { + "x": 461, + "y": 1166 + }, + { + "x": 462, + "y": 1199 + }, + { + "x": 443, + "y": 1199 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 462, + "y": 1166 + }, + { + "x": 486, + "y": 1165 + }, + { + "x": 487, + "y": 1199 + }, + { + "x": 463, + "y": 1200 + } + ] + }, + "text": "G" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "de", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 507, + "y": 1165 + }, + { + "x": 591, + "y": 1163 + }, + { + "x": 592, + "y": 1197 + }, + { + "x": 508, + "y": 1199 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 507, + "y": 1165 + }, + { + "x": 524, + "y": 1165 + }, + { + "x": 525, + "y": 1199 + }, + { + "x": 508, + "y": 1199 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 527, + "y": 1165 + }, + { + "x": 548, + "y": 1165 + }, + { + "x": 549, + "y": 1198 + }, + { + "x": 528, + "y": 1199 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 549, + "y": 1165 + }, + { + "x": 570, + "y": 1165 + }, + { + "x": 571, + "y": 1195 + }, + { + "x": 550, + "y": 1196 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 573, + "y": 1165 + }, + { + "x": 590, + "y": 1165 + }, + { + "x": 591, + "y": 1196 + }, + { + "x": 574, + "y": 1196 + } + ] + }, + "text": "S" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1202 + }, + { + "x": 635, + "y": 1202 + }, + { + "x": 635, + "y": 1340 + }, + { + "x": 289, + "y": 1340 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1202 + }, + { + "x": 635, + "y": 1202 + }, + { + "x": 635, + "y": 1340 + }, + { + "x": 289, + "y": 1340 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "sw", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1211 + }, + { + "x": 330, + "y": 1210 + }, + { + "x": 331, + "y": 1262 + }, + { + "x": 291, + "y": 1263 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 289, + "y": 1211 + }, + { + "x": 303, + "y": 1211 + }, + { + "x": 304, + "y": 1263 + }, + { + "x": 291, + "y": 1263 + } + ] + }, + "text": "K" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 306, + "y": 1211 + }, + { + "x": 330, + "y": 1210 + }, + { + "x": 331, + "y": 1262 + }, + { + "x": 308, + "y": 1263 + } + ] + }, + "text": "M" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 351, + "y": 1209 + }, + { + "x": 428, + "y": 1207 + }, + { + "x": 429, + "y": 1259 + }, + { + "x": 353, + "y": 1261 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 351, + "y": 1209 + }, + { + "x": 367, + "y": 1209 + }, + { + "x": 368, + "y": 1261 + }, + { + "x": 353, + "y": 1261 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 370, + "y": 1209 + }, + { + "x": 394, + "y": 1208 + }, + { + "x": 395, + "y": 1260 + }, + { + "x": 372, + "y": 1261 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 397, + "y": 1207 + }, + { + "x": 411, + "y": 1207 + }, + { + "x": 412, + "y": 1259 + }, + { + "x": 399, + "y": 1259 + } + ] + }, + "text": "F" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 414, + "y": 1207 + }, + { + "x": 428, + "y": 1207 + }, + { + "x": 429, + "y": 1259 + }, + { + "x": 416, + "y": 1259 + } + ] + }, + "text": "T" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 459, + "y": 1206 + }, + { + "x": 565, + "y": 1203 + }, + { + "x": 566, + "y": 1255 + }, + { + "x": 461, + "y": 1258 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 459, + "y": 1206 + }, + { + "x": 475, + "y": 1206 + }, + { + "x": 476, + "y": 1258 + }, + { + "x": 461, + "y": 1258 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 478, + "y": 1206 + }, + { + "x": 502, + "y": 1205 + }, + { + "x": 503, + "y": 1257 + }, + { + "x": 480, + "y": 1258 + } + ] + }, + "text": "H" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 505, + "y": 1204 + }, + { + "x": 519, + "y": 1204 + }, + { + "x": 520, + "y": 1256 + }, + { + "x": 507, + "y": 1256 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 522, + "y": 1204 + }, + { + "x": 538, + "y": 1204 + }, + { + "x": 539, + "y": 1256 + }, + { + "x": 524, + "y": 1256 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 541, + "y": 1204 + }, + { + "x": 565, + "y": 1203 + }, + { + "x": 566, + "y": 1255 + }, + { + "x": 543, + "y": 1256 + } + ] + }, + "text": "K" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "de", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 291, + "y": 1259 + }, + { + "x": 353, + "y": 1258 + }, + { + "x": 353, + "y": 1294 + }, + { + "x": 291, + "y": 1295 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 291, + "y": 1259 + }, + { + "x": 308, + "y": 1259 + }, + { + "x": 308, + "y": 1295 + }, + { + "x": 291, + "y": 1295 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 311, + "y": 1259 + }, + { + "x": 328, + "y": 1259 + }, + { + "x": 328, + "y": 1295 + }, + { + "x": 311, + "y": 1295 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 334, + "y": 1261 + }, + { + "x": 353, + "y": 1261 + }, + { + "x": 353, + "y": 1294 + }, + { + "x": 334, + "y": 1294 + } + ] + }, + "text": "N" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 376, + "y": 1255 + }, + { + "x": 505, + "y": 1253 + }, + { + "x": 505, + "y": 1289 + }, + { + "x": 376, + "y": 1291 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 376, + "y": 1259 + }, + { + "x": 393, + "y": 1259 + }, + { + "x": 393, + "y": 1292 + }, + { + "x": 376, + "y": 1292 + } + ] + }, + "text": "L" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 400, + "y": 1257 + }, + { + "x": 417, + "y": 1257 + }, + { + "x": 417, + "y": 1291 + }, + { + "x": 400, + "y": 1291 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 421, + "y": 1257 + }, + { + "x": 440, + "y": 1257 + }, + { + "x": 440, + "y": 1291 + }, + { + "x": 421, + "y": 1291 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 442, + "y": 1255 + }, + { + "x": 463, + "y": 1255 + }, + { + "x": 463, + "y": 1289 + }, + { + "x": 442, + "y": 1289 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 464, + "y": 1257 + }, + { + "x": 483, + "y": 1257 + }, + { + "x": 483, + "y": 1290 + }, + { + "x": 464, + "y": 1290 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 486, + "y": 1255 + }, + { + "x": 505, + "y": 1255 + }, + { + "x": 505, + "y": 1288 + }, + { + "x": 486, + "y": 1288 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 618, + "y": 1261 + }, + { + "x": 634, + "y": 1261 + }, + { + "x": 634, + "y": 1278 + }, + { + "x": 618, + "y": 1278 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 618, + "y": 1261 + }, + { + "x": 634, + "y": 1261 + }, + { + "x": 634, + "y": 1278 + }, + { + "x": 618, + "y": 1278 + } + ] + }, + "text": "x" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "sv", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 294, + "y": 1305 + }, + { + "x": 421, + "y": 1302 + }, + { + "x": 422, + "y": 1336 + }, + { + "x": 295, + "y": 1339 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 294, + "y": 1307 + }, + { + "x": 311, + "y": 1307 + }, + { + "x": 312, + "y": 1340 + }, + { + "x": 295, + "y": 1340 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 315, + "y": 1307 + }, + { + "x": 332, + "y": 1307 + }, + { + "x": 333, + "y": 1340 + }, + { + "x": 316, + "y": 1340 + } + ] + }, + "text": "W" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 335, + "y": 1305 + }, + { + "x": 351, + "y": 1305 + }, + { + "x": 352, + "y": 1339 + }, + { + "x": 336, + "y": 1339 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 358, + "y": 1303 + }, + { + "x": 377, + "y": 1303 + }, + { + "x": 378, + "y": 1337 + }, + { + "x": 359, + "y": 1337 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 378, + "y": 1303 + }, + { + "x": 397, + "y": 1303 + }, + { + "x": 398, + "y": 1337 + }, + { + "x": 379, + "y": 1337 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 400, + "y": 1303 + }, + { + "x": 421, + "y": 1303 + }, + { + "x": 422, + "y": 1337 + }, + { + "x": 401, + "y": 1337 + } + ] + }, + "text": "S" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1333 + }, + { + "x": 1077, + "y": 1333 + }, + { + "x": 1077, + "y": 1500 + }, + { + "x": 968, + "y": 1500 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1333 + }, + { + "x": 1077, + "y": 1333 + }, + { + "x": 1077, + "y": 1500 + }, + { + "x": 968, + "y": 1500 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 1333 + }, + { + "x": 1065, + "y": 1333 + }, + { + "x": 1065, + "y": 1370 + }, + { + "x": 978, + "y": 1370 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 1333 + }, + { + "x": 1000, + "y": 1333 + }, + { + "x": 1000, + "y": 1370 + }, + { + "x": 978, + "y": 1370 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1002, + "y": 1333 + }, + { + "x": 1019, + "y": 1333 + }, + { + "x": 1019, + "y": 1370 + }, + { + "x": 1002, + "y": 1370 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1021, + "y": 1333 + }, + { + "x": 1046, + "y": 1333 + }, + { + "x": 1046, + "y": 1370 + }, + { + "x": 1021, + "y": 1370 + } + ] + }, + "text": "8" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1048, + "y": 1333 + }, + { + "x": 1065, + "y": 1333 + }, + { + "x": 1065, + "y": 1370 + }, + { + "x": 1048, + "y": 1370 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 969, + "y": 1380 + }, + { + "x": 1072, + "y": 1376 + }, + { + "x": 1073, + "y": 1408 + }, + { + "x": 970, + "y": 1413 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 969, + "y": 1380 + }, + { + "x": 985, + "y": 1379 + }, + { + "x": 986, + "y": 1410 + }, + { + "x": 970, + "y": 1411 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 990, + "y": 1379 + }, + { + "x": 1007, + "y": 1378 + }, + { + "x": 1008, + "y": 1409 + }, + { + "x": 991, + "y": 1410 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1019, + "y": 1404 + }, + { + "x": 1023, + "y": 1404 + }, + { + "x": 1023, + "y": 1409 + }, + { + "x": 1019, + "y": 1409 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1031, + "y": 1377 + }, + { + "x": 1048, + "y": 1376 + }, + { + "x": 1049, + "y": 1409 + }, + { + "x": 1032, + "y": 1410 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1053, + "y": 1377 + }, + { + "x": 1072, + "y": 1376 + }, + { + "x": 1073, + "y": 1409 + }, + { + "x": 1054, + "y": 1410 + } + ] + }, + "text": "5" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1423 + }, + { + "x": 1073, + "y": 1414 + }, + { + "x": 1076, + "y": 1450 + }, + { + "x": 971, + "y": 1459 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 1425 + }, + { + "x": 984, + "y": 1424 + }, + { + "x": 987, + "y": 1454 + }, + { + "x": 971, + "y": 1456 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 986, + "y": 1423 + }, + { + "x": 1003, + "y": 1422 + }, + { + "x": 1006, + "y": 1452 + }, + { + "x": 989, + "y": 1454 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1007, + "y": 1430 + }, + { + "x": 1021, + "y": 1429 + }, + { + "x": 1023, + "y": 1453 + }, + { + "x": 1009, + "y": 1454 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1022, + "y": 1418 + }, + { + "x": 1044, + "y": 1416 + }, + { + "x": 1047, + "y": 1452 + }, + { + "x": 1025, + "y": 1454 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1048, + "y": 1416 + }, + { + "x": 1072, + "y": 1414 + }, + { + "x": 1075, + "y": 1450 + }, + { + "x": 1051, + "y": 1452 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 971, + "y": 1466 + }, + { + "x": 1074, + "y": 1465 + }, + { + "x": 1074, + "y": 1498 + }, + { + "x": 971, + "y": 1499 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 971, + "y": 1466 + }, + { + "x": 988, + "y": 1466 + }, + { + "x": 988, + "y": 1499 + }, + { + "x": 971, + "y": 1499 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 992, + "y": 1466 + }, + { + "x": 1008, + "y": 1466 + }, + { + "x": 1008, + "y": 1499 + }, + { + "x": 992, + "y": 1499 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1017, + "y": 1466 + }, + { + "x": 1033, + "y": 1466 + }, + { + "x": 1033, + "y": 1499 + }, + { + "x": 1017, + "y": 1499 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1036, + "y": 1466 + }, + { + "x": 1052, + "y": 1466 + }, + { + "x": 1052, + "y": 1499 + }, + { + "x": 1036, + "y": 1499 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1055, + "y": 1466 + }, + { + "x": 1074, + "y": 1466 + }, + { + "x": 1074, + "y": 1495 + }, + { + "x": 1055, + "y": 1495 + } + ] + }, + "text": "9" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 707, + "y": 1333 + }, + { + "x": 820, + "y": 1333 + }, + { + "x": 820, + "y": 1382 + }, + { + "x": 707, + "y": 1382 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 707, + "y": 1333 + }, + { + "x": 820, + "y": 1333 + }, + { + "x": 820, + "y": 1382 + }, + { + "x": 707, + "y": 1382 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 707, + "y": 1341 + }, + { + "x": 815, + "y": 1332 + }, + { + "x": 818, + "y": 1371 + }, + { + "x": 710, + "y": 1381 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 707, + "y": 1341 + }, + { + "x": 724, + "y": 1340 + }, + { + "x": 727, + "y": 1372 + }, + { + "x": 710, + "y": 1374 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 728, + "y": 1339 + }, + { + "x": 749, + "y": 1337 + }, + { + "x": 752, + "y": 1371 + }, + { + "x": 731, + "y": 1373 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 759, + "y": 1360 + }, + { + "x": 766, + "y": 1359 + }, + { + "x": 767, + "y": 1371 + }, + { + "x": 760, + "y": 1372 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 772, + "y": 1339 + }, + { + "x": 791, + "y": 1337 + }, + { + "x": 794, + "y": 1371 + }, + { + "x": 775, + "y": 1373 + } + ] + }, + "text": "4" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 793, + "y": 1338 + }, + { + "x": 815, + "y": 1336 + }, + { + "x": 818, + "y": 1372 + }, + { + "x": 796, + "y": 1374 + } + ] + }, + "text": "0" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1386 + }, + { + "x": 638, + "y": 1386 + }, + { + "x": 638, + "y": 1523 + }, + { + "x": 296, + "y": 1523 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1386 + }, + { + "x": 638, + "y": 1386 + }, + { + "x": 638, + "y": 1523 + }, + { + "x": 296, + "y": 1523 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1396 + }, + { + "x": 354, + "y": 1394 + }, + { + "x": 355, + "y": 1425 + }, + { + "x": 297, + "y": 1427 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1396 + }, + { + "x": 313, + "y": 1396 + }, + { + "x": 314, + "y": 1427 + }, + { + "x": 297, + "y": 1427 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 316, + "y": 1396 + }, + { + "x": 333, + "y": 1396 + }, + { + "x": 334, + "y": 1427 + }, + { + "x": 317, + "y": 1427 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 339, + "y": 1396 + }, + { + "x": 355, + "y": 1396 + }, + { + "x": 356, + "y": 1425 + }, + { + "x": 340, + "y": 1425 + } + ] + }, + "text": "V" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 382, + "y": 1394 + }, + { + "x": 444, + "y": 1392 + }, + { + "x": 445, + "y": 1423 + }, + { + "x": 383, + "y": 1425 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 382, + "y": 1394 + }, + { + "x": 399, + "y": 1394 + }, + { + "x": 400, + "y": 1425 + }, + { + "x": 383, + "y": 1425 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 402, + "y": 1392 + }, + { + "x": 421, + "y": 1392 + }, + { + "x": 422, + "y": 1422 + }, + { + "x": 403, + "y": 1423 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 426, + "y": 1394 + }, + { + "x": 443, + "y": 1394 + }, + { + "x": 444, + "y": 1423 + }, + { + "x": 427, + "y": 1423 + } + ] + }, + "text": "G" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 469, + "y": 1391 + }, + { + "x": 637, + "y": 1387 + }, + { + "x": 638, + "y": 1420 + }, + { + "x": 470, + "y": 1424 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 469, + "y": 1392 + }, + { + "x": 488, + "y": 1392 + }, + { + "x": 489, + "y": 1420 + }, + { + "x": 470, + "y": 1421 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 493, + "y": 1392 + }, + { + "x": 510, + "y": 1392 + }, + { + "x": 511, + "y": 1421 + }, + { + "x": 494, + "y": 1421 + } + ] + }, + "text": "H" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 514, + "y": 1392 + }, + { + "x": 531, + "y": 1392 + }, + { + "x": 532, + "y": 1421 + }, + { + "x": 515, + "y": 1421 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 534, + "y": 1391 + }, + { + "x": 551, + "y": 1391 + }, + { + "x": 552, + "y": 1420 + }, + { + "x": 535, + "y": 1420 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 556, + "y": 1391 + }, + { + "x": 573, + "y": 1391 + }, + { + "x": 574, + "y": 1420 + }, + { + "x": 557, + "y": 1420 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 577, + "y": 1389 + }, + { + "x": 594, + "y": 1389 + }, + { + "x": 595, + "y": 1422 + }, + { + "x": 578, + "y": 1422 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 597, + "y": 1387 + }, + { + "x": 614, + "y": 1387 + }, + { + "x": 615, + "y": 1420 + }, + { + "x": 598, + "y": 1420 + } + ] + }, + "text": "+" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 621, + "y": 1398 + }, + { + "x": 637, + "y": 1398 + }, + { + "x": 637, + "y": 1414 + }, + { + "x": 621, + "y": 1414 + } + ] + }, + "text": "x" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1437 + }, + { + "x": 442, + "y": 1435 + }, + { + "x": 443, + "y": 1469 + }, + { + "x": 297, + "y": 1471 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1437 + }, + { + "x": 310, + "y": 1437 + }, + { + "x": 311, + "y": 1470 + }, + { + "x": 297, + "y": 1470 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 316, + "y": 1437 + }, + { + "x": 335, + "y": 1437 + }, + { + "x": 336, + "y": 1471 + }, + { + "x": 317, + "y": 1471 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 339, + "y": 1437 + }, + { + "x": 356, + "y": 1437 + }, + { + "x": 357, + "y": 1471 + }, + { + "x": 340, + "y": 1471 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 359, + "y": 1435 + }, + { + "x": 376, + "y": 1435 + }, + { + "x": 377, + "y": 1469 + }, + { + "x": 360, + "y": 1469 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 380, + "y": 1437 + }, + { + "x": 401, + "y": 1437 + }, + { + "x": 402, + "y": 1468 + }, + { + "x": 381, + "y": 1468 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 404, + "y": 1437 + }, + { + "x": 423, + "y": 1437 + }, + { + "x": 424, + "y": 1468 + }, + { + "x": 405, + "y": 1468 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 424, + "y": 1435 + }, + { + "x": 441, + "y": 1435 + }, + { + "x": 442, + "y": 1468 + }, + { + "x": 425, + "y": 1468 + } + ] + }, + "text": "T" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1485 + }, + { + "x": 469, + "y": 1477 + }, + { + "x": 470, + "y": 1513 + }, + { + "x": 298, + "y": 1521 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 296, + "y": 1485 + }, + { + "x": 312, + "y": 1484 + }, + { + "x": 313, + "y": 1517 + }, + { + "x": 297, + "y": 1518 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 316, + "y": 1483 + }, + { + "x": 333, + "y": 1482 + }, + { + "x": 334, + "y": 1516 + }, + { + "x": 317, + "y": 1517 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 337, + "y": 1483 + }, + { + "x": 356, + "y": 1482 + }, + { + "x": 357, + "y": 1516 + }, + { + "x": 338, + "y": 1517 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 359, + "y": 1483 + }, + { + "x": 378, + "y": 1482 + }, + { + "x": 379, + "y": 1513 + }, + { + "x": 360, + "y": 1514 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 382, + "y": 1483 + }, + { + "x": 401, + "y": 1482 + }, + { + "x": 402, + "y": 1513 + }, + { + "x": 383, + "y": 1514 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 404, + "y": 1482 + }, + { + "x": 423, + "y": 1481 + }, + { + "x": 424, + "y": 1515 + }, + { + "x": 405, + "y": 1516 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 424, + "y": 1482 + }, + { + "x": 445, + "y": 1481 + }, + { + "x": 446, + "y": 1515 + }, + { + "x": 425, + "y": 1516 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 448, + "y": 1480 + }, + { + "x": 469, + "y": 1479 + }, + { + "x": 470, + "y": 1513 + }, + { + "x": 449, + "y": 1514 + } + ] + }, + "text": "S" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 1571 + }, + { + "x": 513, + "y": 1571 + }, + { + "x": 513, + "y": 1699 + }, + { + "x": 301, + "y": 1699 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 1571 + }, + { + "x": 513, + "y": 1571 + }, + { + "x": 513, + "y": 1699 + }, + { + "x": 301, + "y": 1699 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 1574 + }, + { + "x": 402, + "y": 1571 + }, + { + "x": 403, + "y": 1607 + }, + { + "x": 302, + "y": 1610 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 301, + "y": 1574 + }, + { + "x": 313, + "y": 1574 + }, + { + "x": 314, + "y": 1608 + }, + { + "x": 302, + "y": 1608 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 318, + "y": 1576 + }, + { + "x": 335, + "y": 1575 + }, + { + "x": 336, + "y": 1608 + }, + { + "x": 319, + "y": 1609 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 339, + "y": 1574 + }, + { + "x": 356, + "y": 1573 + }, + { + "x": 357, + "y": 1606 + }, + { + "x": 340, + "y": 1607 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 363, + "y": 1576 + }, + { + "x": 382, + "y": 1575 + }, + { + "x": 383, + "y": 1608 + }, + { + "x": 364, + "y": 1609 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 385, + "y": 1572 + }, + { + "x": 402, + "y": 1571 + }, + { + "x": 403, + "y": 1605 + }, + { + "x": 386, + "y": 1606 + } + ] + }, + "text": "L" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 303, + "y": 1619 + }, + { + "x": 385, + "y": 1619 + }, + { + "x": 385, + "y": 1653 + }, + { + "x": 303, + "y": 1653 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 303, + "y": 1620 + }, + { + "x": 318, + "y": 1620 + }, + { + "x": 318, + "y": 1652 + }, + { + "x": 303, + "y": 1652 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 1619 + }, + { + "x": 341, + "y": 1619 + }, + { + "x": 341, + "y": 1653 + }, + { + "x": 323, + "y": 1653 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 344, + "y": 1619 + }, + { + "x": 362, + "y": 1619 + }, + { + "x": 362, + "y": 1653 + }, + { + "x": 344, + "y": 1653 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 364, + "y": 1619 + }, + { + "x": 384, + "y": 1619 + }, + { + "x": 384, + "y": 1651 + }, + { + "x": 364, + "y": 1651 + } + ] + }, + "text": "H" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 303, + "y": 1665 + }, + { + "x": 427, + "y": 1662 + }, + { + "x": 428, + "y": 1695 + }, + { + "x": 304, + "y": 1698 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 303, + "y": 1667 + }, + { + "x": 320, + "y": 1667 + }, + { + "x": 321, + "y": 1698 + }, + { + "x": 304, + "y": 1698 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 1667 + }, + { + "x": 342, + "y": 1667 + }, + { + "x": 343, + "y": 1698 + }, + { + "x": 324, + "y": 1698 + } + ] + }, + "text": "H" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 346, + "y": 1665 + }, + { + "x": 363, + "y": 1665 + }, + { + "x": 364, + "y": 1696 + }, + { + "x": 347, + "y": 1696 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 1665 + }, + { + "x": 383, + "y": 1665 + }, + { + "x": 384, + "y": 1696 + }, + { + "x": 367, + "y": 1696 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 1663 + }, + { + "x": 404, + "y": 1663 + }, + { + "x": 405, + "y": 1696 + }, + { + "x": 388, + "y": 1696 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 407, + "y": 1663 + }, + { + "x": 426, + "y": 1663 + }, + { + "x": 427, + "y": 1696 + }, + { + "x": 408, + "y": 1696 + } + ] + }, + "text": "E" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "it", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 1661 + }, + { + "x": 512, + "y": 1660 + }, + { + "x": 513, + "y": 1693 + }, + { + "x": 453, + "y": 1694 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 1661 + }, + { + "x": 471, + "y": 1661 + }, + { + "x": 472, + "y": 1694 + }, + { + "x": 453, + "y": 1694 + } + ] + }, + "text": "D" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 474, + "y": 1661 + }, + { + "x": 491, + "y": 1661 + }, + { + "x": 492, + "y": 1694 + }, + { + "x": 475, + "y": 1694 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 495, + "y": 1661 + }, + { + "x": 512, + "y": 1661 + }, + { + "x": 513, + "y": 1694 + }, + { + "x": 496, + "y": 1694 + } + ] + }, + "text": "E" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 1550 + }, + { + "x": 1082, + "y": 1550 + }, + { + "x": 1082, + "y": 1681 + }, + { + "x": 952, + "y": 1681 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 1550 + }, + { + "x": 1082, + "y": 1550 + }, + { + "x": 1082, + "y": 1681 + }, + { + "x": 952, + "y": 1681 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 1554 + }, + { + "x": 1079, + "y": 1551 + }, + { + "x": 1080, + "y": 1587 + }, + { + "x": 953, + "y": 1590 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 1555 + }, + { + "x": 969, + "y": 1555 + }, + { + "x": 970, + "y": 1589 + }, + { + "x": 953, + "y": 1589 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 971, + "y": 1555 + }, + { + "x": 992, + "y": 1555 + }, + { + "x": 993, + "y": 1589 + }, + { + "x": 972, + "y": 1589 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 993, + "y": 1552 + }, + { + "x": 1009, + "y": 1552 + }, + { + "x": 1010, + "y": 1588 + }, + { + "x": 994, + "y": 1588 + } + ] + }, + "text": "7" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1012, + "y": 1552 + }, + { + "x": 1029, + "y": 1552 + }, + { + "x": 1030, + "y": 1588 + }, + { + "x": 1013, + "y": 1588 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1036, + "y": 1554 + }, + { + "x": 1055, + "y": 1554 + }, + { + "x": 1056, + "y": 1587 + }, + { + "x": 1037, + "y": 1587 + } + ] + }, + "text": "3" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1058, + "y": 1554 + }, + { + "x": 1079, + "y": 1554 + }, + { + "x": 1080, + "y": 1588 + }, + { + "x": 1059, + "y": 1588 + } + ] + }, + "text": "2" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 1602 + }, + { + "x": 1079, + "y": 1596 + }, + { + "x": 1080, + "y": 1630 + }, + { + "x": 954, + "y": 1636 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 1602 + }, + { + "x": 971, + "y": 1601 + }, + { + "x": 972, + "y": 1634 + }, + { + "x": 953, + "y": 1635 + } + ] + }, + "text": "8" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 973, + "y": 1600 + }, + { + "x": 992, + "y": 1599 + }, + { + "x": 993, + "y": 1632 + }, + { + "x": 974, + "y": 1633 + } + ] + }, + "text": "3" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 995, + "y": 1600 + }, + { + "x": 1011, + "y": 1599 + }, + { + "x": 1012, + "y": 1633 + }, + { + "x": 997, + "y": 1634 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1014, + "y": 1598 + }, + { + "x": 1030, + "y": 1597 + }, + { + "x": 1031, + "y": 1631 + }, + { + "x": 1016, + "y": 1632 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1038, + "y": 1600 + }, + { + "x": 1057, + "y": 1599 + }, + { + "x": 1058, + "y": 1632 + }, + { + "x": 1039, + "y": 1633 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1060, + "y": 1598 + }, + { + "x": 1079, + "y": 1597 + }, + { + "x": 1080, + "y": 1630 + }, + { + "x": 1061, + "y": 1631 + } + ] + }, + "text": "0" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 973, + "y": 1646 + }, + { + "x": 1078, + "y": 1641 + }, + { + "x": 1080, + "y": 1675 + }, + { + "x": 975, + "y": 1680 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 973, + "y": 1646 + }, + { + "x": 992, + "y": 1645 + }, + { + "x": 994, + "y": 1678 + }, + { + "x": 975, + "y": 1679 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 993, + "y": 1646 + }, + { + "x": 1009, + "y": 1645 + }, + { + "x": 1011, + "y": 1678 + }, + { + "x": 995, + "y": 1679 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1012, + "y": 1646 + }, + { + "x": 1028, + "y": 1645 + }, + { + "x": 1030, + "y": 1678 + }, + { + "x": 1014, + "y": 1679 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1038, + "y": 1644 + }, + { + "x": 1057, + "y": 1643 + }, + { + "x": 1059, + "y": 1676 + }, + { + "x": 1040, + "y": 1677 + } + ] + }, + "text": "6" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1060, + "y": 1644 + }, + { + "x": 1077, + "y": 1643 + }, + { + "x": 1078, + "y": 1674 + }, + { + "x": 1061, + "y": 1675 + } + ] + }, + "text": "8" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 526, + "y": 1737 + }, + { + "x": 913, + "y": 1737 + }, + { + "x": 913, + "y": 1786 + }, + { + "x": 526, + "y": 1786 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 526, + "y": 1737 + }, + { + "x": 913, + "y": 1737 + }, + { + "x": 913, + "y": 1786 + }, + { + "x": 526, + "y": 1786 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 526, + "y": 1751 + }, + { + "x": 696, + "y": 1746 + }, + { + "x": 697, + "y": 1780 + }, + { + "x": 527, + "y": 1785 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 526, + "y": 1752 + }, + { + "x": 543, + "y": 1751 + }, + { + "x": 544, + "y": 1782 + }, + { + "x": 527, + "y": 1783 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 546, + "y": 1752 + }, + { + "x": 563, + "y": 1751 + }, + { + "x": 564, + "y": 1782 + }, + { + "x": 547, + "y": 1783 + } + ] + }, + "text": "L" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 568, + "y": 1751 + }, + { + "x": 587, + "y": 1750 + }, + { + "x": 588, + "y": 1779 + }, + { + "x": 569, + "y": 1780 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 589, + "y": 1749 + }, + { + "x": 608, + "y": 1748 + }, + { + "x": 609, + "y": 1781 + }, + { + "x": 590, + "y": 1782 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 609, + "y": 1749 + }, + { + "x": 628, + "y": 1748 + }, + { + "x": 629, + "y": 1779 + }, + { + "x": 610, + "y": 1780 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 632, + "y": 1749 + }, + { + "x": 651, + "y": 1748 + }, + { + "x": 652, + "y": 1779 + }, + { + "x": 633, + "y": 1780 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 654, + "y": 1747 + }, + { + "x": 673, + "y": 1746 + }, + { + "x": 674, + "y": 1779 + }, + { + "x": 655, + "y": 1780 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 675, + "y": 1745 + }, + { + "x": 696, + "y": 1744 + }, + { + "x": 697, + "y": 1778 + }, + { + "x": 676, + "y": 1779 + } + ] + }, + "text": "D" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 719, + "y": 1744 + }, + { + "x": 909, + "y": 1738 + }, + { + "x": 910, + "y": 1772 + }, + { + "x": 720, + "y": 1778 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 719, + "y": 1745 + }, + { + "x": 738, + "y": 1744 + }, + { + "x": 739, + "y": 1775 + }, + { + "x": 720, + "y": 1776 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 741, + "y": 1745 + }, + { + "x": 757, + "y": 1744 + }, + { + "x": 758, + "y": 1775 + }, + { + "x": 742, + "y": 1776 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 764, + "y": 1745 + }, + { + "x": 781, + "y": 1744 + }, + { + "x": 782, + "y": 1775 + }, + { + "x": 765, + "y": 1776 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 786, + "y": 1742 + }, + { + "x": 802, + "y": 1741 + }, + { + "x": 803, + "y": 1774 + }, + { + "x": 787, + "y": 1775 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 807, + "y": 1742 + }, + { + "x": 826, + "y": 1741 + }, + { + "x": 827, + "y": 1774 + }, + { + "x": 808, + "y": 1775 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 829, + "y": 1740 + }, + { + "x": 848, + "y": 1739 + }, + { + "x": 849, + "y": 1772 + }, + { + "x": 830, + "y": 1773 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 849, + "y": 1740 + }, + { + "x": 868, + "y": 1739 + }, + { + "x": 869, + "y": 1773 + }, + { + "x": 850, + "y": 1774 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 870, + "y": 1742 + }, + { + "x": 889, + "y": 1741 + }, + { + "x": 890, + "y": 1772 + }, + { + "x": 871, + "y": 1773 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 892, + "y": 1740 + }, + { + "x": 909, + "y": 1739 + }, + { + "x": 910, + "y": 1770 + }, + { + "x": 893, + "y": 1771 + } + ] + }, + "text": "T" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 262, + "y": 1780 + }, + { + "x": 998, + "y": 1780 + }, + { + "x": 998, + "y": 1971 + }, + { + "x": 262, + "y": 1971 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 262, + "y": 1780 + }, + { + "x": 998, + "y": 1780 + }, + { + "x": 998, + "y": 1971 + }, + { + "x": 262, + "y": 1971 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 262, + "y": 1800 + }, + { + "x": 432, + "y": 1795 + }, + { + "x": 433, + "y": 1828 + }, + { + "x": 263, + "y": 1833 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 262, + "y": 1800 + }, + { + "x": 279, + "y": 1799 + }, + { + "x": 280, + "y": 1832 + }, + { + "x": 263, + "y": 1833 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 282, + "y": 1800 + }, + { + "x": 301, + "y": 1799 + }, + { + "x": 302, + "y": 1832 + }, + { + "x": 283, + "y": 1833 + } + ] + }, + "text": "L" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 303, + "y": 1799 + }, + { + "x": 324, + "y": 1798 + }, + { + "x": 325, + "y": 1829 + }, + { + "x": 304, + "y": 1830 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 325, + "y": 1799 + }, + { + "x": 344, + "y": 1798 + }, + { + "x": 345, + "y": 1831 + }, + { + "x": 326, + "y": 1832 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 346, + "y": 1800 + }, + { + "x": 367, + "y": 1799 + }, + { + "x": 368, + "y": 1828 + }, + { + "x": 347, + "y": 1829 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 370, + "y": 1799 + }, + { + "x": 387, + "y": 1798 + }, + { + "x": 388, + "y": 1827 + }, + { + "x": 371, + "y": 1828 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 390, + "y": 1797 + }, + { + "x": 409, + "y": 1796 + }, + { + "x": 410, + "y": 1827 + }, + { + "x": 391, + "y": 1828 + } + ] + }, + "text": "R" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 412, + "y": 1795 + }, + { + "x": 431, + "y": 1794 + }, + { + "x": 432, + "y": 1827 + }, + { + "x": 413, + "y": 1828 + } + ] + }, + "text": "D" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 455, + "y": 1797 + }, + { + "x": 582, + "y": 1793 + }, + { + "x": 583, + "y": 1826 + }, + { + "x": 456, + "y": 1830 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 455, + "y": 1797 + }, + { + "x": 474, + "y": 1796 + }, + { + "x": 475, + "y": 1827 + }, + { + "x": 456, + "y": 1828 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 478, + "y": 1795 + }, + { + "x": 497, + "y": 1794 + }, + { + "x": 498, + "y": 1825 + }, + { + "x": 479, + "y": 1826 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 500, + "y": 1795 + }, + { + "x": 517, + "y": 1794 + }, + { + "x": 518, + "y": 1827 + }, + { + "x": 501, + "y": 1828 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 520, + "y": 1793 + }, + { + "x": 539, + "y": 1792 + }, + { + "x": 540, + "y": 1825 + }, + { + "x": 521, + "y": 1826 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 543, + "y": 1793 + }, + { + "x": 562, + "y": 1792 + }, + { + "x": 563, + "y": 1825 + }, + { + "x": 544, + "y": 1826 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 563, + "y": 1793 + }, + { + "x": 582, + "y": 1792 + }, + { + "x": 583, + "y": 1823 + }, + { + "x": 564, + "y": 1824 + } + ] + }, + "text": "R" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 608, + "y": 1792 + }, + { + "x": 997, + "y": 1780 + }, + { + "x": 998, + "y": 1813 + }, + { + "x": 609, + "y": 1825 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 608, + "y": 1802 + }, + { + "x": 625, + "y": 1801 + }, + { + "x": 625, + "y": 1817 + }, + { + "x": 608, + "y": 1818 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 628, + "y": 1800 + }, + { + "x": 647, + "y": 1799 + }, + { + "x": 647, + "y": 1815 + }, + { + "x": 628, + "y": 1816 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 652, + "y": 1800 + }, + { + "x": 668, + "y": 1800 + }, + { + "x": 668, + "y": 1816 + }, + { + "x": 652, + "y": 1816 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 675, + "y": 1800 + }, + { + "x": 691, + "y": 1800 + }, + { + "x": 691, + "y": 1816 + }, + { + "x": 675, + "y": 1816 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 697, + "y": 1799 + }, + { + "x": 713, + "y": 1799 + }, + { + "x": 713, + "y": 1815 + }, + { + "x": 697, + "y": 1815 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 717, + "y": 1799 + }, + { + "x": 733, + "y": 1799 + }, + { + "x": 733, + "y": 1815 + }, + { + "x": 717, + "y": 1815 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 740, + "y": 1797 + }, + { + "x": 756, + "y": 1797 + }, + { + "x": 757, + "y": 1814 + }, + { + "x": 741, + "y": 1814 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 762, + "y": 1795 + }, + { + "x": 779, + "y": 1794 + }, + { + "x": 780, + "y": 1811 + }, + { + "x": 763, + "y": 1812 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 783, + "y": 1795 + }, + { + "x": 800, + "y": 1794 + }, + { + "x": 801, + "y": 1811 + }, + { + "x": 784, + "y": 1812 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 805, + "y": 1793 + }, + { + "x": 822, + "y": 1792 + }, + { + "x": 823, + "y": 1809 + }, + { + "x": 806, + "y": 1810 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 825, + "y": 1793 + }, + { + "x": 842, + "y": 1792 + }, + { + "x": 843, + "y": 1809 + }, + { + "x": 826, + "y": 1810 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 846, + "y": 1795 + }, + { + "x": 863, + "y": 1794 + }, + { + "x": 863, + "y": 1810 + }, + { + "x": 846, + "y": 1811 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 868, + "y": 1793 + }, + { + "x": 885, + "y": 1792 + }, + { + "x": 885, + "y": 1808 + }, + { + "x": 868, + "y": 1809 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 890, + "y": 1793 + }, + { + "x": 906, + "y": 1793 + }, + { + "x": 906, + "y": 1809 + }, + { + "x": 890, + "y": 1809 + } + ] + }, + "text": "x" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 911, + "y": 1783 + }, + { + "x": 932, + "y": 1782 + }, + { + "x": 933, + "y": 1813 + }, + { + "x": 912, + "y": 1814 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 933, + "y": 1781 + }, + { + "x": 954, + "y": 1780 + }, + { + "x": 955, + "y": 1811 + }, + { + "x": 934, + "y": 1812 + } + ] + }, + "text": "5" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 956, + "y": 1781 + }, + { + "x": 975, + "y": 1780 + }, + { + "x": 976, + "y": 1813 + }, + { + "x": 957, + "y": 1814 + } + ] + }, + "text": "8" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 978, + "y": 1780 + }, + { + "x": 997, + "y": 1779 + }, + { + "x": 998, + "y": 1812 + }, + { + "x": 979, + "y": 1813 + } + ] + }, + "text": "2" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "la", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 263, + "y": 1845 + }, + { + "x": 474, + "y": 1840 + }, + { + "x": 475, + "y": 1874 + }, + { + "x": 264, + "y": 1879 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 263, + "y": 1845 + }, + { + "x": 280, + "y": 1845 + }, + { + "x": 281, + "y": 1878 + }, + { + "x": 264, + "y": 1878 + } + ] + }, + "text": "Q" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 1845 + }, + { + "x": 303, + "y": 1845 + }, + { + "x": 304, + "y": 1877 + }, + { + "x": 285, + "y": 1878 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 306, + "y": 1843 + }, + { + "x": 323, + "y": 1843 + }, + { + "x": 324, + "y": 1876 + }, + { + "x": 307, + "y": 1876 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 327, + "y": 1845 + }, + { + "x": 344, + "y": 1845 + }, + { + "x": 345, + "y": 1878 + }, + { + "x": 328, + "y": 1878 + } + ] + }, + "text": "L" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 349, + "y": 1843 + }, + { + "x": 366, + "y": 1843 + }, + { + "x": 367, + "y": 1876 + }, + { + "x": 350, + "y": 1876 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 370, + "y": 1841 + }, + { + "x": 389, + "y": 1841 + }, + { + "x": 390, + "y": 1873 + }, + { + "x": 371, + "y": 1874 + } + ] + }, + "text": "F" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 394, + "y": 1843 + }, + { + "x": 408, + "y": 1843 + }, + { + "x": 409, + "y": 1872 + }, + { + "x": 395, + "y": 1872 + } + ] + }, + "text": "V" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 414, + "y": 1841 + }, + { + "x": 431, + "y": 1841 + }, + { + "x": 432, + "y": 1875 + }, + { + "x": 415, + "y": 1875 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 435, + "y": 1840 + }, + { + "x": 454, + "y": 1840 + }, + { + "x": 455, + "y": 1873 + }, + { + "x": 436, + "y": 1874 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 457, + "y": 1841 + }, + { + "x": 474, + "y": 1841 + }, + { + "x": 475, + "y": 1874 + }, + { + "x": 458, + "y": 1874 + } + ] + }, + "text": "G" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 500, + "y": 1838 + }, + { + "x": 606, + "y": 1835 + }, + { + "x": 607, + "y": 1869 + }, + { + "x": 501, + "y": 1872 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 500, + "y": 1840 + }, + { + "x": 519, + "y": 1840 + }, + { + "x": 520, + "y": 1870 + }, + { + "x": 501, + "y": 1871 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 522, + "y": 1840 + }, + { + "x": 539, + "y": 1840 + }, + { + "x": 540, + "y": 1871 + }, + { + "x": 523, + "y": 1871 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 544, + "y": 1838 + }, + { + "x": 561, + "y": 1838 + }, + { + "x": 562, + "y": 1872 + }, + { + "x": 545, + "y": 1872 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 565, + "y": 1838 + }, + { + "x": 584, + "y": 1838 + }, + { + "x": 585, + "y": 1870 + }, + { + "x": 566, + "y": 1871 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 587, + "y": 1838 + }, + { + "x": 606, + "y": 1838 + }, + { + "x": 607, + "y": 1870 + }, + { + "x": 588, + "y": 1871 + } + ] + }, + "text": "D" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 262, + "y": 1891 + }, + { + "x": 389, + "y": 1889 + }, + { + "x": 390, + "y": 1922 + }, + { + "x": 263, + "y": 1924 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 262, + "y": 1891 + }, + { + "x": 281, + "y": 1891 + }, + { + "x": 282, + "y": 1924 + }, + { + "x": 263, + "y": 1924 + } + ] + }, + "text": "P" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 284, + "y": 1891 + }, + { + "x": 303, + "y": 1891 + }, + { + "x": 304, + "y": 1924 + }, + { + "x": 285, + "y": 1924 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 306, + "y": 1889 + }, + { + "x": 325, + "y": 1889 + }, + { + "x": 326, + "y": 1922 + }, + { + "x": 307, + "y": 1922 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 328, + "y": 1889 + }, + { + "x": 347, + "y": 1889 + }, + { + "x": 348, + "y": 1922 + }, + { + "x": 329, + "y": 1922 + } + ] + }, + "text": "N" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 349, + "y": 1889 + }, + { + "x": 368, + "y": 1889 + }, + { + "x": 369, + "y": 1922 + }, + { + "x": 350, + "y": 1922 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 371, + "y": 1889 + }, + { + "x": 388, + "y": 1889 + }, + { + "x": 389, + "y": 1922 + }, + { + "x": 372, + "y": 1922 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 412, + "y": 1888 + }, + { + "x": 498, + "y": 1886 + }, + { + "x": 499, + "y": 1919 + }, + { + "x": 413, + "y": 1921 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 412, + "y": 1888 + }, + { + "x": 433, + "y": 1888 + }, + { + "x": 434, + "y": 1921 + }, + { + "x": 413, + "y": 1921 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 436, + "y": 1888 + }, + { + "x": 453, + "y": 1888 + }, + { + "x": 454, + "y": 1921 + }, + { + "x": 437, + "y": 1921 + } + ] + }, + "text": "H" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 457, + "y": 1888 + }, + { + "x": 476, + "y": 1888 + }, + { + "x": 477, + "y": 1921 + }, + { + "x": 458, + "y": 1921 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 479, + "y": 1888 + }, + { + "x": 498, + "y": 1888 + }, + { + "x": 499, + "y": 1921 + }, + { + "x": 480, + "y": 1921 + } + ] + }, + "text": "S" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 522, + "y": 1883 + }, + { + "x": 625, + "y": 1881 + }, + { + "x": 626, + "y": 1915 + }, + { + "x": 523, + "y": 1917 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 522, + "y": 1886 + }, + { + "x": 539, + "y": 1886 + }, + { + "x": 540, + "y": 1915 + }, + { + "x": 523, + "y": 1915 + } + ] + }, + "text": "V" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 544, + "y": 1884 + }, + { + "x": 563, + "y": 1884 + }, + { + "x": 564, + "y": 1917 + }, + { + "x": 545, + "y": 1917 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 567, + "y": 1884 + }, + { + "x": 584, + "y": 1884 + }, + { + "x": 585, + "y": 1917 + }, + { + "x": 568, + "y": 1917 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 587, + "y": 1881 + }, + { + "x": 604, + "y": 1881 + }, + { + "x": 605, + "y": 1915 + }, + { + "x": 588, + "y": 1915 + } + ] + }, + "text": "I" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 608, + "y": 1881 + }, + { + "x": 625, + "y": 1881 + }, + { + "x": 626, + "y": 1914 + }, + { + "x": 609, + "y": 1914 + } + ] + }, + "text": "T" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 265, + "y": 1936 + }, + { + "x": 366, + "y": 1934 + }, + { + "x": 367, + "y": 1968 + }, + { + "x": 266, + "y": 1970 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 265, + "y": 1936 + }, + { + "x": 279, + "y": 1936 + }, + { + "x": 280, + "y": 1970 + }, + { + "x": 266, + "y": 1970 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 286, + "y": 1936 + }, + { + "x": 303, + "y": 1936 + }, + { + "x": 304, + "y": 1970 + }, + { + "x": 287, + "y": 1970 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 306, + "y": 1934 + }, + { + "x": 323, + "y": 1934 + }, + { + "x": 324, + "y": 1968 + }, + { + "x": 307, + "y": 1968 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 328, + "y": 1934 + }, + { + "x": 345, + "y": 1934 + }, + { + "x": 346, + "y": 1968 + }, + { + "x": 329, + "y": 1968 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 349, + "y": 1934 + }, + { + "x": 366, + "y": 1934 + }, + { + "x": 367, + "y": 1968 + }, + { + "x": 350, + "y": 1968 + } + ] + }, + "text": "L" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 394, + "y": 1932 + }, + { + "x": 434, + "y": 1931 + }, + { + "x": 435, + "y": 1965 + }, + { + "x": 395, + "y": 1966 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 394, + "y": 1932 + }, + { + "x": 413, + "y": 1932 + }, + { + "x": 414, + "y": 1966 + }, + { + "x": 395, + "y": 1966 + } + ] + }, + "text": "U" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 416, + "y": 1932 + }, + { + "x": 433, + "y": 1932 + }, + { + "x": 434, + "y": 1966 + }, + { + "x": 417, + "y": 1966 + } + ] + }, + "text": "P" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 459, + "y": 1932 + }, + { + "x": 502, + "y": 1931 + }, + { + "x": 503, + "y": 1965 + }, + { + "x": 460, + "y": 1966 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 459, + "y": 1932 + }, + { + "x": 480, + "y": 1932 + }, + { + "x": 481, + "y": 1966 + }, + { + "x": 460, + "y": 1966 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 483, + "y": 1930 + }, + { + "x": 502, + "y": 1930 + }, + { + "x": 503, + "y": 1964 + }, + { + "x": 484, + "y": 1964 + } + ] + }, + "text": "O" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 1929 + }, + { + "x": 696, + "y": 1926 + }, + { + "x": 697, + "y": 1962 + }, + { + "x": 525, + "y": 1965 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 1930 + }, + { + "x": 543, + "y": 1930 + }, + { + "x": 544, + "y": 1964 + }, + { + "x": 525, + "y": 1964 + } + ] + }, + "text": "0" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 546, + "y": 1930 + }, + { + "x": 565, + "y": 1930 + }, + { + "x": 566, + "y": 1964 + }, + { + "x": 547, + "y": 1964 + } + ] + }, + "text": "7" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 568, + "y": 1930 + }, + { + "x": 587, + "y": 1930 + }, + { + "x": 588, + "y": 1961 + }, + { + "x": 569, + "y": 1961 + } + ] + }, + "text": "/" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 592, + "y": 1929 + }, + { + "x": 604, + "y": 1929 + }, + { + "x": 605, + "y": 1963 + }, + { + "x": 593, + "y": 1963 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 613, + "y": 1930 + }, + { + "x": 629, + "y": 1930 + }, + { + "x": 630, + "y": 1961 + }, + { + "x": 614, + "y": 1961 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 633, + "y": 1929 + }, + { + "x": 650, + "y": 1929 + }, + { + "x": 651, + "y": 1960 + }, + { + "x": 634, + "y": 1960 + } + ] + }, + "text": "/" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 654, + "y": 1927 + }, + { + "x": 670, + "y": 1927 + }, + { + "x": 671, + "y": 1958 + }, + { + "x": 655, + "y": 1958 + } + ] + }, + "text": "1" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 675, + "y": 1925 + }, + { + "x": 696, + "y": 1925 + }, + { + "x": 697, + "y": 1958 + }, + { + "x": 676, + "y": 1958 + } + ] + }, + "text": "6" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 957, + "y": 1821 + }, + { + "x": 1085, + "y": 1821 + }, + { + "x": 1085, + "y": 1906 + }, + { + "x": 957, + "y": 1906 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 957, + "y": 1821 + }, + { + "x": 1085, + "y": 1821 + }, + { + "x": 1085, + "y": 1906 + }, + { + "x": 957, + "y": 1906 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 957, + "y": 1826 + }, + { + "x": 1081, + "y": 1821 + }, + { + "x": 1082, + "y": 1857 + }, + { + "x": 958, + "y": 1862 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 957, + "y": 1828 + }, + { + "x": 978, + "y": 1827 + }, + { + "x": 979, + "y": 1860 + }, + { + "x": 958, + "y": 1861 + } + ] + }, + "text": "£" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 981, + "y": 1826 + }, + { + "x": 1000, + "y": 1825 + }, + { + "x": 1001, + "y": 1858 + }, + { + "x": 982, + "y": 1859 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1002, + "y": 1824 + }, + { + "x": 1018, + "y": 1823 + }, + { + "x": 1019, + "y": 1857 + }, + { + "x": 1003, + "y": 1858 + } + ] + }, + "text": "7" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1033, + "y": 1850 + }, + { + "x": 1040, + "y": 1850 + }, + { + "x": 1040, + "y": 1857 + }, + { + "x": 1033, + "y": 1857 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1041, + "y": 1824 + }, + { + "x": 1060, + "y": 1823 + }, + { + "x": 1061, + "y": 1857 + }, + { + "x": 1042, + "y": 1858 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1064, + "y": 1824 + }, + { + "x": 1081, + "y": 1823 + }, + { + "x": 1082, + "y": 1857 + }, + { + "x": 1065, + "y": 1858 + } + ] + }, + "text": "7" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1046, + "y": 1869 + }, + { + "x": 1085, + "y": 1869 + }, + { + "x": 1085, + "y": 1906 + }, + { + "x": 1046, + "y": 1906 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1046, + "y": 1869 + }, + { + "x": 1064, + "y": 1869 + }, + { + "x": 1064, + "y": 1906 + }, + { + "x": 1046, + "y": 1906 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1067, + "y": 1869 + }, + { + "x": 1085, + "y": 1869 + }, + { + "x": 1085, + "y": 1906 + }, + { + "x": 1067, + "y": 1906 + } + ] + }, + "text": "7" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 568, + "y": 2092 + }, + { + "x": 854, + "y": 2092 + }, + { + "x": 854, + "y": 2271 + }, + { + "x": 568, + "y": 2271 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 568, + "y": 2092 + }, + { + "x": 854, + "y": 2092 + }, + { + "x": 854, + "y": 2271 + }, + { + "x": 568, + "y": 2271 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 639, + "y": 2092 + }, + { + "x": 774, + "y": 2092 + }, + { + "x": 774, + "y": 2121 + }, + { + "x": 639, + "y": 2121 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 639, + "y": 2095 + }, + { + "x": 666, + "y": 2095 + }, + { + "x": 666, + "y": 2120 + }, + { + "x": 639, + "y": 2120 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 668, + "y": 2095 + }, + { + "x": 691, + "y": 2095 + }, + { + "x": 691, + "y": 2120 + }, + { + "x": 668, + "y": 2120 + } + ] + }, + "text": "E" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 692, + "y": 2093 + }, + { + "x": 715, + "y": 2093 + }, + { + "x": 715, + "y": 2120 + }, + { + "x": 692, + "y": 2120 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 716, + "y": 2092 + }, + { + "x": 743, + "y": 2092 + }, + { + "x": 743, + "y": 2121 + }, + { + "x": 716, + "y": 2121 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 745, + "y": 2092 + }, + { + "x": 774, + "y": 2092 + }, + { + "x": 774, + "y": 2121 + }, + { + "x": 745, + "y": 2121 + } + ] + }, + "text": "O" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 632, + "y": 2162 + }, + { + "x": 756, + "y": 2167 + }, + { + "x": 754, + "y": 2213 + }, + { + "x": 630, + "y": 2208 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 632, + "y": 2162 + }, + { + "x": 658, + "y": 2163 + }, + { + "x": 656, + "y": 2209 + }, + { + "x": 630, + "y": 2208 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 661, + "y": 2163 + }, + { + "x": 690, + "y": 2164 + }, + { + "x": 688, + "y": 2210 + }, + { + "x": 659, + "y": 2209 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 692, + "y": 2174 + }, + { + "x": 721, + "y": 2175 + }, + { + "x": 719, + "y": 2209 + }, + { + "x": 691, + "y": 2208 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 724, + "y": 2172 + }, + { + "x": 755, + "y": 2173 + }, + { + "x": 754, + "y": 2206 + }, + { + "x": 723, + "y": 2205 + } + ] + }, + "text": "n" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 568, + "y": 2220 + }, + { + "x": 851, + "y": 2208 + }, + { + "x": 853, + "y": 2258 + }, + { + "x": 570, + "y": 2270 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 568, + "y": 2220 + }, + { + "x": 606, + "y": 2218 + }, + { + "x": 608, + "y": 2264 + }, + { + "x": 570, + "y": 2266 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 611, + "y": 2232 + }, + { + "x": 639, + "y": 2231 + }, + { + "x": 640, + "y": 2264 + }, + { + "x": 612, + "y": 2265 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 644, + "y": 2230 + }, + { + "x": 672, + "y": 2229 + }, + { + "x": 673, + "y": 2262 + }, + { + "x": 645, + "y": 2263 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 678, + "y": 2230 + }, + { + "x": 697, + "y": 2229 + }, + { + "x": 698, + "y": 2260 + }, + { + "x": 679, + "y": 2261 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 700, + "y": 2229 + }, + { + "x": 726, + "y": 2228 + }, + { + "x": 727, + "y": 2262 + }, + { + "x": 701, + "y": 2263 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 731, + "y": 2229 + }, + { + "x": 762, + "y": 2228 + }, + { + "x": 763, + "y": 2261 + }, + { + "x": 732, + "y": 2262 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 765, + "y": 2220 + }, + { + "x": 786, + "y": 2219 + }, + { + "x": 788, + "y": 2259 + }, + { + "x": 767, + "y": 2260 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 791, + "y": 2225 + }, + { + "x": 819, + "y": 2224 + }, + { + "x": 820, + "y": 2257 + }, + { + "x": 792, + "y": 2258 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 822, + "y": 2227 + }, + { + "x": 851, + "y": 2226 + }, + { + "x": 852, + "y": 2259 + }, + { + "x": 823, + "y": 2260 + } + ] + }, + "text": "e" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 2467 + }, + { + "x": 1005, + "y": 2467 + }, + { + "x": 1005, + "y": 2595 + }, + { + "x": 447, + "y": 2595 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 2467 + }, + { + "x": 1005, + "y": 2467 + }, + { + "x": 1005, + "y": 2595 + }, + { + "x": 447, + "y": 2595 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 2474 + }, + { + "x": 655, + "y": 2468 + }, + { + "x": 656, + "y": 2506 + }, + { + "x": 448, + "y": 2512 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 2474 + }, + { + "x": 478, + "y": 2473 + }, + { + "x": 479, + "y": 2507 + }, + { + "x": 448, + "y": 2508 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 488, + "y": 2482 + }, + { + "x": 524, + "y": 2481 + }, + { + "x": 525, + "y": 2505 + }, + { + "x": 489, + "y": 2506 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 532, + "y": 2472 + }, + { + "x": 568, + "y": 2471 + }, + { + "x": 569, + "y": 2504 + }, + { + "x": 533, + "y": 2505 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 577, + "y": 2479 + }, + { + "x": 611, + "y": 2478 + }, + { + "x": 612, + "y": 2504 + }, + { + "x": 578, + "y": 2505 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 621, + "y": 2479 + }, + { + "x": 654, + "y": 2478 + }, + { + "x": 655, + "y": 2506 + }, + { + "x": 622, + "y": 2507 + } + ] + }, + "text": "y" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 705, + "y": 2475 + }, + { + "x": 784, + "y": 2473 + }, + { + "x": 785, + "y": 2497 + }, + { + "x": 706, + "y": 2499 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 705, + "y": 2475 + }, + { + "x": 739, + "y": 2474 + }, + { + "x": 740, + "y": 2498 + }, + { + "x": 706, + "y": 2499 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 748, + "y": 2475 + }, + { + "x": 784, + "y": 2474 + }, + { + "x": 785, + "y": 2498 + }, + { + "x": 749, + "y": 2499 + } + ] + }, + "text": "e" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 836, + "y": 2472 + }, + { + "x": 1004, + "y": 2467 + }, + { + "x": 1005, + "y": 2493 + }, + { + "x": 837, + "y": 2498 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 836, + "y": 2472 + }, + { + "x": 872, + "y": 2471 + }, + { + "x": 873, + "y": 2495 + }, + { + "x": 837, + "y": 2496 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 880, + "y": 2470 + }, + { + "x": 914, + "y": 2469 + }, + { + "x": 915, + "y": 2493 + }, + { + "x": 881, + "y": 2494 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 923, + "y": 2468 + }, + { + "x": 957, + "y": 2467 + }, + { + "x": 958, + "y": 2491 + }, + { + "x": 924, + "y": 2492 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 2468 + }, + { + "x": 1004, + "y": 2467 + }, + { + "x": 1005, + "y": 2493 + }, + { + "x": 969, + "y": 2494 + } + ] + }, + "text": "e" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 603, + "y": 2513 + }, + { + "x": 637, + "y": 2512 + }, + { + "x": 638, + "y": 2546 + }, + { + "x": 604, + "y": 2547 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 603, + "y": 2513 + }, + { + "x": 637, + "y": 2512 + }, + { + "x": 638, + "y": 2546 + }, + { + "x": 604, + "y": 2547 + } + ] + }, + "text": "E" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 685, + "y": 2511 + }, + { + "x": 853, + "y": 2505 + }, + { + "x": 854, + "y": 2539 + }, + { + "x": 686, + "y": 2545 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 685, + "y": 2511 + }, + { + "x": 723, + "y": 2510 + }, + { + "x": 724, + "y": 2543 + }, + { + "x": 686, + "y": 2544 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 743, + "y": 2535 + }, + { + "x": 753, + "y": 2535 + }, + { + "x": 753, + "y": 2544 + }, + { + "x": 743, + "y": 2544 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 772, + "y": 2510 + }, + { + "x": 810, + "y": 2509 + }, + { + "x": 811, + "y": 2542 + }, + { + "x": 773, + "y": 2543 + } + ] + }, + "text": "3" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 815, + "y": 2508 + }, + { + "x": 853, + "y": 2507 + }, + { + "x": 854, + "y": 2540 + }, + { + "x": 816, + "y": 2541 + } + ] + }, + "text": "5" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 582, + "y": 2561 + }, + { + "x": 873, + "y": 2554 + }, + { + "x": 874, + "y": 2587 + }, + { + "x": 583, + "y": 2594 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 582, + "y": 2570 + }, + { + "x": 616, + "y": 2569 + }, + { + "x": 617, + "y": 2593 + }, + { + "x": 583, + "y": 2594 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 623, + "y": 2559 + }, + { + "x": 659, + "y": 2558 + }, + { + "x": 660, + "y": 2591 + }, + { + "x": 624, + "y": 2592 + } + ] + }, + "text": "h" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 666, + "y": 2568 + }, + { + "x": 700, + "y": 2567 + }, + { + "x": 701, + "y": 2589 + }, + { + "x": 667, + "y": 2590 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 709, + "y": 2566 + }, + { + "x": 745, + "y": 2565 + }, + { + "x": 746, + "y": 2589 + }, + { + "x": 710, + "y": 2590 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 753, + "y": 2564 + }, + { + "x": 787, + "y": 2563 + }, + { + "x": 788, + "y": 2587 + }, + { + "x": 754, + "y": 2588 + } + ] + }, + "text": "p" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 796, + "y": 2564 + }, + { + "x": 830, + "y": 2563 + }, + { + "x": 831, + "y": 2587 + }, + { + "x": 797, + "y": 2588 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 839, + "y": 2563 + }, + { + "x": 873, + "y": 2562 + }, + { + "x": 874, + "y": 2586 + }, + { + "x": 840, + "y": 2587 + } + ] + }, + "text": "r" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 380, + "y": 2640 + }, + { + "x": 1104, + "y": 2640 + }, + { + "x": 1104, + "y": 2741 + }, + { + "x": 380, + "y": 2741 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 380, + "y": 2640 + }, + { + "x": 1104, + "y": 2640 + }, + { + "x": 1104, + "y": 2741 + }, + { + "x": 380, + "y": 2741 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 380, + "y": 2667 + }, + { + "x": 414, + "y": 2666 + }, + { + "x": 415, + "y": 2688 + }, + { + "x": 381, + "y": 2689 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 380, + "y": 2667 + }, + { + "x": 396, + "y": 2667 + }, + { + "x": 397, + "y": 2689 + }, + { + "x": 381, + "y": 2689 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 399, + "y": 2667 + }, + { + "x": 415, + "y": 2667 + }, + { + "x": 416, + "y": 2689 + }, + { + "x": 400, + "y": 2689 + } + ] + }, + "text": "n" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 440, + "y": 2664 + }, + { + "x": 521, + "y": 2662 + }, + { + "x": 522, + "y": 2691 + }, + { + "x": 441, + "y": 2693 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 440, + "y": 2666 + }, + { + "x": 457, + "y": 2666 + }, + { + "x": 458, + "y": 2694 + }, + { + "x": 441, + "y": 2694 + } + ] + }, + "text": "y" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 460, + "y": 2666 + }, + { + "x": 479, + "y": 2666 + }, + { + "x": 480, + "y": 2688 + }, + { + "x": 461, + "y": 2688 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 483, + "y": 2664 + }, + { + "x": 502, + "y": 2664 + }, + { + "x": 503, + "y": 2686 + }, + { + "x": 484, + "y": 2686 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 505, + "y": 2662 + }, + { + "x": 521, + "y": 2662 + }, + { + "x": 522, + "y": 2684 + }, + { + "x": 506, + "y": 2684 + } + ] + }, + "text": "r" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 548, + "y": 2652 + }, + { + "x": 696, + "y": 2648 + }, + { + "x": 697, + "y": 2679 + }, + { + "x": 549, + "y": 2683 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 548, + "y": 2654 + }, + { + "x": 567, + "y": 2654 + }, + { + "x": 568, + "y": 2682 + }, + { + "x": 549, + "y": 2683 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 570, + "y": 2659 + }, + { + "x": 587, + "y": 2659 + }, + { + "x": 588, + "y": 2683 + }, + { + "x": 571, + "y": 2683 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 592, + "y": 2660 + }, + { + "x": 609, + "y": 2660 + }, + { + "x": 610, + "y": 2682 + }, + { + "x": 593, + "y": 2682 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 613, + "y": 2659 + }, + { + "x": 630, + "y": 2659 + }, + { + "x": 631, + "y": 2681 + }, + { + "x": 614, + "y": 2681 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 635, + "y": 2652 + }, + { + "x": 652, + "y": 2652 + }, + { + "x": 653, + "y": 2681 + }, + { + "x": 636, + "y": 2681 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 657, + "y": 2659 + }, + { + "x": 674, + "y": 2659 + }, + { + "x": 675, + "y": 2680 + }, + { + "x": 658, + "y": 2680 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 678, + "y": 2650 + }, + { + "x": 695, + "y": 2650 + }, + { + "x": 696, + "y": 2681 + }, + { + "x": 679, + "y": 2681 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 721, + "y": 2648 + }, + { + "x": 845, + "y": 2645 + }, + { + "x": 846, + "y": 2676 + }, + { + "x": 722, + "y": 2679 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 721, + "y": 2648 + }, + { + "x": 738, + "y": 2648 + }, + { + "x": 739, + "y": 2679 + }, + { + "x": 722, + "y": 2679 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 743, + "y": 2657 + }, + { + "x": 760, + "y": 2657 + }, + { + "x": 761, + "y": 2679 + }, + { + "x": 744, + "y": 2679 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 764, + "y": 2655 + }, + { + "x": 781, + "y": 2655 + }, + { + "x": 782, + "y": 2677 + }, + { + "x": 765, + "y": 2677 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 786, + "y": 2648 + }, + { + "x": 803, + "y": 2648 + }, + { + "x": 804, + "y": 2677 + }, + { + "x": 787, + "y": 2677 + } + ] + }, + "text": "k" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 808, + "y": 2655 + }, + { + "x": 825, + "y": 2655 + }, + { + "x": 826, + "y": 2676 + }, + { + "x": 809, + "y": 2676 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 830, + "y": 2648 + }, + { + "x": 844, + "y": 2648 + }, + { + "x": 845, + "y": 2676 + }, + { + "x": 831, + "y": 2676 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 872, + "y": 2645 + }, + { + "x": 1040, + "y": 2641 + }, + { + "x": 1041, + "y": 2675 + }, + { + "x": 873, + "y": 2679 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 872, + "y": 2654 + }, + { + "x": 891, + "y": 2654 + }, + { + "x": 892, + "y": 2675 + }, + { + "x": 873, + "y": 2675 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 894, + "y": 2652 + }, + { + "x": 913, + "y": 2652 + }, + { + "x": 914, + "y": 2673 + }, + { + "x": 895, + "y": 2673 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 916, + "y": 2652 + }, + { + "x": 933, + "y": 2652 + }, + { + "x": 934, + "y": 2674 + }, + { + "x": 917, + "y": 2674 + } + ] + }, + "text": "m" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 937, + "y": 2652 + }, + { + "x": 954, + "y": 2652 + }, + { + "x": 955, + "y": 2678 + }, + { + "x": 938, + "y": 2678 + } + ] + }, + "text": "p" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 959, + "y": 2650 + }, + { + "x": 976, + "y": 2650 + }, + { + "x": 977, + "y": 2672 + }, + { + "x": 960, + "y": 2672 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 981, + "y": 2648 + }, + { + "x": 998, + "y": 2648 + }, + { + "x": 999, + "y": 2672 + }, + { + "x": 982, + "y": 2672 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1004, + "y": 2648 + }, + { + "x": 1020, + "y": 2648 + }, + { + "x": 1021, + "y": 2672 + }, + { + "x": 1005, + "y": 2672 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1022, + "y": 2640 + }, + { + "x": 1039, + "y": 2640 + }, + { + "x": 1040, + "y": 2671 + }, + { + "x": 1023, + "y": 2671 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1067, + "y": 2643 + }, + { + "x": 1103, + "y": 2642 + }, + { + "x": 1104, + "y": 2670 + }, + { + "x": 1068, + "y": 2671 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1067, + "y": 2643 + }, + { + "x": 1084, + "y": 2643 + }, + { + "x": 1085, + "y": 2671 + }, + { + "x": 1068, + "y": 2671 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1087, + "y": 2642 + }, + { + "x": 1103, + "y": 2642 + }, + { + "x": 1104, + "y": 2670 + }, + { + "x": 1088, + "y": 2670 + } + ] + }, + "text": "o" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 404, + "y": 2703 + }, + { + "x": 497, + "y": 2700 + }, + { + "x": 498, + "y": 2736 + }, + { + "x": 405, + "y": 2739 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 404, + "y": 2703 + }, + { + "x": 420, + "y": 2702 + }, + { + "x": 421, + "y": 2733 + }, + { + "x": 405, + "y": 2734 + } + ] + }, + "text": "A" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 423, + "y": 2703 + }, + { + "x": 437, + "y": 2703 + }, + { + "x": 438, + "y": 2734 + }, + { + "x": 424, + "y": 2734 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 442, + "y": 2701 + }, + { + "x": 461, + "y": 2700 + }, + { + "x": 462, + "y": 2731 + }, + { + "x": 443, + "y": 2732 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 464, + "y": 2708 + }, + { + "x": 481, + "y": 2707 + }, + { + "x": 482, + "y": 2731 + }, + { + "x": 465, + "y": 2732 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 493, + "y": 2727 + }, + { + "x": 498, + "y": 2727 + }, + { + "x": 498, + "y": 2736 + }, + { + "x": 493, + "y": 2736 + } + ] + }, + "text": "," + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 529, + "y": 2696 + }, + { + "x": 719, + "y": 2690 + }, + { + "x": 720, + "y": 2724 + }, + { + "x": 530, + "y": 2730 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 529, + "y": 2700 + }, + { + "x": 548, + "y": 2699 + }, + { + "x": 549, + "y": 2728 + }, + { + "x": 530, + "y": 2729 + } + ] + }, + "text": "M" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 551, + "y": 2698 + }, + { + "x": 568, + "y": 2697 + }, + { + "x": 569, + "y": 2726 + }, + { + "x": 552, + "y": 2727 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 572, + "y": 2703 + }, + { + "x": 589, + "y": 2702 + }, + { + "x": 590, + "y": 2726 + }, + { + "x": 573, + "y": 2727 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 594, + "y": 2703 + }, + { + "x": 611, + "y": 2702 + }, + { + "x": 612, + "y": 2726 + }, + { + "x": 595, + "y": 2727 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 620, + "y": 2693 + }, + { + "x": 625, + "y": 2693 + }, + { + "x": 626, + "y": 2726 + }, + { + "x": 621, + "y": 2726 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 637, + "y": 2703 + }, + { + "x": 654, + "y": 2702 + }, + { + "x": 655, + "y": 2724 + }, + { + "x": 638, + "y": 2725 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 657, + "y": 2701 + }, + { + "x": 676, + "y": 2700 + }, + { + "x": 677, + "y": 2722 + }, + { + "x": 658, + "y": 2723 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 680, + "y": 2701 + }, + { + "x": 697, + "y": 2700 + }, + { + "x": 698, + "y": 2724 + }, + { + "x": 681, + "y": 2725 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 700, + "y": 2701 + }, + { + "x": 719, + "y": 2700 + }, + { + "x": 720, + "y": 2724 + }, + { + "x": 701, + "y": 2725 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 745, + "y": 2693 + }, + { + "x": 807, + "y": 2691 + }, + { + "x": 808, + "y": 2722 + }, + { + "x": 746, + "y": 2724 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 745, + "y": 2700 + }, + { + "x": 764, + "y": 2699 + }, + { + "x": 765, + "y": 2723 + }, + { + "x": 746, + "y": 2724 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 767, + "y": 2698 + }, + { + "x": 784, + "y": 2697 + }, + { + "x": 785, + "y": 2721 + }, + { + "x": 768, + "y": 2722 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 789, + "y": 2691 + }, + { + "x": 806, + "y": 2690 + }, + { + "x": 807, + "y": 2721 + }, + { + "x": 790, + "y": 2722 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 832, + "y": 2688 + }, + { + "x": 1064, + "y": 2681 + }, + { + "x": 1065, + "y": 2719 + }, + { + "x": 833, + "y": 2726 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 832, + "y": 2690 + }, + { + "x": 849, + "y": 2689 + }, + { + "x": 850, + "y": 2722 + }, + { + "x": 833, + "y": 2723 + } + ] + }, + "text": "S" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 853, + "y": 2690 + }, + { + "x": 872, + "y": 2689 + }, + { + "x": 873, + "y": 2722 + }, + { + "x": 854, + "y": 2723 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 878, + "y": 2688 + }, + { + "x": 883, + "y": 2688 + }, + { + "x": 884, + "y": 2719 + }, + { + "x": 879, + "y": 2719 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 896, + "y": 2696 + }, + { + "x": 913, + "y": 2695 + }, + { + "x": 914, + "y": 2717 + }, + { + "x": 897, + "y": 2718 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 916, + "y": 2696 + }, + { + "x": 935, + "y": 2695 + }, + { + "x": 936, + "y": 2717 + }, + { + "x": 917, + "y": 2718 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 938, + "y": 2686 + }, + { + "x": 957, + "y": 2685 + }, + { + "x": 958, + "y": 2718 + }, + { + "x": 939, + "y": 2719 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 961, + "y": 2695 + }, + { + "x": 980, + "y": 2694 + }, + { + "x": 981, + "y": 2718 + }, + { + "x": 962, + "y": 2719 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 983, + "y": 2693 + }, + { + "x": 1000, + "y": 2692 + }, + { + "x": 1001, + "y": 2716 + }, + { + "x": 984, + "y": 2717 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1004, + "y": 2693 + }, + { + "x": 1021, + "y": 2692 + }, + { + "x": 1022, + "y": 2720 + }, + { + "x": 1005, + "y": 2721 + } + ] + }, + "text": "y" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1033, + "y": 2681 + }, + { + "x": 1047, + "y": 2681 + }, + { + "x": 1048, + "y": 2714 + }, + { + "x": 1034, + "y": 2714 + } + ] + }, + "text": "'" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1050, + "y": 2681 + }, + { + "x": 1064, + "y": 2681 + }, + { + "x": 1065, + "y": 2714 + }, + { + "x": 1051, + "y": 2714 + } + ] + }, + "text": "s" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 351, + "y": 2770 + }, + { + "x": 1146, + "y": 2770 + }, + { + "x": 1146, + "y": 2910 + }, + { + "x": 351, + "y": 2910 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 351, + "y": 2770 + }, + { + "x": 1146, + "y": 2770 + }, + { + "x": 1146, + "y": 2910 + }, + { + "x": 351, + "y": 2910 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 351, + "y": 2792 + }, + { + "x": 409, + "y": 2790 + }, + { + "x": 410, + "y": 2821 + }, + { + "x": 352, + "y": 2823 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 351, + "y": 2792 + }, + { + "x": 368, + "y": 2792 + }, + { + "x": 369, + "y": 2823 + }, + { + "x": 352, + "y": 2823 + } + ] + }, + "text": "O" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 371, + "y": 2792 + }, + { + "x": 388, + "y": 2792 + }, + { + "x": 389, + "y": 2823 + }, + { + "x": 372, + "y": 2823 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 392, + "y": 2797 + }, + { + "x": 409, + "y": 2797 + }, + { + "x": 410, + "y": 2821 + }, + { + "x": 393, + "y": 2821 + } + ] + }, + "text": "r" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 435, + "y": 2789 + }, + { + "x": 540, + "y": 2786 + }, + { + "x": 541, + "y": 2819 + }, + { + "x": 436, + "y": 2822 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 435, + "y": 2789 + }, + { + "x": 452, + "y": 2789 + }, + { + "x": 453, + "y": 2820 + }, + { + "x": 436, + "y": 2820 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 455, + "y": 2787 + }, + { + "x": 471, + "y": 2787 + }, + { + "x": 472, + "y": 2818 + }, + { + "x": 456, + "y": 2818 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 476, + "y": 2796 + }, + { + "x": 495, + "y": 2796 + }, + { + "x": 496, + "y": 2819 + }, + { + "x": 477, + "y": 2820 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 500, + "y": 2796 + }, + { + "x": 517, + "y": 2796 + }, + { + "x": 518, + "y": 2818 + }, + { + "x": 501, + "y": 2818 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 520, + "y": 2787 + }, + { + "x": 539, + "y": 2787 + }, + { + "x": 540, + "y": 2815 + }, + { + "x": 521, + "y": 2816 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 563, + "y": 2785 + }, + { + "x": 753, + "y": 2780 + }, + { + "x": 754, + "y": 2811 + }, + { + "x": 564, + "y": 2816 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 563, + "y": 2785 + }, + { + "x": 579, + "y": 2785 + }, + { + "x": 580, + "y": 2814 + }, + { + "x": 564, + "y": 2814 + } + ] + }, + "text": "G" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 584, + "y": 2791 + }, + { + "x": 601, + "y": 2791 + }, + { + "x": 602, + "y": 2813 + }, + { + "x": 585, + "y": 2813 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 604, + "y": 2791 + }, + { + "x": 623, + "y": 2791 + }, + { + "x": 624, + "y": 2812 + }, + { + "x": 605, + "y": 2813 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 627, + "y": 2791 + }, + { + "x": 643, + "y": 2791 + }, + { + "x": 644, + "y": 2813 + }, + { + "x": 628, + "y": 2813 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 649, + "y": 2789 + }, + { + "x": 666, + "y": 2789 + }, + { + "x": 667, + "y": 2813 + }, + { + "x": 650, + "y": 2813 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 671, + "y": 2785 + }, + { + "x": 687, + "y": 2785 + }, + { + "x": 688, + "y": 2813 + }, + { + "x": 672, + "y": 2813 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 690, + "y": 2785 + }, + { + "x": 707, + "y": 2785 + }, + { + "x": 708, + "y": 2813 + }, + { + "x": 691, + "y": 2813 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 714, + "y": 2787 + }, + { + "x": 731, + "y": 2787 + }, + { + "x": 732, + "y": 2809 + }, + { + "x": 715, + "y": 2809 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 735, + "y": 2789 + }, + { + "x": 754, + "y": 2789 + }, + { + "x": 755, + "y": 2810 + }, + { + "x": 736, + "y": 2811 + } + ] + }, + "text": "e" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 783, + "y": 2779 + }, + { + "x": 970, + "y": 2774 + }, + { + "x": 971, + "y": 2810 + }, + { + "x": 784, + "y": 2815 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 783, + "y": 2787 + }, + { + "x": 799, + "y": 2787 + }, + { + "x": 800, + "y": 2809 + }, + { + "x": 784, + "y": 2809 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 801, + "y": 2787 + }, + { + "x": 818, + "y": 2787 + }, + { + "x": 819, + "y": 2809 + }, + { + "x": 802, + "y": 2809 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 824, + "y": 2787 + }, + { + "x": 840, + "y": 2787 + }, + { + "x": 841, + "y": 2809 + }, + { + "x": 825, + "y": 2809 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 844, + "y": 2780 + }, + { + "x": 858, + "y": 2780 + }, + { + "x": 859, + "y": 2808 + }, + { + "x": 845, + "y": 2808 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 865, + "y": 2785 + }, + { + "x": 882, + "y": 2785 + }, + { + "x": 883, + "y": 2807 + }, + { + "x": 866, + "y": 2807 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 885, + "y": 2785 + }, + { + "x": 902, + "y": 2785 + }, + { + "x": 903, + "y": 2807 + }, + { + "x": 886, + "y": 2807 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 908, + "y": 2779 + }, + { + "x": 924, + "y": 2779 + }, + { + "x": 925, + "y": 2807 + }, + { + "x": 909, + "y": 2807 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 933, + "y": 2775 + }, + { + "x": 938, + "y": 2775 + }, + { + "x": 939, + "y": 2806 + }, + { + "x": 934, + "y": 2806 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 2784 + }, + { + "x": 969, + "y": 2784 + }, + { + "x": 970, + "y": 2812 + }, + { + "x": 953, + "y": 2812 + } + ] + }, + "text": "y" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 992, + "y": 2773 + }, + { + "x": 1138, + "y": 2769 + }, + { + "x": 1139, + "y": 2800 + }, + { + "x": 993, + "y": 2804 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 992, + "y": 2782 + }, + { + "x": 1011, + "y": 2782 + }, + { + "x": 1012, + "y": 2803 + }, + { + "x": 993, + "y": 2804 + } + ] + }, + "text": "m" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1014, + "y": 2782 + }, + { + "x": 1031, + "y": 2782 + }, + { + "x": 1032, + "y": 2804 + }, + { + "x": 1015, + "y": 2804 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1036, + "y": 2777 + }, + { + "x": 1053, + "y": 2777 + }, + { + "x": 1054, + "y": 2803 + }, + { + "x": 1037, + "y": 2803 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1057, + "y": 2777 + }, + { + "x": 1076, + "y": 2777 + }, + { + "x": 1077, + "y": 2802 + }, + { + "x": 1058, + "y": 2803 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1079, + "y": 2772 + }, + { + "x": 1096, + "y": 2772 + }, + { + "x": 1097, + "y": 2803 + }, + { + "x": 1080, + "y": 2803 + } + ] + }, + "text": "h" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1101, + "y": 2777 + }, + { + "x": 1118, + "y": 2777 + }, + { + "x": 1119, + "y": 2799 + }, + { + "x": 1102, + "y": 2799 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1122, + "y": 2777 + }, + { + "x": 1138, + "y": 2777 + }, + { + "x": 1139, + "y": 2799 + }, + { + "x": 1123, + "y": 2799 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 354, + "y": 2845 + }, + { + "x": 435, + "y": 2843 + }, + { + "x": 436, + "y": 2871 + }, + { + "x": 355, + "y": 2873 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 354, + "y": 2845 + }, + { + "x": 370, + "y": 2845 + }, + { + "x": 371, + "y": 2873 + }, + { + "x": 355, + "y": 2873 + } + ] + }, + "text": "y" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 373, + "y": 2845 + }, + { + "x": 392, + "y": 2845 + }, + { + "x": 393, + "y": 2869 + }, + { + "x": 374, + "y": 2869 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 395, + "y": 2844 + }, + { + "x": 414, + "y": 2844 + }, + { + "x": 415, + "y": 2868 + }, + { + "x": 396, + "y": 2868 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 416, + "y": 2844 + }, + { + "x": 435, + "y": 2844 + }, + { + "x": 436, + "y": 2868 + }, + { + "x": 417, + "y": 2868 + } + ] + }, + "text": "r" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 457, + "y": 2832 + }, + { + "x": 606, + "y": 2828 + }, + { + "x": 607, + "y": 2864 + }, + { + "x": 458, + "y": 2868 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 457, + "y": 2833 + }, + { + "x": 476, + "y": 2833 + }, + { + "x": 477, + "y": 2867 + }, + { + "x": 458, + "y": 2867 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 478, + "y": 2840 + }, + { + "x": 499, + "y": 2839 + }, + { + "x": 500, + "y": 2863 + }, + { + "x": 479, + "y": 2864 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 502, + "y": 2842 + }, + { + "x": 521, + "y": 2842 + }, + { + "x": 522, + "y": 2866 + }, + { + "x": 503, + "y": 2866 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 522, + "y": 2842 + }, + { + "x": 541, + "y": 2842 + }, + { + "x": 542, + "y": 2864 + }, + { + "x": 523, + "y": 2864 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 543, + "y": 2830 + }, + { + "x": 562, + "y": 2830 + }, + { + "x": 563, + "y": 2863 + }, + { + "x": 544, + "y": 2863 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 563, + "y": 2839 + }, + { + "x": 580, + "y": 2839 + }, + { + "x": 581, + "y": 2863 + }, + { + "x": 564, + "y": 2863 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 584, + "y": 2828 + }, + { + "x": 606, + "y": 2827 + }, + { + "x": 607, + "y": 2861 + }, + { + "x": 585, + "y": 2862 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 627, + "y": 2828 + }, + { + "x": 754, + "y": 2825 + }, + { + "x": 755, + "y": 2858 + }, + { + "x": 628, + "y": 2861 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 627, + "y": 2828 + }, + { + "x": 646, + "y": 2828 + }, + { + "x": 647, + "y": 2861 + }, + { + "x": 628, + "y": 2861 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 651, + "y": 2835 + }, + { + "x": 668, + "y": 2835 + }, + { + "x": 669, + "y": 2859 + }, + { + "x": 652, + "y": 2859 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 671, + "y": 2833 + }, + { + "x": 690, + "y": 2833 + }, + { + "x": 691, + "y": 2857 + }, + { + "x": 672, + "y": 2857 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 692, + "y": 2827 + }, + { + "x": 709, + "y": 2827 + }, + { + "x": 710, + "y": 2858 + }, + { + "x": 693, + "y": 2858 + } + ] + }, + "text": "k" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 714, + "y": 2835 + }, + { + "x": 733, + "y": 2835 + }, + { + "x": 734, + "y": 2857 + }, + { + "x": 715, + "y": 2857 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 736, + "y": 2827 + }, + { + "x": 753, + "y": 2827 + }, + { + "x": 754, + "y": 2858 + }, + { + "x": 737, + "y": 2858 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 779, + "y": 2832 + }, + { + "x": 822, + "y": 2831 + }, + { + "x": 823, + "y": 2857 + }, + { + "x": 780, + "y": 2858 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 779, + "y": 2832 + }, + { + "x": 798, + "y": 2832 + }, + { + "x": 799, + "y": 2858 + }, + { + "x": 780, + "y": 2858 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 801, + "y": 2832 + }, + { + "x": 822, + "y": 2831 + }, + { + "x": 823, + "y": 2857 + }, + { + "x": 802, + "y": 2858 + } + ] + }, + "text": "o" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 846, + "y": 2832 + }, + { + "x": 906, + "y": 2831 + }, + { + "x": 907, + "y": 2859 + }, + { + "x": 847, + "y": 2860 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 846, + "y": 2832 + }, + { + "x": 863, + "y": 2832 + }, + { + "x": 864, + "y": 2860 + }, + { + "x": 847, + "y": 2860 + } + ] + }, + "text": "y" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 866, + "y": 2832 + }, + { + "x": 885, + "y": 2832 + }, + { + "x": 886, + "y": 2856 + }, + { + "x": 867, + "y": 2856 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 887, + "y": 2832 + }, + { + "x": 906, + "y": 2832 + }, + { + "x": 907, + "y": 2854 + }, + { + "x": 888, + "y": 2854 + } + ] + }, + "text": "u" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 930, + "y": 2830 + }, + { + "x": 992, + "y": 2828 + }, + { + "x": 993, + "y": 2852 + }, + { + "x": 931, + "y": 2854 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 930, + "y": 2830 + }, + { + "x": 949, + "y": 2830 + }, + { + "x": 950, + "y": 2854 + }, + { + "x": 931, + "y": 2854 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 952, + "y": 2828 + }, + { + "x": 969, + "y": 2828 + }, + { + "x": 970, + "y": 2852 + }, + { + "x": 953, + "y": 2852 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 973, + "y": 2828 + }, + { + "x": 992, + "y": 2828 + }, + { + "x": 993, + "y": 2852 + }, + { + "x": 974, + "y": 2852 + } + ] + }, + "text": "n" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1016, + "y": 2816 + }, + { + "x": 1145, + "y": 2813 + }, + { + "x": 1146, + "y": 2849 + }, + { + "x": 1017, + "y": 2852 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1016, + "y": 2825 + }, + { + "x": 1035, + "y": 2825 + }, + { + "x": 1036, + "y": 2851 + }, + { + "x": 1017, + "y": 2851 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1041, + "y": 2816 + }, + { + "x": 1048, + "y": 2816 + }, + { + "x": 1049, + "y": 2849 + }, + { + "x": 1042, + "y": 2849 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1058, + "y": 2825 + }, + { + "x": 1077, + "y": 2825 + }, + { + "x": 1078, + "y": 2849 + }, + { + "x": 1059, + "y": 2849 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1081, + "y": 2823 + }, + { + "x": 1100, + "y": 2823 + }, + { + "x": 1101, + "y": 2847 + }, + { + "x": 1082, + "y": 2847 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1101, + "y": 2825 + }, + { + "x": 1118, + "y": 2825 + }, + { + "x": 1119, + "y": 2851 + }, + { + "x": 1102, + "y": 2851 + } + ] + }, + "text": "y" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1123, + "y": 2821 + }, + { + "x": 1144, + "y": 2820 + }, + { + "x": 1145, + "y": 2846 + }, + { + "x": 1124, + "y": 2847 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "fr", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 481, + "y": 2876 + }, + { + "x": 647, + "y": 2871 + }, + { + "x": 648, + "y": 2904 + }, + { + "x": 482, + "y": 2909 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 481, + "y": 2880 + }, + { + "x": 500, + "y": 2879 + }, + { + "x": 501, + "y": 2908 + }, + { + "x": 482, + "y": 2909 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 503, + "y": 2878 + }, + { + "x": 522, + "y": 2877 + }, + { + "x": 523, + "y": 2906 + }, + { + "x": 504, + "y": 2907 + } + ] + }, + "text": "h" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 524, + "y": 2883 + }, + { + "x": 541, + "y": 2883 + }, + { + "x": 542, + "y": 2907 + }, + { + "x": 525, + "y": 2907 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 543, + "y": 2883 + }, + { + "x": 562, + "y": 2882 + }, + { + "x": 563, + "y": 2906 + }, + { + "x": 544, + "y": 2907 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 565, + "y": 2873 + }, + { + "x": 582, + "y": 2873 + }, + { + "x": 583, + "y": 2906 + }, + { + "x": 566, + "y": 2906 + } + ] + }, + "text": "k" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 585, + "y": 2881 + }, + { + "x": 606, + "y": 2880 + }, + { + "x": 607, + "y": 2904 + }, + { + "x": 586, + "y": 2905 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 609, + "y": 2881 + }, + { + "x": 626, + "y": 2881 + }, + { + "x": 627, + "y": 2905 + }, + { + "x": 610, + "y": 2905 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 630, + "y": 2875 + }, + { + "x": 647, + "y": 2875 + }, + { + "x": 648, + "y": 2904 + }, + { + "x": 631, + "y": 2904 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 673, + "y": 2871 + }, + { + "x": 759, + "y": 2869 + }, + { + "x": 760, + "y": 2902 + }, + { + "x": 674, + "y": 2904 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 673, + "y": 2873 + }, + { + "x": 689, + "y": 2873 + }, + { + "x": 690, + "y": 2904 + }, + { + "x": 674, + "y": 2904 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 692, + "y": 2871 + }, + { + "x": 708, + "y": 2871 + }, + { + "x": 709, + "y": 2902 + }, + { + "x": 693, + "y": 2902 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 716, + "y": 2873 + }, + { + "x": 733, + "y": 2873 + }, + { + "x": 734, + "y": 2902 + }, + { + "x": 717, + "y": 2902 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 736, + "y": 2869 + }, + { + "x": 758, + "y": 2868 + }, + { + "x": 759, + "y": 2901 + }, + { + "x": 737, + "y": 2902 + } + ] + }, + "text": "h" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "es", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 781, + "y": 2868 + }, + { + "x": 881, + "y": 2865 + }, + { + "x": 882, + "y": 2899 + }, + { + "x": 782, + "y": 2902 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 781, + "y": 2876 + }, + { + "x": 802, + "y": 2875 + }, + { + "x": 803, + "y": 2899 + }, + { + "x": 782, + "y": 2900 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 803, + "y": 2876 + }, + { + "x": 824, + "y": 2875 + }, + { + "x": 825, + "y": 2899 + }, + { + "x": 804, + "y": 2900 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 827, + "y": 2875 + }, + { + "x": 844, + "y": 2875 + }, + { + "x": 845, + "y": 2899 + }, + { + "x": 828, + "y": 2899 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 848, + "y": 2866 + }, + { + "x": 864, + "y": 2866 + }, + { + "x": 865, + "y": 2900 + }, + { + "x": 849, + "y": 2900 + } + ] + }, + "text": "f" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 866, + "y": 2866 + }, + { + "x": 880, + "y": 2866 + }, + { + "x": 881, + "y": 2900 + }, + { + "x": 867, + "y": 2900 + } + ] + }, + "text": "i" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "fr", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 890, + "y": 2866 + }, + { + "x": 993, + "y": 2863 + }, + { + "x": 994, + "y": 2896 + }, + { + "x": 891, + "y": 2899 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 890, + "y": 2866 + }, + { + "x": 909, + "y": 2865 + }, + { + "x": 910, + "y": 2898 + }, + { + "x": 891, + "y": 2899 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 911, + "y": 2873 + }, + { + "x": 928, + "y": 2873 + }, + { + "x": 929, + "y": 2899 + }, + { + "x": 912, + "y": 2899 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 932, + "y": 2871 + }, + { + "x": 953, + "y": 2870 + }, + { + "x": 954, + "y": 2896 + }, + { + "x": 933, + "y": 2897 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 954, + "y": 2873 + }, + { + "x": 973, + "y": 2872 + }, + { + "x": 974, + "y": 2896 + }, + { + "x": 955, + "y": 2897 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 976, + "y": 2873 + }, + { + "x": 993, + "y": 2873 + }, + { + "x": 994, + "y": 2895 + }, + { + "x": 977, + "y": 2895 + } + ] + }, + "text": "e" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 3039 + }, + { + "x": 1176, + "y": 3039 + }, + { + "x": 1176, + "y": 3138 + }, + { + "x": 323, + "y": 3138 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 3039 + }, + { + "x": 1176, + "y": 3039 + }, + { + "x": 1176, + "y": 3138 + }, + { + "x": 323, + "y": 3138 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 3060 + }, + { + "x": 472, + "y": 3056 + }, + { + "x": 473, + "y": 3090 + }, + { + "x": 324, + "y": 3094 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 323, + "y": 3060 + }, + { + "x": 340, + "y": 3060 + }, + { + "x": 341, + "y": 3094 + }, + { + "x": 324, + "y": 3094 + } + ] + }, + "text": "B" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 344, + "y": 3060 + }, + { + "x": 363, + "y": 3060 + }, + { + "x": 364, + "y": 3094 + }, + { + "x": 345, + "y": 3094 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 3068 + }, + { + "x": 385, + "y": 3068 + }, + { + "x": 386, + "y": 3092 + }, + { + "x": 367, + "y": 3092 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 387, + "y": 3068 + }, + { + "x": 408, + "y": 3067 + }, + { + "x": 409, + "y": 3091 + }, + { + "x": 388, + "y": 3092 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 409, + "y": 3060 + }, + { + "x": 430, + "y": 3059 + }, + { + "x": 431, + "y": 3092 + }, + { + "x": 410, + "y": 3093 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 431, + "y": 3066 + }, + { + "x": 450, + "y": 3066 + }, + { + "x": 451, + "y": 3088 + }, + { + "x": 432, + "y": 3088 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 3058 + }, + { + "x": 473, + "y": 3057 + }, + { + "x": 474, + "y": 3090 + }, + { + "x": 453, + "y": 3091 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 495, + "y": 3065 + }, + { + "x": 644, + "y": 3061 + }, + { + "x": 645, + "y": 3092 + }, + { + "x": 496, + "y": 3096 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 495, + "y": 3066 + }, + { + "x": 516, + "y": 3065 + }, + { + "x": 517, + "y": 3094 + }, + { + "x": 496, + "y": 3095 + } + ] + }, + "text": "g" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 517, + "y": 3065 + }, + { + "x": 534, + "y": 3065 + }, + { + "x": 535, + "y": 3087 + }, + { + "x": 518, + "y": 3087 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 536, + "y": 3065 + }, + { + "x": 557, + "y": 3064 + }, + { + "x": 558, + "y": 3086 + }, + { + "x": 537, + "y": 3087 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 558, + "y": 3065 + }, + { + "x": 577, + "y": 3065 + }, + { + "x": 578, + "y": 3087 + }, + { + "x": 559, + "y": 3087 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 580, + "y": 3063 + }, + { + "x": 597, + "y": 3063 + }, + { + "x": 598, + "y": 3085 + }, + { + "x": 581, + "y": 3085 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 599, + "y": 3061 + }, + { + "x": 620, + "y": 3060 + }, + { + "x": 621, + "y": 3084 + }, + { + "x": 600, + "y": 3085 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 621, + "y": 3063 + }, + { + "x": 643, + "y": 3062 + }, + { + "x": 644, + "y": 3090 + }, + { + "x": 622, + "y": 3091 + } + ] + }, + "text": "y" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 664, + "y": 3051 + }, + { + "x": 793, + "y": 3048 + }, + { + "x": 794, + "y": 3082 + }, + { + "x": 665, + "y": 3085 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 664, + "y": 3053 + }, + { + "x": 686, + "y": 3052 + }, + { + "x": 687, + "y": 3085 + }, + { + "x": 665, + "y": 3086 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 690, + "y": 3061 + }, + { + "x": 706, + "y": 3061 + }, + { + "x": 707, + "y": 3083 + }, + { + "x": 691, + "y": 3083 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 709, + "y": 3060 + }, + { + "x": 728, + "y": 3060 + }, + { + "x": 729, + "y": 3082 + }, + { + "x": 710, + "y": 3082 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 729, + "y": 3049 + }, + { + "x": 750, + "y": 3048 + }, + { + "x": 751, + "y": 3081 + }, + { + "x": 730, + "y": 3082 + } + ] + }, + "text": "k" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 752, + "y": 3060 + }, + { + "x": 773, + "y": 3059 + }, + { + "x": 774, + "y": 3081 + }, + { + "x": 753, + "y": 3082 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 776, + "y": 3056 + }, + { + "x": 793, + "y": 3056 + }, + { + "x": 794, + "y": 3084 + }, + { + "x": 777, + "y": 3084 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 817, + "y": 3049 + }, + { + "x": 982, + "y": 3045 + }, + { + "x": 983, + "y": 3079 + }, + { + "x": 818, + "y": 3083 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 817, + "y": 3058 + }, + { + "x": 838, + "y": 3057 + }, + { + "x": 839, + "y": 3081 + }, + { + "x": 818, + "y": 3082 + } + ] + }, + "text": "m" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 839, + "y": 3058 + }, + { + "x": 860, + "y": 3057 + }, + { + "x": 861, + "y": 3083 + }, + { + "x": 840, + "y": 3084 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 861, + "y": 3053 + }, + { + "x": 878, + "y": 3053 + }, + { + "x": 879, + "y": 3082 + }, + { + "x": 862, + "y": 3082 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 884, + "y": 3056 + }, + { + "x": 903, + "y": 3056 + }, + { + "x": 904, + "y": 3078 + }, + { + "x": 885, + "y": 3078 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 904, + "y": 3048 + }, + { + "x": 925, + "y": 3047 + }, + { + "x": 926, + "y": 3080 + }, + { + "x": 905, + "y": 3081 + } + ] + }, + "text": "h" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 928, + "y": 3054 + }, + { + "x": 945, + "y": 3054 + }, + { + "x": 946, + "y": 3076 + }, + { + "x": 929, + "y": 3076 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 949, + "y": 3046 + }, + { + "x": 968, + "y": 3046 + }, + { + "x": 969, + "y": 3079 + }, + { + "x": 950, + "y": 3079 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 976, + "y": 3072 + }, + { + "x": 981, + "y": 3072 + }, + { + "x": 981, + "y": 3077 + }, + { + "x": 976, + "y": 3077 + } + ] + }, + "text": "." + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1009, + "y": 3042 + }, + { + "x": 1074, + "y": 3040 + }, + { + "x": 1075, + "y": 3073 + }, + { + "x": 1010, + "y": 3075 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1009, + "y": 3042 + }, + { + "x": 1030, + "y": 3041 + }, + { + "x": 1031, + "y": 3074 + }, + { + "x": 1010, + "y": 3075 + } + ] + }, + "text": "F" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1033, + "y": 3042 + }, + { + "x": 1052, + "y": 3042 + }, + { + "x": 1053, + "y": 3075 + }, + { + "x": 1034, + "y": 3075 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1053, + "y": 3051 + }, + { + "x": 1074, + "y": 3050 + }, + { + "x": 1075, + "y": 3074 + }, + { + "x": 1054, + "y": 3075 + } + ] + }, + "text": "r" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1098, + "y": 3041 + }, + { + "x": 1175, + "y": 3039 + }, + { + "x": 1176, + "y": 3072 + }, + { + "x": 1099, + "y": 3074 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1098, + "y": 3041 + }, + { + "x": 1115, + "y": 3041 + }, + { + "x": 1116, + "y": 3072 + }, + { + "x": 1099, + "y": 3072 + } + ] + }, + "text": "f" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1118, + "y": 3041 + }, + { + "x": 1135, + "y": 3041 + }, + { + "x": 1136, + "y": 3074 + }, + { + "x": 1119, + "y": 3074 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1139, + "y": 3039 + }, + { + "x": 1155, + "y": 3039 + }, + { + "x": 1156, + "y": 3072 + }, + { + "x": 1140, + "y": 3072 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1158, + "y": 3039 + }, + { + "x": 1175, + "y": 3039 + }, + { + "x": 1176, + "y": 3072 + }, + { + "x": 1159, + "y": 3072 + } + ] + }, + "text": "l" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 3111 + }, + { + "x": 471, + "y": 3108 + }, + { + "x": 472, + "y": 3134 + }, + { + "x": 367, + "y": 3137 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 366, + "y": 3111 + }, + { + "x": 385, + "y": 3111 + }, + { + "x": 386, + "y": 3137 + }, + { + "x": 367, + "y": 3137 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 388, + "y": 3109 + }, + { + "x": 405, + "y": 3109 + }, + { + "x": 406, + "y": 3135 + }, + { + "x": 389, + "y": 3135 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 409, + "y": 3111 + }, + { + "x": 428, + "y": 3111 + }, + { + "x": 429, + "y": 3135 + }, + { + "x": 410, + "y": 3135 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 430, + "y": 3113 + }, + { + "x": 449, + "y": 3113 + }, + { + "x": 450, + "y": 3135 + }, + { + "x": 431, + "y": 3135 + } + ] + }, + "text": "m" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 452, + "y": 3111 + }, + { + "x": 471, + "y": 3111 + }, + { + "x": 472, + "y": 3133 + }, + { + "x": 453, + "y": 3133 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 496, + "y": 3101 + }, + { + "x": 597, + "y": 3099 + }, + { + "x": 598, + "y": 3133 + }, + { + "x": 497, + "y": 3135 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 496, + "y": 3111 + }, + { + "x": 513, + "y": 3111 + }, + { + "x": 514, + "y": 3135 + }, + { + "x": 497, + "y": 3135 + } + ] + }, + "text": "v" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 519, + "y": 3101 + }, + { + "x": 528, + "y": 3101 + }, + { + "x": 529, + "y": 3135 + }, + { + "x": 520, + "y": 3135 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 538, + "y": 3109 + }, + { + "x": 555, + "y": 3109 + }, + { + "x": 556, + "y": 3131 + }, + { + "x": 539, + "y": 3131 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 561, + "y": 3101 + }, + { + "x": 570, + "y": 3101 + }, + { + "x": 571, + "y": 3134 + }, + { + "x": 562, + "y": 3134 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 582, + "y": 3102 + }, + { + "x": 598, + "y": 3102 + }, + { + "x": 599, + "y": 3133 + }, + { + "x": 583, + "y": 3133 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 623, + "y": 3099 + }, + { + "x": 1029, + "y": 3089 + }, + { + "x": 1030, + "y": 3125 + }, + { + "x": 624, + "y": 3135 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 623, + "y": 3101 + }, + { + "x": 640, + "y": 3101 + }, + { + "x": 641, + "y": 3132 + }, + { + "x": 624, + "y": 3132 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 645, + "y": 3108 + }, + { + "x": 664, + "y": 3108 + }, + { + "x": 665, + "y": 3130 + }, + { + "x": 646, + "y": 3130 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 666, + "y": 3104 + }, + { + "x": 685, + "y": 3104 + }, + { + "x": 686, + "y": 3130 + }, + { + "x": 667, + "y": 3130 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 688, + "y": 3104 + }, + { + "x": 707, + "y": 3104 + }, + { + "x": 708, + "y": 3128 + }, + { + "x": 689, + "y": 3128 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 711, + "y": 3104 + }, + { + "x": 728, + "y": 3104 + }, + { + "x": 729, + "y": 3128 + }, + { + "x": 712, + "y": 3128 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 738, + "y": 3120 + }, + { + "x": 743, + "y": 3120 + }, + { + "x": 743, + "y": 3129 + }, + { + "x": 738, + "y": 3129 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 753, + "y": 3104 + }, + { + "x": 770, + "y": 3104 + }, + { + "x": 771, + "y": 3126 + }, + { + "x": 754, + "y": 3126 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 774, + "y": 3104 + }, + { + "x": 793, + "y": 3104 + }, + { + "x": 794, + "y": 3126 + }, + { + "x": 775, + "y": 3126 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 795, + "y": 3104 + }, + { + "x": 817, + "y": 3103 + }, + { + "x": 818, + "y": 3125 + }, + { + "x": 796, + "y": 3126 + } + ] + }, + "text": "m" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 818, + "y": 3094 + }, + { + "x": 835, + "y": 3094 + }, + { + "x": 836, + "y": 3125 + }, + { + "x": 819, + "y": 3125 + } + ] + }, + "text": "/" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 839, + "y": 3096 + }, + { + "x": 860, + "y": 3095 + }, + { + "x": 861, + "y": 3126 + }, + { + "x": 840, + "y": 3127 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 861, + "y": 3099 + }, + { + "x": 880, + "y": 3099 + }, + { + "x": 881, + "y": 3125 + }, + { + "x": 862, + "y": 3125 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 884, + "y": 3101 + }, + { + "x": 903, + "y": 3101 + }, + { + "x": 904, + "y": 3125 + }, + { + "x": 885, + "y": 3125 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 904, + "y": 3101 + }, + { + "x": 925, + "y": 3100 + }, + { + "x": 926, + "y": 3124 + }, + { + "x": 905, + "y": 3125 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 926, + "y": 3092 + }, + { + "x": 945, + "y": 3092 + }, + { + "x": 946, + "y": 3125 + }, + { + "x": 927, + "y": 3125 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 949, + "y": 3099 + }, + { + "x": 966, + "y": 3099 + }, + { + "x": 967, + "y": 3127 + }, + { + "x": 950, + "y": 3127 + } + ] + }, + "text": "g" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 3099 + }, + { + "x": 989, + "y": 3098 + }, + { + "x": 990, + "y": 3122 + }, + { + "x": 969, + "y": 3123 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 990, + "y": 3097 + }, + { + "x": 1009, + "y": 3097 + }, + { + "x": 1010, + "y": 3123 + }, + { + "x": 991, + "y": 3123 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1010, + "y": 3094 + }, + { + "x": 1029, + "y": 3094 + }, + { + "x": 1030, + "y": 3120 + }, + { + "x": 1011, + "y": 3120 + } + ] + }, + "text": "r" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "fi", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1033, + "y": 3090 + }, + { + "x": 1139, + "y": 3087 + }, + { + "x": 1140, + "y": 3116 + }, + { + "x": 1034, + "y": 3119 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1033, + "y": 3096 + }, + { + "x": 1052, + "y": 3096 + }, + { + "x": 1053, + "y": 3120 + }, + { + "x": 1034, + "y": 3120 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1053, + "y": 3096 + }, + { + "x": 1074, + "y": 3095 + }, + { + "x": 1075, + "y": 3119 + }, + { + "x": 1054, + "y": 3120 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1077, + "y": 3090 + }, + { + "x": 1093, + "y": 3090 + }, + { + "x": 1094, + "y": 3119 + }, + { + "x": 1078, + "y": 3119 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1098, + "y": 3094 + }, + { + "x": 1117, + "y": 3094 + }, + { + "x": 1118, + "y": 3118 + }, + { + "x": 1099, + "y": 3118 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1120, + "y": 3094 + }, + { + "x": 1139, + "y": 3094 + }, + { + "x": 1140, + "y": 3118 + }, + { + "x": 1121, + "y": 3118 + } + ] + }, + "text": "e" + } + ] + } + ] + } + ], + "blockType": 1 + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 428, + "y": 3303 + }, + { + "x": 1089, + "y": 3303 + }, + { + "x": 1089, + "y": 3486 + }, + { + "x": 428, + "y": 3486 + } + ] + }, + "paragraphs": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 428, + "y": 3303 + }, + { + "x": 1089, + "y": 3303 + }, + { + "x": 1089, + "y": 3486 + }, + { + "x": 428, + "y": 3486 + } + ] + }, + "words": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 3318 + }, + { + "x": 487, + "y": 3317 + }, + { + "x": 488, + "y": 3353 + }, + { + "x": 448, + "y": 3354 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 3318 + }, + { + "x": 466, + "y": 3318 + }, + { + "x": 467, + "y": 3349 + }, + { + "x": 448, + "y": 3349 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 467, + "y": 3325 + }, + { + "x": 486, + "y": 3325 + }, + { + "x": 487, + "y": 3354 + }, + { + "x": 468, + "y": 3354 + } + ] + }, + "text": "y" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 510, + "y": 3315 + }, + { + "x": 658, + "y": 3311 + }, + { + "x": 659, + "y": 3351 + }, + { + "x": 511, + "y": 3355 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 510, + "y": 3320 + }, + { + "x": 529, + "y": 3320 + }, + { + "x": 530, + "y": 3348 + }, + { + "x": 511, + "y": 3348 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 532, + "y": 3320 + }, + { + "x": 549, + "y": 3320 + }, + { + "x": 550, + "y": 3348 + }, + { + "x": 533, + "y": 3348 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 556, + "y": 3313 + }, + { + "x": 566, + "y": 3313 + }, + { + "x": 567, + "y": 3347 + }, + { + "x": 557, + "y": 3347 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 577, + "y": 3311 + }, + { + "x": 586, + "y": 3311 + }, + { + "x": 587, + "y": 3345 + }, + { + "x": 578, + "y": 3345 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 599, + "y": 3315 + }, + { + "x": 606, + "y": 3315 + }, + { + "x": 607, + "y": 3346 + }, + { + "x": 600, + "y": 3346 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 616, + "y": 3320 + }, + { + "x": 637, + "y": 3319 + }, + { + "x": 638, + "y": 3343 + }, + { + "x": 617, + "y": 3344 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 639, + "y": 3320 + }, + { + "x": 658, + "y": 3320 + }, + { + "x": 659, + "y": 3351 + }, + { + "x": 640, + "y": 3351 + } + ] + }, + "text": "g" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 681, + "y": 3320 + }, + { + "x": 722, + "y": 3319 + }, + { + "x": 723, + "y": 3343 + }, + { + "x": 682, + "y": 3344 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 681, + "y": 3320 + }, + { + "x": 700, + "y": 3320 + }, + { + "x": 701, + "y": 3344 + }, + { + "x": 682, + "y": 3344 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 704, + "y": 3320 + }, + { + "x": 723, + "y": 3320 + }, + { + "x": 724, + "y": 3344 + }, + { + "x": 705, + "y": 3344 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 748, + "y": 3313 + }, + { + "x": 851, + "y": 3310 + }, + { + "x": 852, + "y": 3341 + }, + { + "x": 749, + "y": 3344 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 748, + "y": 3320 + }, + { + "x": 767, + "y": 3320 + }, + { + "x": 768, + "y": 3344 + }, + { + "x": 749, + "y": 3344 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 769, + "y": 3311 + }, + { + "x": 788, + "y": 3311 + }, + { + "x": 789, + "y": 3342 + }, + { + "x": 770, + "y": 3342 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 789, + "y": 3320 + }, + { + "x": 810, + "y": 3319 + }, + { + "x": 811, + "y": 3341 + }, + { + "x": 790, + "y": 3342 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 812, + "y": 3318 + }, + { + "x": 833, + "y": 3317 + }, + { + "x": 834, + "y": 3341 + }, + { + "x": 813, + "y": 3342 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 834, + "y": 3311 + }, + { + "x": 851, + "y": 3311 + }, + { + "x": 852, + "y": 3340 + }, + { + "x": 835, + "y": 3340 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 877, + "y": 3315 + }, + { + "x": 959, + "y": 3313 + }, + { + "x": 960, + "y": 3342 + }, + { + "x": 878, + "y": 3344 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 877, + "y": 3318 + }, + { + "x": 896, + "y": 3318 + }, + { + "x": 897, + "y": 3344 + }, + { + "x": 878, + "y": 3344 + } + ] + }, + "text": "y" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 899, + "y": 3317 + }, + { + "x": 918, + "y": 3317 + }, + { + "x": 919, + "y": 3343 + }, + { + "x": 900, + "y": 3343 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 920, + "y": 3315 + }, + { + "x": 939, + "y": 3315 + }, + { + "x": 940, + "y": 3339 + }, + { + "x": 921, + "y": 3339 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 942, + "y": 3313 + }, + { + "x": 959, + "y": 3313 + }, + { + "x": 960, + "y": 3339 + }, + { + "x": 943, + "y": 3339 + } + ] + }, + "text": "r" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 986, + "y": 3305 + }, + { + "x": 1068, + "y": 3303 + }, + { + "x": 1069, + "y": 3339 + }, + { + "x": 987, + "y": 3341 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 986, + "y": 3308 + }, + { + "x": 1002, + "y": 3308 + }, + { + "x": 1003, + "y": 3337 + }, + { + "x": 987, + "y": 3337 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1005, + "y": 3311 + }, + { + "x": 1024, + "y": 3311 + }, + { + "x": 1025, + "y": 3337 + }, + { + "x": 1006, + "y": 3337 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1033, + "y": 3303 + }, + { + "x": 1038, + "y": 3303 + }, + { + "x": 1039, + "y": 3336 + }, + { + "x": 1034, + "y": 3336 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1050, + "y": 3311 + }, + { + "x": 1069, + "y": 3311 + }, + { + "x": 1070, + "y": 3339 + }, + { + "x": 1051, + "y": 3339 + } + ] + }, + "text": "p" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 532, + "y": 3365 + }, + { + "x": 585, + "y": 3364 + }, + { + "x": 586, + "y": 3395 + }, + { + "x": 533, + "y": 3396 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 532, + "y": 3370 + }, + { + "x": 551, + "y": 3369 + }, + { + "x": 552, + "y": 3393 + }, + { + "x": 533, + "y": 3394 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 555, + "y": 3365 + }, + { + "x": 586, + "y": 3364 + }, + { + "x": 587, + "y": 3395 + }, + { + "x": 556, + "y": 3396 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 596, + "y": 3361 + }, + { + "x": 983, + "y": 3350 + }, + { + "x": 984, + "y": 3383 + }, + { + "x": 597, + "y": 3394 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 596, + "y": 3370 + }, + { + "x": 615, + "y": 3369 + }, + { + "x": 616, + "y": 3393 + }, + { + "x": 597, + "y": 3394 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 618, + "y": 3370 + }, + { + "x": 637, + "y": 3369 + }, + { + "x": 638, + "y": 3391 + }, + { + "x": 619, + "y": 3392 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 640, + "y": 3368 + }, + { + "x": 657, + "y": 3368 + }, + { + "x": 658, + "y": 3390 + }, + { + "x": 641, + "y": 3390 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 669, + "y": 3385 + }, + { + "x": 674, + "y": 3385 + }, + { + "x": 674, + "y": 3392 + }, + { + "x": 669, + "y": 3392 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 685, + "y": 3359 + }, + { + "x": 701, + "y": 3359 + }, + { + "x": 702, + "y": 3390 + }, + { + "x": 686, + "y": 3390 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 705, + "y": 3366 + }, + { + "x": 724, + "y": 3365 + }, + { + "x": 725, + "y": 3389 + }, + { + "x": 706, + "y": 3390 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 728, + "y": 3366 + }, + { + "x": 747, + "y": 3365 + }, + { + "x": 748, + "y": 3389 + }, + { + "x": 729, + "y": 3390 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 748, + "y": 3365 + }, + { + "x": 767, + "y": 3364 + }, + { + "x": 768, + "y": 3388 + }, + { + "x": 749, + "y": 3389 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 769, + "y": 3365 + }, + { + "x": 790, + "y": 3364 + }, + { + "x": 791, + "y": 3388 + }, + { + "x": 770, + "y": 3389 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 793, + "y": 3365 + }, + { + "x": 810, + "y": 3365 + }, + { + "x": 811, + "y": 3389 + }, + { + "x": 794, + "y": 3389 + } + ] + }, + "text": "v" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 818, + "y": 3354 + }, + { + "x": 823, + "y": 3354 + }, + { + "x": 824, + "y": 3387 + }, + { + "x": 819, + "y": 3387 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 836, + "y": 3363 + }, + { + "x": 855, + "y": 3362 + }, + { + "x": 856, + "y": 3386 + }, + { + "x": 837, + "y": 3387 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 856, + "y": 3363 + }, + { + "x": 877, + "y": 3362 + }, + { + "x": 878, + "y": 3386 + }, + { + "x": 857, + "y": 3387 + } + ] + }, + "text": "w" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 880, + "y": 3361 + }, + { + "x": 894, + "y": 3361 + }, + { + "x": 895, + "y": 3385 + }, + { + "x": 881, + "y": 3385 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 897, + "y": 3361 + }, + { + "x": 913, + "y": 3361 + }, + { + "x": 914, + "y": 3385 + }, + { + "x": 898, + "y": 3385 + } + ] + }, + "text": "." + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 921, + "y": 3361 + }, + { + "x": 940, + "y": 3360 + }, + { + "x": 941, + "y": 3384 + }, + { + "x": 922, + "y": 3385 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 942, + "y": 3359 + }, + { + "x": 961, + "y": 3358 + }, + { + "x": 962, + "y": 3382 + }, + { + "x": 943, + "y": 3383 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 964, + "y": 3359 + }, + { + "x": 983, + "y": 3358 + }, + { + "x": 984, + "y": 3382 + }, + { + "x": 965, + "y": 3383 + } + ] + }, + "text": "m" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 428, + "y": 3409 + }, + { + "x": 488, + "y": 3407 + }, + { + "x": 489, + "y": 3440 + }, + { + "x": 429, + "y": 3442 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 428, + "y": 3418 + }, + { + "x": 445, + "y": 3418 + }, + { + "x": 446, + "y": 3442 + }, + { + "x": 429, + "y": 3442 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 447, + "y": 3416 + }, + { + "x": 466, + "y": 3416 + }, + { + "x": 467, + "y": 3442 + }, + { + "x": 448, + "y": 3442 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 469, + "y": 3407 + }, + { + "x": 488, + "y": 3407 + }, + { + "x": 489, + "y": 3440 + }, + { + "x": 470, + "y": 3440 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 510, + "y": 3406 + }, + { + "x": 658, + "y": 3402 + }, + { + "x": 659, + "y": 3436 + }, + { + "x": 511, + "y": 3440 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 510, + "y": 3416 + }, + { + "x": 529, + "y": 3416 + }, + { + "x": 530, + "y": 3440 + }, + { + "x": 511, + "y": 3440 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 532, + "y": 3414 + }, + { + "x": 551, + "y": 3414 + }, + { + "x": 552, + "y": 3438 + }, + { + "x": 533, + "y": 3438 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 558, + "y": 3404 + }, + { + "x": 565, + "y": 3404 + }, + { + "x": 566, + "y": 3438 + }, + { + "x": 559, + "y": 3438 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 579, + "y": 3406 + }, + { + "x": 595, + "y": 3406 + }, + { + "x": 596, + "y": 3440 + }, + { + "x": 580, + "y": 3440 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 597, + "y": 3414 + }, + { + "x": 616, + "y": 3414 + }, + { + "x": 617, + "y": 3438 + }, + { + "x": 598, + "y": 3438 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 620, + "y": 3413 + }, + { + "x": 637, + "y": 3413 + }, + { + "x": 638, + "y": 3437 + }, + { + "x": 621, + "y": 3437 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 642, + "y": 3407 + }, + { + "x": 658, + "y": 3407 + }, + { + "x": 659, + "y": 3436 + }, + { + "x": 643, + "y": 3436 + } + ] + }, + "text": "t" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 685, + "y": 3402 + }, + { + "x": 726, + "y": 3401 + }, + { + "x": 727, + "y": 3434 + }, + { + "x": 686, + "y": 3435 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 685, + "y": 3402 + }, + { + "x": 704, + "y": 3402 + }, + { + "x": 705, + "y": 3435 + }, + { + "x": 686, + "y": 3435 + } + ] + }, + "text": "2" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 705, + "y": 3402 + }, + { + "x": 726, + "y": 3401 + }, + { + "x": 727, + "y": 3434 + }, + { + "x": 706, + "y": 3435 + } + ] + }, + "text": "5" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "gd", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 750, + "y": 3401 + }, + { + "x": 920, + "y": 3397 + }, + { + "x": 921, + "y": 3431 + }, + { + "x": 751, + "y": 3435 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 750, + "y": 3401 + }, + { + "x": 767, + "y": 3401 + }, + { + "x": 768, + "y": 3434 + }, + { + "x": 751, + "y": 3434 + } + ] + }, + "text": "C" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 774, + "y": 3401 + }, + { + "x": 783, + "y": 3401 + }, + { + "x": 784, + "y": 3434 + }, + { + "x": 775, + "y": 3434 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 793, + "y": 3411 + }, + { + "x": 812, + "y": 3411 + }, + { + "x": 813, + "y": 3433 + }, + { + "x": 794, + "y": 3433 + } + ] + }, + "text": "u" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 813, + "y": 3401 + }, + { + "x": 834, + "y": 3400 + }, + { + "x": 835, + "y": 3431 + }, + { + "x": 814, + "y": 3432 + } + ] + }, + "text": "b" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 836, + "y": 3409 + }, + { + "x": 855, + "y": 3409 + }, + { + "x": 856, + "y": 3431 + }, + { + "x": 837, + "y": 3431 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 860, + "y": 3407 + }, + { + "x": 877, + "y": 3407 + }, + { + "x": 878, + "y": 3433 + }, + { + "x": 861, + "y": 3433 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 880, + "y": 3406 + }, + { + "x": 897, + "y": 3406 + }, + { + "x": 898, + "y": 3430 + }, + { + "x": 881, + "y": 3430 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 901, + "y": 3397 + }, + { + "x": 920, + "y": 3397 + }, + { + "x": 921, + "y": 3430 + }, + { + "x": 902, + "y": 3430 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 944, + "y": 3395 + }, + { + "x": 1086, + "y": 3391 + }, + { + "x": 1087, + "y": 3429 + }, + { + "x": 945, + "y": 3433 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 944, + "y": 3404 + }, + { + "x": 963, + "y": 3404 + }, + { + "x": 964, + "y": 3433 + }, + { + "x": 945, + "y": 3433 + } + ] + }, + "text": "p" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 966, + "y": 3406 + }, + { + "x": 985, + "y": 3406 + }, + { + "x": 986, + "y": 3428 + }, + { + "x": 967, + "y": 3428 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 992, + "y": 3395 + }, + { + "x": 999, + "y": 3395 + }, + { + "x": 1000, + "y": 3428 + }, + { + "x": 993, + "y": 3428 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1009, + "y": 3402 + }, + { + "x": 1028, + "y": 3402 + }, + { + "x": 1029, + "y": 3426 + }, + { + "x": 1010, + "y": 3426 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1031, + "y": 3397 + }, + { + "x": 1048, + "y": 3397 + }, + { + "x": 1049, + "y": 3426 + }, + { + "x": 1032, + "y": 3426 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 1053, + "y": 3402 + }, + { + "x": 1067, + "y": 3402 + }, + { + "x": 1068, + "y": 3426 + }, + { + "x": 1054, + "y": 3426 + } + ] + }, + "text": "s" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1070, + "y": 3402 + }, + { + "x": 1086, + "y": 3402 + }, + { + "x": 1087, + "y": 3426 + }, + { + "x": 1071, + "y": 3426 + } + ] + }, + "text": "." + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 471, + "y": 3452 + }, + { + "x": 574, + "y": 3450 + }, + { + "x": 575, + "y": 3483 + }, + { + "x": 472, + "y": 3485 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 471, + "y": 3452 + }, + { + "x": 488, + "y": 3452 + }, + { + "x": 489, + "y": 3485 + }, + { + "x": 472, + "y": 3485 + } + ] + }, + "text": "T" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 491, + "y": 3452 + }, + { + "x": 510, + "y": 3452 + }, + { + "x": 511, + "y": 3485 + }, + { + "x": 492, + "y": 3485 + } + ] + }, + "text": "e" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 512, + "y": 3462 + }, + { + "x": 531, + "y": 3462 + }, + { + "x": 531, + "y": 3484 + }, + { + "x": 512, + "y": 3484 + } + ] + }, + "text": "r" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 532, + "y": 3461 + }, + { + "x": 551, + "y": 3461 + }, + { + "x": 551, + "y": 3483 + }, + { + "x": 532, + "y": 3483 + } + ] + }, + "text": "m" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 555, + "y": 3461 + }, + { + "x": 574, + "y": 3461 + }, + { + "x": 574, + "y": 3483 + }, + { + "x": 555, + "y": 3483 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 599, + "y": 3454 + }, + { + "x": 661, + "y": 3453 + }, + { + "x": 662, + "y": 3484 + }, + { + "x": 600, + "y": 3485 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 599, + "y": 3459 + }, + { + "x": 618, + "y": 3459 + }, + { + "x": 618, + "y": 3485 + }, + { + "x": 599, + "y": 3485 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 620, + "y": 3459 + }, + { + "x": 639, + "y": 3459 + }, + { + "x": 639, + "y": 3481 + }, + { + "x": 620, + "y": 3481 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 642, + "y": 3452 + }, + { + "x": 661, + "y": 3452 + }, + { + "x": 662, + "y": 3481 + }, + { + "x": 643, + "y": 3481 + } + ] + }, + "text": "d" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 687, + "y": 3449 + }, + { + "x": 900, + "y": 3445 + }, + { + "x": 901, + "y": 3478 + }, + { + "x": 688, + "y": 3482 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 687, + "y": 3457 + }, + { + "x": 704, + "y": 3457 + }, + { + "x": 704, + "y": 3481 + }, + { + "x": 687, + "y": 3481 + } + ] + }, + "text": "c" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 707, + "y": 3455 + }, + { + "x": 726, + "y": 3455 + }, + { + "x": 726, + "y": 3479 + }, + { + "x": 707, + "y": 3479 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 729, + "y": 3455 + }, + { + "x": 748, + "y": 3455 + }, + { + "x": 748, + "y": 3479 + }, + { + "x": 729, + "y": 3479 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 752, + "y": 3449 + }, + { + "x": 771, + "y": 3449 + }, + { + "x": 772, + "y": 3480 + }, + { + "x": 753, + "y": 3480 + } + ] + }, + "text": "d" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 776, + "y": 3449 + }, + { + "x": 783, + "y": 3449 + }, + { + "x": 784, + "y": 3480 + }, + { + "x": 777, + "y": 3480 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 795, + "y": 3445 + }, + { + "x": 811, + "y": 3445 + }, + { + "x": 812, + "y": 3478 + }, + { + "x": 796, + "y": 3478 + } + ] + }, + "text": "t" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 813, + "y": 3445 + }, + { + "x": 827, + "y": 3445 + }, + { + "x": 828, + "y": 3478 + }, + { + "x": 814, + "y": 3478 + } + ] + }, + "text": "i" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 839, + "y": 3454 + }, + { + "x": 856, + "y": 3454 + }, + { + "x": 856, + "y": 3478 + }, + { + "x": 839, + "y": 3478 + } + ] + }, + "text": "o" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 860, + "y": 3454 + }, + { + "x": 877, + "y": 3454 + }, + { + "x": 877, + "y": 3478 + }, + { + "x": 860, + "y": 3478 + } + ] + }, + "text": "n" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 1, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 880, + "y": 3452 + }, + { + "x": 899, + "y": 3452 + }, + { + "x": 899, + "y": 3476 + }, + { + "x": 880, + "y": 3476 + } + ] + }, + "text": "s" + } + ] + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 926, + "y": 3445 + }, + { + "x": 1029, + "y": 3443 + }, + { + "x": 1030, + "y": 3477 + }, + { + "x": 927, + "y": 3479 + } + ] + }, + "symbols": [ + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 926, + "y": 3452 + }, + { + "x": 943, + "y": 3452 + }, + { + "x": 943, + "y": 3476 + }, + { + "x": 926, + "y": 3476 + } + ] + }, + "text": "a" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 945, + "y": 3452 + }, + { + "x": 964, + "y": 3452 + }, + { + "x": 965, + "y": 3480 + }, + { + "x": 946, + "y": 3480 + } + ] + }, + "text": "p" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 968, + "y": 3450 + }, + { + "x": 987, + "y": 3450 + }, + { + "x": 988, + "y": 3478 + }, + { + "x": 969, + "y": 3478 + } + ] + }, + "text": "p" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": null + }, + "boundingBox": { + "vertices": [ + { + "x": 995, + "y": 3443 + }, + { + "x": 1000, + "y": 3443 + }, + { + "x": 1001, + "y": 3472 + }, + { + "x": 996, + "y": 3472 + } + ] + }, + "text": "l" + }, + { + "property": { + "detectedLanguages": [ + { + "languageCode": "en", + "confidence": 0 + } + ], + "detectedBreak": { + "type": 3, + "isPrefix": false + } + }, + "boundingBox": { + "vertices": [ + { + "x": 1010, + "y": 3450 + }, + { + "x": 1029, + "y": 3450 + }, + { + "x": 1030, + "y": 3478 + }, + { + "x": 1011, + "y": 3478 + } + ] + }, + "text": "y" + } + ] + } + ] + } + ], + "blockType": 1 + } + ] + } + ], + "text": "TESCO\neactra\nCUMBERNAULD 0345 6779808\nKITTEN FOOD\nDIPPERS\nCKN DIPPERS\nCRISPS\nMINI CHEDDAR\nCRISPS\nMINI CHEDDAR\nT POTATO CAKES\n£3.50\n£2.50\n£1.50\n£1.24\n£1.00\n£1.24\n£1.00\neU\n£1.00\n£1.50\n£2.00\n£1.00\n£2.00\n£1.00\n£1.20\n0.70\n£0.80\n£1.00\n£0.50\nCKN/MUSH SLICE\nCKN FINGERS\nTARTS\nCKN FINGERS\nTARTS\nSCONES\nBS 4 BURG BUNS\nKM SOFT THICK\nBIN LINERS x\nSWEETS\n0.80\n£0.05\n£1.00\n£1.29\n£0.40\nGOV BAG CHARGE+x\nTIMEOUT\nBISCUITS\nTOTAL\nCASH\nCHANGE DUE\n£27.32\n830.00\n£2.68\nCLUBCARD STATEMENT\nCLUBCARD NUMBER xxxxxxxxxxxxxx0582\nQUALIFVING SPEND\nPOINTS THIS VISIT\nTOTAL UP TO 07/11/16\n£27.27\n27\nTESCO\nBran\nGuarantee\nToday we were\nE O.35\ncheaper\non your branded basket compared to\nAsda, Morrisons and Sainsbury's\nOur Brand Guarantee instantly matches\nyour branded basket so you can always\ncheckout with confi dence\nBranded grocery basket matched. For full\nterms visit tesco.com/brandguar antee\nby telling us about your trip\nat www.tescoviews.com\nand collect 25 Clubcard points.\nTerms and conditions apply\n" + }, + "safeSearchAnnotation": null, + "imagePropertiesAnnotation": null, + "cropHintsAnnotation": null, + "webDetection": null, + "error": null +} \ No newline at end of file