Skip to content

Instantly share code, notes, and snippets.

@aspose-omr-gists
Last active September 16, 2022 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-omr-gists/6ab9f071b555108e5c719e0e1a8115f6 to your computer and use it in GitHub Desktop.
Save aspose-omr-gists/6ab9f071b555108e5c719e0e1a8115f6 to your computer and use it in GitHub Desktop.
Extract Data from Image in Java | Perform OMR on Images in Java
// This code example demonstrates how to perform OMR on an image and extract data
// OMR Template file path
String templatePath = "C:\\Files\\OMR\\Sheet.omr";
// Image file path
String imagePath = "C:\\Files\\OMR\\Sheet1.png";
// Initialize OMR Engine
OmrEngine engine = new OmrEngine();
// Get template processor
TemplateProcessor templateProcessor = engine.getTemplateProcessor(templatePath);
// Recognize image
RecognitionResult result = templateProcessor.recognizeImage(imagePath);
// Get results in CSV
String csvResult = result.getCsv();
// Save CSV file
PrintWriter wr = new PrintWriter(new FileOutputStream("C:\\Files\\OMR\\Sheet1.csv"), true);
wr.println(csvResult);
// This code example demonstrates how to perform OMR on multiple images and extract data
// Working folder path
String folderPath = "C:\\Files\\OMR\\";
// OMR Template file path
String templatePath = folderPath + "Sheet.omr";
// Image file path
String[] UserImages = new String[] { "Sheet1.png", "Sheet2.png" };
// Initialize OMR Engine
OmrEngine engine = new OmrEngine();
// Get template processor
TemplateProcessor templateProcessor = engine.getTemplateProcessor(templatePath);
// Process images one by one in a loop
for (int i = 0; i < UserImages.length; i++)
{
String image = UserImages[i];
String imagePath = folderPath + image;
// Recognize image
RecognitionResult result = templateProcessor.recognizeImage(imagePath);
// Get results in CSV
String csvResult = result.getCsv();
// Save CSV file
PrintWriter wr = new PrintWriter(new FileOutputStream(folderPath + "Sheet_" + i + ".csv"), true);
wr.println(csvResult);
System.out.println(csvResult);
}
// OMR Template file path
String templatePath = "C:\\Files\\OMR\\Sheet.omr";
// Image file path
String imagePath = "C:\\Files\\OMR\\Sheet1.png";
// Threshold value
int CustomThreshold = 40;
// Initialize OMR Engine
OmrEngine engine = new OmrEngine();
// Get template processor
TemplateProcessor templateProcessor = engine.getTemplateProcessor(templatePath);
// Recognize image
RecognitionResult result = templateProcessor.recognizeImage(imagePath, CustomThreshold);
// Get results in CSV
String csvResult = result.getCsv();
// Save CSV file
PrintWriter wr = new PrintWriter(new FileOutputStream("C:\\Files\\OMR\\Sheet1.csv"), true);
wr.println(csvResult);
// Recalculate
// You may apply new threshold value here
templateProcessor.recalculate(result, CustomThreshold);
// Get recalculated results in CSV
csvResult = result.getCsv();
// Save recalculated resultant CSV file
PrintWriter finalWr = new PrintWriter(new FileOutputStream("C:\\Files\\OMR\\Sheet1_recalculated.csv"), true);
finalWr.println(csvResult);
// This code example demonstrates how to perform OMR with therashold and extract data from an image
// OMR Template file path
String templatePath = "C:\\Files\\OMR\\Sheet.omr";
// Image file path
String imagePath = "C:\\Files\\OMR\\Sheet1.png";
// Threshold value
int CustomThreshold = 40;
// Initialize OMR Engine
OmrEngine engine = new OmrEngine();
// Get template processor
TemplateProcessor templateProcessor = engine.getTemplateProcessor(templatePath);
// Recognize image
RecognitionResult result = templateProcessor.recognizeImage(imagePath, CustomThreshold);
// Get results in CSV
String csvResult = result.getCsv();
// Save CSV file
PrintWriter wr = new PrintWriter(new FileOutputStream("C:\\Files\\OMR\\Sheet1_threshold.csv"), true);
wr.println(csvResult);
System.out.println(csvResult);
{
"Version": "1.0",
"Name": "Sheet",
"Pages": [
{
"Height": 3507,
"Width": 2481,
"Elements": [
{
"Type": "Grid",
"Name": "ID",
"Width": 576,
"Height": 708,
"Top": 578,
"Left": 325,
"AlignedHorizontally": false,
"AlignedVertically": false,
"Elements": [
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 327,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 329,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 329,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 329,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 329,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 329,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 329,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 329,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 329,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 329,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 329,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 399,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 401,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 401,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 401,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 401,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 401,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 401,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 401,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 401,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 401,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 401,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 471,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 473,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 473,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 473,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 473,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 473,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 473,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 473,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 473,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 473,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 473,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 543,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 545,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 545,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 545,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 545,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 545,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 545,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 545,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 545,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 545,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 545,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 615,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 617,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 617,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 617,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 617,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 617,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 617,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 617,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 617,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 617,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 617,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 687,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 689,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 689,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 689,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 689,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 689,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 689,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 689,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 689,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 689,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 689,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 759,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 761,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 761,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 761,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 761,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 761,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 761,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 761,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 761,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 761,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 761,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": null,
"Width": 62,
"Height": 704,
"Top": 580,
"Left": 831,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 60,
"BubbleWidth": 60,
"Bubbles": [
{
"Value": "0",
"Top": 582,
"Left": 833,
"IsValid": true
},
{
"Value": "1",
"Top": 652,
"Left": 833,
"IsValid": true
},
{
"Value": "2",
"Top": 722,
"Left": 833,
"IsValid": true
},
{
"Value": "3",
"Top": 792,
"Left": 833,
"IsValid": true
},
{
"Value": "4",
"Top": 862,
"Left": 833,
"IsValid": true
},
{
"Value": "5",
"Top": 932,
"Left": 833,
"IsValid": true
},
{
"Value": "6",
"Top": 1002,
"Left": 833,
"IsValid": true
},
{
"Value": "7",
"Top": 1072,
"Left": 833,
"IsValid": true
},
{
"Value": "8",
"Top": 1142,
"Left": 833,
"IsValid": true
},
{
"Value": "9",
"Top": 1212,
"Left": 833,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
}
],
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions1",
"Width": 439,
"Height": 70,
"Top": 1330,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1332,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1332,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1332,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1332,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions2",
"Width": 439,
"Height": 70,
"Top": 1411,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1413,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1413,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1413,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1413,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions3",
"Width": 439,
"Height": 70,
"Top": 1492,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1494,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1494,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1494,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1494,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions4",
"Width": 439,
"Height": 70,
"Top": 1573,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1575,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1575,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1575,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1575,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions5",
"Width": 439,
"Height": 70,
"Top": 1654,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1656,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1656,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1656,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1656,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions6",
"Width": 439,
"Height": 70,
"Top": 1735,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1737,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1737,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1737,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1737,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions7",
"Width": 439,
"Height": 70,
"Top": 1816,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1818,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1818,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1818,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1818,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions8",
"Width": 439,
"Height": 70,
"Top": 1897,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1899,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1899,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1899,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1899,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions9",
"Width": 439,
"Height": 70,
"Top": 1978,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1980,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 1980,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 1980,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 1980,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions10",
"Width": 439,
"Height": 70,
"Top": 2059,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2061,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2061,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2061,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2061,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions11",
"Width": 439,
"Height": 70,
"Top": 2140,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2142,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2142,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2142,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2142,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions12",
"Width": 439,
"Height": 70,
"Top": 2221,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2223,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2223,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2223,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2223,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions13",
"Width": 439,
"Height": 70,
"Top": 2302,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2304,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2304,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2304,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2304,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions14",
"Width": 439,
"Height": 70,
"Top": 2383,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2385,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2385,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2385,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2385,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions15",
"Width": 439,
"Height": 70,
"Top": 2464,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2466,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2466,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2466,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2466,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions16",
"Width": 439,
"Height": 70,
"Top": 2545,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2547,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2547,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2547,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2547,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions17",
"Width": 439,
"Height": 70,
"Top": 2626,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2628,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2628,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2628,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2628,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions18",
"Width": 439,
"Height": 70,
"Top": 2707,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2709,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2709,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2709,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2709,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions19",
"Width": 439,
"Height": 70,
"Top": 2788,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2790,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2790,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2790,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2790,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions20",
"Width": 439,
"Height": 70,
"Top": 2869,
"Left": 204,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2871,
"Left": 317,
"IsValid": true
},
{
"Value": "B",
"Top": 2871,
"Left": 392,
"IsValid": true
},
{
"Value": "C",
"Top": 2871,
"Left": 467,
"IsValid": true
},
{
"Value": "D",
"Top": 2871,
"Left": 542,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions21",
"Width": 439,
"Height": 70,
"Top": 1330,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1332,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1332,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1332,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1332,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions22",
"Width": 439,
"Height": 70,
"Top": 1411,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1413,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1413,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1413,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1413,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions23",
"Width": 439,
"Height": 70,
"Top": 1492,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1494,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1494,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1494,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1494,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions24",
"Width": 439,
"Height": 70,
"Top": 1573,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1575,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1575,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1575,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1575,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions25",
"Width": 439,
"Height": 70,
"Top": 1654,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1656,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1656,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1656,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1656,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions26",
"Width": 439,
"Height": 70,
"Top": 1735,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1737,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1737,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1737,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1737,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions27",
"Width": 439,
"Height": 70,
"Top": 1816,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1818,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1818,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1818,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1818,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions28",
"Width": 439,
"Height": 70,
"Top": 1897,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1899,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1899,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1899,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1899,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions29",
"Width": 439,
"Height": 70,
"Top": 1978,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1980,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 1980,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 1980,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 1980,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions30",
"Width": 439,
"Height": 70,
"Top": 2059,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2061,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2061,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2061,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2061,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions31",
"Width": 439,
"Height": 70,
"Top": 2140,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2142,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2142,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2142,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2142,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions32",
"Width": 439,
"Height": 70,
"Top": 2221,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2223,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2223,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2223,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2223,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions33",
"Width": 439,
"Height": 70,
"Top": 2302,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2304,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2304,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2304,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2304,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions34",
"Width": 439,
"Height": 70,
"Top": 2383,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2385,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2385,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2385,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2385,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions35",
"Width": 439,
"Height": 70,
"Top": 2464,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2466,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2466,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2466,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2466,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions36",
"Width": 439,
"Height": 70,
"Top": 2545,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2547,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2547,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2547,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2547,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions37",
"Width": 439,
"Height": 70,
"Top": 2626,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2628,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2628,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2628,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2628,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions38",
"Width": 439,
"Height": 70,
"Top": 2707,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2709,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2709,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2709,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2709,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions39",
"Width": 439,
"Height": 70,
"Top": 2788,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2790,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2790,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2790,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2790,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions40",
"Width": 439,
"Height": 70,
"Top": 2869,
"Left": 676,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2871,
"Left": 789,
"IsValid": true
},
{
"Value": "B",
"Top": 2871,
"Left": 864,
"IsValid": true
},
{
"Value": "C",
"Top": 2871,
"Left": 939,
"IsValid": true
},
{
"Value": "D",
"Top": 2871,
"Left": 1014,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions41",
"Width": 439,
"Height": 70,
"Top": 1330,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1332,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1332,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1332,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1332,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions42",
"Width": 439,
"Height": 70,
"Top": 1411,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1413,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1413,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1413,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1413,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions43",
"Width": 439,
"Height": 70,
"Top": 1492,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1494,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1494,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1494,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1494,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions44",
"Width": 439,
"Height": 70,
"Top": 1573,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1575,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1575,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1575,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1575,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions45",
"Width": 439,
"Height": 70,
"Top": 1654,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1656,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1656,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1656,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1656,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions46",
"Width": 439,
"Height": 70,
"Top": 1735,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1737,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1737,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1737,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1737,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions47",
"Width": 439,
"Height": 70,
"Top": 1816,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1818,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1818,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1818,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1818,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions48",
"Width": 439,
"Height": 70,
"Top": 1897,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1899,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1899,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1899,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1899,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions49",
"Width": 439,
"Height": 70,
"Top": 1978,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1980,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 1980,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 1980,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 1980,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions50",
"Width": 439,
"Height": 70,
"Top": 2059,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2061,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2061,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2061,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2061,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions51",
"Width": 439,
"Height": 70,
"Top": 2140,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2142,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2142,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2142,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2142,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions52",
"Width": 439,
"Height": 70,
"Top": 2221,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2223,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2223,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2223,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2223,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions53",
"Width": 439,
"Height": 70,
"Top": 2302,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2304,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2304,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2304,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2304,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions54",
"Width": 439,
"Height": 70,
"Top": 2383,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2385,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2385,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2385,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2385,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions55",
"Width": 439,
"Height": 70,
"Top": 2464,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2466,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2466,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2466,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2466,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions56",
"Width": 439,
"Height": 70,
"Top": 2545,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2547,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2547,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2547,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2547,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions57",
"Width": 439,
"Height": 70,
"Top": 2626,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2628,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2628,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2628,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2628,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions58",
"Width": 439,
"Height": 70,
"Top": 2707,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2709,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2709,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2709,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2709,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions59",
"Width": 439,
"Height": 70,
"Top": 2788,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2790,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2790,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2790,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2790,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions60",
"Width": 439,
"Height": 70,
"Top": 2869,
"Left": 1148,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2871,
"Left": 1261,
"IsValid": true
},
{
"Value": "B",
"Top": 2871,
"Left": 1336,
"IsValid": true
},
{
"Value": "C",
"Top": 2871,
"Left": 1411,
"IsValid": true
},
{
"Value": "D",
"Top": 2871,
"Left": 1486,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions61",
"Width": 439,
"Height": 70,
"Top": 1330,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1332,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1332,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1332,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1332,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions62",
"Width": 439,
"Height": 70,
"Top": 1411,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1413,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1413,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1413,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1413,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions63",
"Width": 439,
"Height": 70,
"Top": 1492,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1494,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1494,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1494,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1494,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions64",
"Width": 439,
"Height": 70,
"Top": 1573,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1575,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1575,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1575,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1575,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions65",
"Width": 439,
"Height": 70,
"Top": 1654,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1656,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1656,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1656,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1656,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions66",
"Width": 439,
"Height": 70,
"Top": 1735,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1737,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1737,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1737,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1737,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions67",
"Width": 439,
"Height": 70,
"Top": 1816,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1818,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1818,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1818,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1818,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions68",
"Width": 439,
"Height": 70,
"Top": 1897,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1899,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1899,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1899,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1899,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions69",
"Width": 439,
"Height": 70,
"Top": 1978,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 1980,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 1980,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 1980,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 1980,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions70",
"Width": 439,
"Height": 70,
"Top": 2059,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2061,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2061,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2061,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2061,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions71",
"Width": 439,
"Height": 70,
"Top": 2140,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2142,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2142,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2142,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2142,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions72",
"Width": 439,
"Height": 70,
"Top": 2221,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2223,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2223,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2223,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2223,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions73",
"Width": 439,
"Height": 70,
"Top": 2302,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2304,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2304,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2304,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2304,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions74",
"Width": 439,
"Height": 70,
"Top": 2383,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2385,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2385,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2385,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2385,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions75",
"Width": 439,
"Height": 70,
"Top": 2464,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2466,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2466,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2466,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2466,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions76",
"Width": 439,
"Height": 70,
"Top": 2545,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2547,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2547,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2547,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2547,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions77",
"Width": 439,
"Height": 70,
"Top": 2626,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2628,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2628,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2628,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2628,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions78",
"Width": 439,
"Height": 70,
"Top": 2707,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2709,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2709,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2709,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2709,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions79",
"Width": 439,
"Height": 70,
"Top": 2788,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2790,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2790,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2790,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2790,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ChoiceBox",
"Name": "MainQuestions80",
"Width": 439,
"Height": 70,
"Top": 2869,
"Left": 1620,
"AlignedHorizontally": false,
"AlignedVertically": false,
"BubbleHeight": 61,
"BubbleWidth": 61,
"Bubbles": [
{
"Value": "A",
"Top": 2871,
"Left": 1733,
"IsValid": true
},
{
"Value": "B",
"Top": 2871,
"Left": 1808,
"IsValid": true
},
{
"Value": "C",
"Top": 2871,
"Left": 1883,
"IsValid": true
},
{
"Value": "D",
"Top": 2871,
"Left": 1958,
"IsValid": true
}
],
"Multiselect": false,
"Orientation": "Horizontal"
},
{
"Type": "ReferencePointElement",
"Name": "RefPoint1",
"Width": 166,
"Height": 165,
"Top": 23,
"Left": 21,
"JpegQuality": 85
},
{
"Type": "ReferencePointElement",
"Name": "RefPoint2",
"Width": 166,
"Height": 165,
"Top": 3318,
"Left": 21
},
{
"Type": "ReferencePointElement",
"Name": "RefPoint3",
"Width": 166,
"Height": 165,
"Top": 3318,
"Left": 2293
},
{
"Type": "ReferencePointElement",
"Name": "RefPoint4",
"Width": 166,
"Height": 165,
"Top": 23,
"Left": 2293
}
],
"ImageData": null,
"ImageFormat": ".png",
"ImageName": "Sheet.png"
}
],
"TemplateId": null,
"FinalizationComplete": false,
"IsGenerated": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment